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
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
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
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 the MySQL backend the case-sensitive is implied, i.e. using BINARY LIKE instead of just LIKE
series = Series.objects.filter(name__contains=srch_str) |
To make sure that you’re searching for some that’s case insensitive you can do the following:
series = Series.objects.filter(name__icontains=srch_str) |
If you want it to work case insensitive no matter the backend, collation, or collection type just use icontain, istartswith, iendswith, iregex, iexact.