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 / 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.