Flipped the switch

October 25, 2008

This is now my permanent blog. The DNS may take some time to propagate but once it does you'll find yourself here instead of my old WordPress powered blog. I took some measures to make sure that anyone trying to reach my old blog will eventually get there:

class OldBlogRedirectHandler(BaseRequestHandler):
    def get(self, year, month, day, slug):
        self.redirect('http://old.benjamingolub.com/%s/%s/%s/%s/' %
            (year, month, day, slug))