Category Archives: Programming

Project Euler, Problem #1

The first problem within Project Euler isn’t meant to twist the brain in knots and is a gentle introduction to what is coming further down the road. The problem states: If we list all the natural numbers below 10 that … Continue reading

Posted in Programming | Tagged , | 2 Comments

Project Euler, An Exercise In Exploration

Some time ago I stumbled onto a math based problem solving site for programmers named Project Euler. The Project Euler site describes itself as: Project Euler is a series of challenging mathematical/computer programming problems that will require more than just … Continue reading

Posted in Programming | Tagged , | 1 Comment

Source Control Commit Visualisation

Software development relies on source control management software such as CVS, Subversion, SourceSafe, Bitkeeper, Mercurial, Git and the like to track and manage the changes in the source code over time. As a project progresses, developers come and go, contractors … Continue reading

Posted in General, Programming | Tagged , , , , , , , , , , , | Leave a comment

.htaccess Inheritance Gotcha

I recently set up a subdomain within a CPanel hosting account and ran into a strange problem. After the subdomain was built, DNS propogated, FTP access and a database set up – I uploaded the latest version of the ever … Continue reading

Posted in Programming, Web Development | Tagged , , , | Leave a comment

ASP.NET Permanent (301) Redirect

Within ASP.NET, the System.Web.HttpResponse class providers a method to handle HTTP redirects, aptly named Redirect. The Redirect method has two overloads: Redirect (string) Redirect (string, bool) The former accepts a string representation of the URI that you’d like to redirect … Continue reading

Posted in Programming | Tagged , , , , | 1 Comment

Rapid Development Using Django

In February, Jesper Nøhr wrote about taking an idea from conception to profitable web site in 24 hours. The project involved building an advertising product for the indie crowd, so they could advertise their products throughout other web sites in … Continue reading

Posted in Programming, Web Development | Tagged , , , , , , , | 1 Comment

Change The Django Source Directory With A .pth File

John DeRosa recently wrote about using junctions (the Windows version of a symbolic link within Unix) to change the Django source directory. While that solution clearly works, I got the impression it seemed like a lot of hard work and … Continue reading

Posted in Programming | Tagged , , , | 3 Comments

Installing Django On Windows

Ever needed to install Django in a Microsoft Windows environment, here is a quick start guide to make that happen: Read through the official Django installation documentation, it might just save you a world of hut down the road. Download … Continue reading

Posted in Programming | Tagged , , , , | Leave a comment

Extending Nintendo Wii

Johnny Lee, a human computer interaction student has released a series of videos demonstrating alternative uses for the Nintendo Wii gaming console. At this stage, Johnny has released videos showcasing: Minority Report style hand gestures to control your computer low … Continue reading

Posted in Programming | Tagged , , , , , | Leave a comment

Django Northwind Coming Soon

Whenever someone in the Microsoft development world has needed to demonstrate virtually anything utilising a database, the Microsoft Northwind database has been used. The beauty of the Northwind database being so widely recognised and frequently reused, is that developers around … Continue reading

Posted in Database, Programming | Tagged , , , | Leave a comment