As configured in my dotfiles.
start new:
tmux
start new with session name:
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 ;; |
# 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 |
As configured in my dotfiles.
start new:
tmux
start new with session name: