Coffeerings Articles
Import Error: No module named django.core.management
Installing and testing the Django Framework on my new mac I came across the error "Import Error: No module named django.core.management" when attempting to run the sever. I installed the framework using macports and there w...read more
Quick Note on Setting Up a Mail Server
Part of the basics when setting up a mail server but I needed to put this command somewhere as a reminder:/etc/init.d/saslauthd startIt starts the sasl authentication server which is used to authenticate SMTP co...read more
Microformats Creator Tool
"Microformats are a way of adding simple markup to human-readable data items such as events, contact details or locations, on web pages, so that the information in them can be extracted by software and indexed, searched fo...read more
Recursive Directory Listing
Nothing too fancy but a nice way of viewing a directory tree on your *nix box.ls -R | grep ":$" | sed -e 's/:$//' -e 's/[^-][^\/]*\//--/g' -e 's/^/ /' -e 's/-/|/' This was originally posted on read more
The BBC iPlayer
Bowing to pressure from accessibility groups the BBC has launched it's platform independent version of the iPlayer - http://www.bbc.co.uk/iplayer/. The iPlayer uses Abode Flash to ...read more
RECENT ARTICLES
Lightweight blog created on Ruby/GAA/Datastore stack
Put this together a month or two back but never got around to replaci... read more
Using Node JS and Couch DB Stack for Web Dev
With the recent hype surrounding Node.js I thought I'd better get my ... read more
Campaign Monitor API Using PHP and SOAP
Campaign Monitor has a fairly comprehensive API and support docs.&nbs... read more
Google Maps Snippet
Absolute bare basics when it comes the Google Map api but a snippet o... read more