Skip to content

Instantly share code, notes, and snippets.

View robmilward's full-sized avatar

Rob Milward robmilward

  • The Greenhouse People
  • Stone, UK
View GitHub Profile
@robmilward
robmilward / run.sh
Created May 14, 2019 12:52
[Ngrok for Non-Default Virtualhost] Create publicly accessible URLs for local sites by rewriting the Host header
ngrok http development-site.local:80 -host-header=rewrite
@robmilward
robmilward / run.sh
Created April 18, 2019 15:07
[Remove Image Alpha Channel] Remove an images alpha channel utilising `convert` #cli #image #alpha
convert icon.png -alpha off icon.png
@robmilward
robmilward / run.sh
Created April 11, 2019 08:19
[Send SES via AWS CLI] Sending raw mail over SES using the AWS CLI tool #aws #mail
aws ses send-email \
--profile=ProfileName \
--region=eu-west-1 \
--destination="ToAddresses=someone@example.com" \
--message="Subject={Data=Test},Body={Text={Data='Test Body'}}" \
--from=avalidemail@example.com