Welcome...

  • Google Chrome DNS Cache

    Google Chrome has it's own DNS cache which can get you in a pickle if you're a web developer. Clear ...

  • Find classes marked with an attribute

    Adding attributes to classes in .Net seems to be a good way to add meta data. I recently needed to ...

  • Sending Unicode based HTML emails.

    Email is a tricky subject. Even if your server and client supports Unicode, you can't guarantee every server between them ...

  • South commands

    Quick note for Django South commands: New app: manage.py schemamigration app_name --initial manage.py migrate app_name Existing app: First run on ...

  • Export/Import mysql data.

    To export: mysqldump --routines -u root -p -h SOURCE_IP SOURCE_DATABASE_NAME > EXPORT_FILENAME.sql To import: mysql -u root -p -h DESTINATION_IP ...

  • What order do filenames go in *NIX?

    I find it's easiest to remember the order of filename parameters with the following rule: The first file must exist, ...

  • Using Bpython and Django

    This looks useful http://proteus-tech.com/blog/code-garden/bpython-django/

  • Debugging Django with Komodo IDE

    Make sure Komodo IDE is listening for debugging connections (debug menu), then open debug -> listener status and find the ...

  • Access is denied when loading an assembly

    Just solved this issue in .Net, when trying to load an external assembly, an unhelpful error of FileLoadException(Access is denied). ...

  • Python, libxslt and custom resolvers

    I recently had a requirement to read in an XSLT file and transform it using Python. These transforms weren't created ...