Thoughts on Django

Published: Oct 31, 2007

Django is a "high-level Python Web framework that encourages rapid development and clean, pragmatic design." So far, I have absolutely no complaints... and much praise.

Read more...

Converting from TextPattern to Django

Published: Oct 29, 2007

I like TextPattern a lot, but it doesn't seem to work well for programmers. I couldn't ever find a syntax highlighting plugin (that worked) for it, and even when I did figure out a way to post code TextPattern would try to format it.

So, I finally had a reason to learn Django, and here is the product. I even implemented my own syntax highlighting filter (Josh Simpson's idea to do this is actually what finally made me want to switch away from TextPattern in the first place):

Read more...

Migrating from Trac to Launchpad

Published: Sep 1, 2007

I love trac. LOVE it. With the recent exaile.org hack, however, I wanted my bugs and code to be in a place that isn’t going anywhere soon. I chose Launchpad.

Read more...

Exaile.org gets hacked!

Published: Aug 21, 2007

I'll admit. I didn't think this really happened to sites as small as exaile.org, where they are running Linux and not too many services, but I guess that type of thinking is what leads to these types of things...

Read more...




Handling multimedia keys in GNOME 2.18

Published: May 16, 2007

GNOME 2.18 introduced a new way for applications to handle multimedia keys. Previously you have to muck around with X events, while now GNOME does it for you and you can get control of mmkeys by requesting through D-Bus (to GNOME Control Center’s Settings Daemon). All good until you realise that for cross-desktop support you still need the old method anyway—unless, like Rhythmbox and Banshee, your app is GNOME-based.

This article shows how we support both methods in Exaile, and how you can do it, too.

Read more...




Exaile 0.2.10 expectations

Published: Apr 3, 2007

Been a few days since I made a post. I spent most of Friday in the hospital, so I have a good excuse. I'm still not 100%, so this post won't be all that technical...

Read more...

Exaile 0.2.9 released

Published: Mar 27, 2007

I released Exaile 0.2.9 today knowing that it has a few issues with unicode. We've been waiting on these issues for a while now, but no one has a good solution yet. I'm hoping that with the added users from the release, we'll get some fresh eyes on the subject...

Read more...



Decorator fun in Python

Published: Mar 26, 2007

I came across the following code a while ago. I can't take credit for it, and I can't remember where I got it. Oh well. It's pretty cool nonetheless.

Read more...