Monthly Archives: September 2007

AirPress

AirPress This could be interesting. I like MarsEdit, but I wish I could write and save a draft to my server, so I could start a post at work at lunch and finish up at home.

Posted in Blogmarks | Comments Off on AirPress

Facebook + AIM = evil

To the 105 people I spammed today via IM while playing with Facebook… my humble apologies. That was way evil of me, and I’d say slightly evil of facebook to offer… in what universe do folks want IM spam? So … Continue reading

Posted in Technology | Comments Off on Facebook + AIM = evil

The Black Wire and the White Wire

The Black Wire and the White Wire On the tension between "traditional" IT, that needs to be less risk averse, and the innovative, risk taking groups found in many companies. I like to think my group is on the white … Continue reading

Posted in Blogmarks | Comments Off on The Black Wire and the White Wire

One thing I absolutely love about Django’s template loading

Is the ability to specify a series of template folders in [your settings file](http://www.djangoproject.com/documentation/settings/#template-dirs). Here’s what we do at [work](http://www.ajc.com): TEMPLATE_DIRS = ( os.path.join(os.path.dirname(__file__), “templates”), os.path.abspath(os.path.join(os.path.dirname(__file__), “..”, “ANOTHERSITE”, “templates”)), ) It allows us to easily share templates from ANOTHERSITE with … Continue reading

Posted in Django, Python | Comments Off on One thing I absolutely love about Django’s template loading

Send SMS from Django applications

Send SMS from Django applications A nice easy wrapper around turning a user’s cell phone number into an SMS-addressable e-mail address.

Posted in Blogmarks | Comments Off on Send SMS from Django applications