Nomadjourney - nomadjourney.com - Nomad Journey

General Information:
Latest News:
Returning HTTP responses with django-tastypie 19 Nov 2011 | 12:07 pm
Here at MutualMind, we’ve built our REST developer API using the excellent django-tastypie framework. Once you understand the basic request/response cycle as mentioned in the documentation, it takes h...
Returning HTTP responses with django-tastypie 19 Nov 2011 | 03:07 am
Here at MutualMind, we’ve built our REST developer API using the excellent django-tastypie framework. Once you understand the basic request/response cycle as mentioned in the documentation, it takes h...
Crouching Dallas, Hidden Startups 25 Sep 2011 | 03:02 pm
Bradley Joyce over at 3#Labs wrote a nice piece about a problem facing the startup scene in the Dallas-area: We have have a lot of tech talent in Dallas, just not startup talent. I’d like to point out...
Crouching Dallas, Hidden Startups 25 Sep 2011 | 08:02 am
Bradley Joyce over at 3#Labs wrote a nice piece about a problem facing the startup scene in the Dallas-area: We have have a lot of tech talent in Dallas, just not startup talent. I’d like to point out...
Enabling color directory listings in Mac OS X Terminal 16 Aug 2011 | 12:46 pm
Add these two lines to your ~/.bash_profile to enable color in OS X Terminal: export CLICOLOR=1 export LSCOLORS=ExFxCxDxBxegedabagacad For more reference: ls(1) Mac OS X Manual Page
Enabling color directory listings in Mac OS X Terminal 16 Aug 2011 | 05:46 am
Add these two lines to your ~/.bash_profile to enable color in OS X Terminal: export CLICOLOR=1 export LSCOLORS=ExFxCxDxBxegedabagacad For more reference: ls(1) Mac OS X Manual Page
Suppressing MySQL/MySQLdb warning messages from Python 20 Apr 2010 | 03:49 pm
Here is a quick three line snippet that will suppress all of those annoying warning messages from MySQL when using MySQLdb: from warnings import filterwarnings import MySQLdb as Database filterwarning...
Suppressing MySQL/MySQLdb warning messages from Python 20 Apr 2010 | 08:49 am
Here is a quick three line snippet that will suppress all of those annoying warning messages from MySQL when using MySQLdb: from warnings import filterwarnings import MySQLdb as Database filterwarning...
Splitting up Django models 27 Nov 2009 | 07:31 am
Sometimes it makes sense to split up your Django models for a specific application across multiple files instead of having all of them in one models.py file. This allows for easier and simpler code or...
Splitting up Django models 26 Nov 2009 | 11:31 pm
Sometimes it makes sense to split up your Django models for a specific application across multiple files instead of having all of them in one models.py file. This allows for easier and simpler code or...