Skip to content

Instantly share code, notes, and snippets.

View itsthatguy's full-sized avatar
✌️
Love.

Kevin Altman itsthatguy

✌️
Love.
View GitHub Profile
/*
* -------------------
* React Chat Scaffold
* -------------------
*/
import React from 'react'
import xhttp from 'xhttp'
/*
* Individual message component
@itsthatguy
itsthatguy / gap.sh
Created April 18, 2012 20:41
commit add push / commit add push heroku
function gap() {
if [ $# -eq 0 ]; then
echo Error: Please add a commit message
else
git add .
git commit -am "$*"
git push
fi
}