-
posts
-
Introduction to Algorithms
Today my copy of Introduction to Algorithms came in the mail (a gift from the family). I've decided, mostly inspired by Peteris Krumins to revisit classic algorithms as it's been a while since I've taken a look at them.
I have decided to als...
-
Django Sitemap Framework
Using the Django sitemap framework is so easy it's almost no work at all. Just make a sitemap object and add it to the sitemap in urls.py. The sitemap framework calls items() in your Sitemap to get the list of objects to put in the sitemap and the...
-
Django admin inline forms
For my new project dlife (Update: Now django-lifestream), I went about implementing a simple comments interface that would allow users to make comments on imported feed items. I wanted to support this in the admin in the typical manner such that w...
-
Feedparser and Django
Over the weekend at Python Onsen I worked on a lifestream web application using Django and feedparser. I was really impressed with how simple feedparser is to use and how easy it is to get unified results from atom or rss feeds. You simply import ...
-
Python Onsen Oct. 2008
Last weekend I went to my second Python Onsen[jp] organized by Nakai-san(id:voluntas). I talked about Python Onsen in my first blog post here. Python Onsen is a 3 day event (Fri, Sat, Sun) but as before I only participated on Saturday and Sunday. ...
-
jsonschema 0.2 alpha
I just released a new version of jsonschema 0.2 alpha over at http://code.google.com/p/jsonschema
The source can be downloaded here: jsonschema-0.2a.tar.gz The documentation can be found here: jsonschema (version 0.2a) documentation
The new releas...
-
jsonschema mentioned on json.com
Kris Zyp (the author of the JSONSchema proposal) mentioned jsonschema on his blog at json.com. Thanks Kris!!
-
JSON Schema Validator 0.1a for Python
I just released the first version for a project that I’ve been working on since
the Python Onsen. It’s a
validator for JSON Schema written
in Python. It’s based on the JSON Schema Proposal Second
Draft.</p>
The source tarball is jsonschem...
-
Django
I was thinking about using Django for one of my
projects on GAE because it seems like a
popular project and somewhat easy to use, but I’m not quite understanding yet
why it’s better to have helper functions rather than controller/handler classes
l...
-
Protocol Buffers
A few days ago Protocol Buffers was released by Google as an open source project. Protocol Buffers is a way to generate code for objects that can be serialized to and de-serialized from the protocol buffers binary format. An implementation of the ...