Skip to content

Instantly share code, notes, and snippets.

View bvandgrift's full-sized avatar

Ben Vandgrift bvandgrift

View GitHub Profile

tmux cheatsheet

As configured in my dotfiles.

start new:

tmux

start new with session name:

@jessmartin
jessmartin / gist:1337742
Created November 3, 2011 20:52
Card Cheatsheet
# Cheatsheet : Writing Story Cards
## Remember Your Audience
Each feature & task card has *all* of these readers:
* **Stakeholder** - reviewing & approving the story
* **Project Manager** - estimating, staffing, & planning for the implementation
* **Developers** - estimating & implementing the story
* **Quality Assurance** - verifying the implementation
@spicycode
spicycode / extract.sh
Created October 28, 2011 00:53
extract.sh
function extract {
echo Extracting $1 ...
if [ -f $1 ] ; then
case $1 in
*.tar.bz2) tar xjf $1 ;;
*.tar.gz) tar xzf $1 ;;
*.bz2) bunzip2 $1 ;;
*.rar) rar x $1 ;;
*.gz) gunzip $1 ;;
*.tar) tar xf $1 ;;