Archive for August, 2009
Simplifying branches with virtualenv
Posted by abingham in programming, python on 2009/08/31
In my last post I linked to a review of virtualenv, a tool for creating “isolated Python environments”. In a nutshell, virtualenv builds sandbox installations of Python to which you can “switch” in order to isolate yourself from other installations on your machine. Each sandbox has its own Python executables, libraries, and headers, so, for […]
Doug Hellmann on IPython and virtualenv
Posted by abingham in programming on 2009/08/18
Here’s Doug Hellmann’s overview two excellent python tools, IPython and virtualenv. IPython is an enhanced python interactive shell. virtualenv is a tool for creating “sandbox” python installations. http://www.doughellmann.com/articles/CompletelyDifferent-2008-02-ipython-and-virtualenv/index.html
Visualizing in-place sorting algorithms
Posted by abingham in programming on 2009/08/10
This guy’s work on statically visualizing sorting algorithms is beautiful and awesome. http://www.hatfulofhollow.com/posts/code/visualisingsorting/index.html http://www.hatfulofhollow.com/posts/code/timsort/index.html