new bug feed, decent code snippets.

Inspired by Mr Ultra lounge himself, I've made some upgrades. The sidebar to this blog now has a feed of the latest activity on bugs I'm involved with in launchpad, and code snippets are now formatted nicely for folks who have javascript turned on. Soon I will swap out the bug feed for a feed of all the code branches I've been touching, since for my personal work I tend to just push up branches rather than report bugs.

Here is a nifty way to reverse a sequence in python:

sequence = [ 1, 2 , 3, 4 ]
reversed = sequence[::-1]