Virtualenv Wrapper Helper
March 28th, 2009
A bit inspired by all the awesome stuff happening at PyCon, I've done a bit of hacking on my shell to improve the use of virtualenv_wrapper. Remembering to checkout the ...
A bit inspired by all the awesome stuff happening at PyCon, I've done a bit of hacking on my shell to improve the use of virtualenv_wrapper. Remembering to checkout the ...
I've spent a portion of this evening trying to get caught up with the crazy amounts of development that have been going on with the oebfare blogging engine over the ...
Here's a handy bash shortcut for automatically checking out a google-code project. # SVN ALIASES export GOOGLE_CODE_CHECKOUTS="$HOME/Code/trunks" gcco () { svn checkout http://$@.googlecode.com/svn/trunk/ $GOOGLE_CODE_CHECKOUTS/$@ } Update: You should use $HOME ...
For the final installment of Bash: Your forgotten friend (see: part 1 and part 2), I'll be going over the functions I use to make life easy. For those unfamiliar, ...
Aliases are one of the core portions of Bash that will help you become more productive almost immediately. The speed at which aliases can be defined is astounding. <!--more--> To ...
In the name of meta-productivity, or improving productivity by improving process, I've come to learn and love Bash. For those who aren't familiar, Bash is the "scary" black terminal in ...