Moving hosts
It's been a good run with Hostgator, but since I've been using Django for more projects, it's been frustrating working with only v1.2, as well as issues with performance.
My new host of choice is WebFaction, who so far are so far above any other shared hosting packages. The big difference is that you get to install apps to your home directory yourself, rather than relying on a shared instances. Not only that, but you get access to Apache config files, proper error logging, and a lot more. If you're looking for somewhere to host your projects as a developer, definitely give them a look.
Django-debug-toolbar
As a result of changing hosts (i.e. actually having an up-to-date version of Python and Django) I've been able to try out Django debug toolbar which was recommended to me. It's almost been worth the switch in web hosts purely to use this, and I already uncovered a mistake that was slowing down a site by a factor of 10. (I was counting objects with len(Thing.objects.all()) rather than Thing.objects.count() - silly mistake, but with the toolbar it pointed it out right away)
I've got a busy few weeks coming up, but after that regular updates should resume.


