Asides

  • OS X Mavericks and PyLibMC

    https://gist.github.com/tekton/9943256 brew install libmemcached easy_install pip pip install virtualenv virtualenv VENV source VENV/bin/activate export CFLAGS=-Qunused-arguments export CPPFLAGS=-Qunused-arguments pip install pylibmc

  • VirtualBox Note To Self

    I make new VM’s all the time, and keep forgetting the commands to install guest addition: sudo apt-get install virtualbox-guest-additions sudo apt-get install virtualbox-guest-dkms

  • Django – Insensitive Case

    When using Django in Python there’s these awesome things called QuerySets that are a full blown ORM to make it so I don’t have to think in SQL to get things in and out of a database! One of the things I didn’t find documented very well was case sensitivity vs insensitivity. If you’re using…