I used to keep track of what I wanted to read on a piece of paper. What started out as list that could fit on a Post-it, grew rapidly into a few pages. At one point, I typed everything up on the computer. From text file, to other solutions, I finally ended up writing a [...]
Archive for January, 2010
Books I read in 2009
Posted in development on January 24, 2010 | 3 Comments »
Rake and Capistrano Bash Completion
Posted in development on January 10, 2010 | 1 Comment »
For some reason, I’ve been in a dotfiles refactoring frenzy. Though I’ve posted about my rake script to do completion in bash before, that was a while back and I’ve improved things since. capistrano: on github export COMP_WORDBREAKS=${COMP_WORDBREAKS/\:/} _check_capfile() { if [ ! -e Capfile ]; then return fi local cache_file=".cache_cap_t" if [ ! -e "$cache_file" ]; then cap -T | awk ‘/^cap / {print $2}‘ > $cache_file fi [...]