After realising that my django-powered site was running on a dangerously old version of django, I've decided to relaunch the site using pelican.
MVC todo list demo
Here's a simple javascript todo list application, which I created as an exercise in javascript MVC without a framework.
A canvas drag and drop example
I've recently unearthed an old piece of code which uses multiple layered HTML5 canvas elements to create a multi-layered drag and drop effect. The code is probably due some refinements, but I thought I'd post a link just for fun.
Creating a blog with django, part 1: models
In this tutorial, I'll walk you through one possible way of creating a basic blog application using django 1.3's class-based generic views, built-in admin interface and syndication framework.
Creating a blog with django, part 2: admin interface
In part 1 of this series, we defined the models for our blog application. However, aside from python manage.py shell, we don't yet have a way to create and edit blog posts or categories. For this, we need to enable django's admin interface.