Use Dot Notation to Build Django Contexts

Michael Shepanski
February 5, 2012
Feb
5

One thing about Django views that I personally find a bit annoying is using dictionary notation when building the context to pass to my templates. I don't find this a big deal for smaller views, but sometimes I have quite a bit of variables to pass back to my template. Organization, readability and maintainability often do not come in the syntactic form of a large dictionary of random objects.


Django Decorator to Print SQL Queries

Michael Shepanski
November 27, 2011
Nov
27

Django's ORM is great for fast development, but it is sometimes all too easy to write inefficient queries in the language. There are a few options to help find rogue queries sucking all that process time. My favorite is of course Django Debug Toolbar. However, sometimes this is not a viable option, such as when writing AJAX processors, or for some reason DDTB is not available to you.

This simple decorator may help you alleviate some pain. It also becomes a useful tool to copy and paste the queries into an external query browser. My favorite for Linux is CrunchyFrog.


Fun with Simple Encryption

Michael Shepanski
November 20, 2011
Nov
20

Every programmer loves thinking they can come up with some crafty way to encrypt a string. Having no background in encryption, of course I think the same thing. The hard part is coming up with something that is also easily decryptable, but clever enough that the average joe can't figure it out. Here is my attempt.


Setup Dynamic DNS using Linode

Michael Shepanski
January 16, 2011
Jan
16

Being a fan and veteran of both DNS services dyndns.org and no-ip.org I was always very slightly annoyed that I could not do this with my personal domain name. The annoyance went up a little more when DynDNS started forcing me to log in every 3 months just to let them know I am still alive.

Since moving to Linode this weekend, I setup my own short DNS updating script. Update the variables APIKEY, DOMAIN, and RECORD to your desired settings and let her rip. Here are my settings for reference. This way when I hit home.pushingkarma.com, it routes to my home network.


Install psycopg2 in Virtualenv on Ubuntu

Michael Shepanski
January 13, 2011
Jan
13

It seems every time I setup a new machine I hit the same snag installing psycopg2 into a virtualenv via pip. It's not well documented online. After a bunch of failed searching with my Google foo I found a solution. In short, you can get around the issues using build-dep. Thanks Eliot!