start new:
tmux
start new with session name:
tmux new -s myname
{ | |
// http://eslint.org/docs/rules/ | |
"ecmaFeatures": { | |
"binaryLiterals": false, // enable binary literals | |
"blockBindings": false, // enable let and const (aka block bindings) | |
"defaultParams": false, // enable default function parameters | |
"forOf": false, // enable for-of loops | |
"generators": false, // enable generators | |
"objectLiteralComputedProperties": false, // enable computed object literal property names |
function shist() { | |
if [ -n "$2" ]; then | |
curl -i http://git.io -F url=https://gist.github.com/"$1" -F code="$2"; | |
else | |
curl -i http://git.io -F url=https://gist.github.com/"$1"; | |
fi | |
} |
function shit() { | |
if [ -n "$2" ]; then | |
curl -i http://git.io -F url=https://github.com/"$1" -F code="$2"; | |
else | |
curl -i http://git.io -F url=https://github.com/"$1"; | |
fi | |
} |