This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export PATH=/usr/local/bin:/usr/local/share/npm/bin:$PATH | |
PS1="\w \[\033[32m\]\$(parse_git_branch) \[\033[37m\]$\[\033[00m\] " | |
alias ll='ls -alFG' | |
# git aliases | |
alias ga='git add -A && gc' | |
alias gb='git branch' | |
alias gc='git commit -v' | |
alias gd='git diff' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Required node >= v0.11.2 | |
* usage: node --harmony index.js | |
*/ | |
var fs = require('fs'); | |
var run = require('./run'); | |
function readFile(filename) { | |
return fs.readFile.bind(fs, filename, 'utf-8'); |
NewerOlder