Coder’s Eye

A site about one of the three passions in my life.

Coder’s Eye header image 4

Entries Tagged as 'Open Source'

Lighttpd 1.5 prerelease doesn’t like Django

April 8th, 2007 · No Comments

Whew. I spent quite a bit more time debugging this problem than it really should have taken. Django just wasn’t playing nice with the latest Lighttpd pre-release.
Long story short
Don’t use the prerelease, use the most recent 1.4.x stable. Save yourself hours of cursing and trace-debugging.
Analysis
Lighttpd had the following problems:

No request PATH_INFO. […]

[Read more →]

Tags: Django · Open Source · Python

Semitransparent rollovers made easy with JQuery

February 3rd, 2007 · 26 Comments

I’m continuing to enjoy working with jQuery.

[Read more →]

Tags: Tips · Open Source · Javascript

Howto use Satchmo as an App

January 10th, 2007 · 3 Comments

I’m going to be using Satchmo to power the backend of a highly customized store that I’m building for a new client.

[Read more →]

Tags: Best Practices · Django · Open Source · Python

Django Formatter Mixin Class

December 27th, 2006 · No Comments

I’ve always disliked having to write __repr__ methods for my classes. In Django, it is especially important, since the admin pages use that method to give you Python is moderately unusual in that it allows classes to have multiple inheritance.

[Read more →]

Tags: Tips · Django · Open Source · Python

Pgrep and Pkill for OSX

September 13th, 2006 · 1 Comment

Usually I am satisfied by the commandline tools available in OSX.

[Read more →]

Tags: Open Source · Macintosh · Linux

The best python url_join routine ever

July 6th, 2006 · 2 Comments

I don’t know how many times I’ve had to write a function to safely join url path components.

[Read more →]

Tags: Open Source · Python

AWeber Joomla Module

May 21st, 2006 · 26 Comments

I’m using Joomla with VirtueCart for a new business venture.

[Read more →]

Tags: Joomla · PHP · Open Source

Django and multipart emails

March 26th, 2006 · No Comments

As part of the Django Storefront system I am writing, I needed to send multipart messages. The base Django mail functionality doesn’t seem to do this, at least not with my version of Python.

[Read more →]

Tags: Django · Open Source

Related Posts plugin modifications

March 17th, 2006 · 1 Comment

I’ve been delaying using a related entries plugin because it didn’t fit with my normal way of posting. See, it uses a Wordpress custom field "keywords" to do its matching.

[Read more →]

Tags: Plugins · Wordpress · Open Source

IPython brings joy

February 14th, 2006 · 1 Comment

After my rant yesterday, it is time to share another programming tool I find absolutely indispensable. IPython is an enhanced command-line shell for Python.
By itself, that may not sound like much, but you really get a lot. You get command history, tab-completion, and automatic introspection of classes. That means you can look […]

[Read more →]

Tags: Open Source · Python