September 15, 2008

skip dependencies in Rake

Here is a handy rake task to skip dependencies whenever you want to:

desc 'Skip dependencies of subsequent tasks'
task :skip do
  Rake::Task.tasks.each do |t|
    t.clear_prerequisites
  end
end

September 14, 2008

pyweek 7 is over

PyWeek just went by. A python programming challenge where participants have one week to make a game.

Here is our project page: google code strlen


Or you can check it out like so:
svn checkout http://strlen.googlecode.com/svn/trunk/ strlen