I hereby claim:
- I am stewartjarod on github.
- I am stewartjarod (https://keybase.io/stewartjarod) on keybase.
- I have a public key ASDIIZD4BPc0JAtBHL1bdTXAhfklIPqinQddh2hOINzVTAo
To claim this, I am signing this object:
# Usage: `tag M` | `tag maj` | `tag major` || `tag m` | `tag min` | `tag minor` || `tag p` | `tag patch` | |
function gtag() { | |
if [ -n $1 ] | |
then | |
echo "› Creating tag: v$1" | |
if git tag -a "v$1" -m "v$1" >/dev/null | |
then | |
echo "› Pushing Tag to Upstream" | |
git push origin --tags |
I hereby claim:
To claim this, I am signing this object:
# OS X Go Setup | |
# Install Go lang latest (1.3.1 as of Sept. 21, 2014) | |
############################################################################### | |
brew update | |
brew install hg | |
brew install go | |
# Set up Go lang workspace | |
mkdir -p ${HOME}/Projects/GO |
var sg = require('sendgrid'); | |
var email = new sg.Email({ | |
to: '[email protected]', | |
toname: 'Test Person', | |
from: '[email protected]', | |
fromname: 'Test Sender', | |
subject: 'Email Test with Image', | |
text: 'This is a test.', | |
html: 'this is a test <img src="cid:testme" alt="graphic"/>', | |
}); |
var SendGrid = require('sendgrid').SendGrid; | |
var sendgrid = new SendGrid('username', 'password'); | |
sendgrid.send({ | |
to: '[email protected]', | |
from: '[email protected]', | |
fromname: 'Test Person', | |
subject: 'Hello World', | |
text: 'My first email through SendGrid', | |
html: 'My first email with SendGrid with html <img src="cid:testme" alt="graphic"/>', |