Archive | November, 2006

09 November 2006 ~ 0 Comments

Speed up Django rendering with Psyco

If you are running Django on a 32-bit system, you can use psyco to double your rendering speeds.

Continue Reading

08 November 2006 ~ 0 Comments

WordPress upgrade to 2.0.5

Upgraded to WordPress 2.0.5 tonight. This release includes “mostly minor bug fixes around feeds, custom fields, and internationalization.” As usual, the upgrade was quick, easy, and painless.

Continue Reading

08 November 2006 ~ 0 Comments

Django online book update

The first four chapters of the Django book are now online, with a total of almost 500 comments. Cool.

Continue Reading

08 November 2006 ~ 0 Comments

Coming soon… DjangoForge

If I understand correctly, some of the people in the #django chan decided to build something to “make it easier to publish and share Django related contents and projects.” They are calling the project DjangoForge, and it looks like Sean Schertell registered the related domains. A Launchpad project has been created for it, and they [...]

Continue Reading

07 November 2006 ~ 0 Comments

Permutations

Need to generate every permutation of a sequence in your script? Here’s a recursive function that uses generators.

Continue Reading