Archive for July, 2006

Django performance monitoring

Monday, July 10th, 2006

Ian Holsman has released Perfmon, a “tool to help you diagnose your performance and QA issues within your Django application.” He’s charging $20 for it and hopes people don’t consider it a sell-out.

Snipplr

Monday, July 10th, 2006

This seems to be generating some buzz…

Snipplr is a public source code repository that gives you a place to store and organize all the little pieces of code that you use each day. Best of all, it lets you share your code snippets with other coders and designers. Did we mention it works with TextMate, too? It’s code 2.0.

Heh. Gotta love the Web 2.0 compliant name.

Also notable, if you write a Snipplr plug-in you could get a free t-shirt.

Update: Check out the note from Tyler about the name in the comments.

A faster Python

Wednesday, July 5th, 2006

Word on the street is that the new Python 2.5 is almost twice as fast on cold starts.

Django and AJAX

Wednesday, July 5th, 2006

The B-List has really been doing some outstanding writing when it comes to Django. Previously covered topics include extending the Django user model and how Django processes requests.

Now there’s a quick overview of doing AJAX with Django:

Doing AJAX with Django has always been pretty easy, though maybe in a way that’s not obvious to users of other frameworks. All you have to do is use a slightly different template — to return XML- or JSON-formatted data instead of HTML — and you’re golden.

Good stuff!