Skip to content

Instantly share code, notes, and snippets.

View tbenade's full-sized avatar

Terrence Benade tbenade

  • SEEK
  • Melbourne, Australia
View GitHub Profile
@tbenade
tbenade / PullRequestWorkflow
Created June 3, 2015 23:23
Reminder on Pull Request workflow
1 Fork it
2 Create your feature branch (git checkout -b my-new-feature)
3 Commit your changes (git commit -am 'Added some feature')
4 Push to the branch (git push origin my-new-feature)
5 Create new Pull Request
@tbenade
tbenade / gist:5378295
Last active December 16, 2015 04:39 — forked from kfrancis/gist:3164709
Powershell method for posting a deployment to the New Relic HTTP deployment API
param(
$user,
$app_id,
$revision,
$description,
$api_key
)
#thanks to https://gist.github.com/kfrancis/3164709
#Create a URI instance since the HttpWebRequest.Create Method will escape the URL by default.