Feeling just a little nostalgic this time of year. Just made a little script to find the oldest python files on your hard drive. http://rene.f0o.com/~rene/stuff/oldest_python.py oldest_python.py [path] oldest_python.py mystuff/python oldest_python.py oldest_python.py ~ Update: Lennart mentions a unixy way in the comments of finding oldest files with this: find . -name '*.py' -printf "%T+ %p \n" | sort | more With that I found some really old python files of mine... woh! the oldest ones dated in 1998 . There are older C, C++, haskel, javascript, java, pascal, prolog, asm, sql, perl, etc, etc and heaps of other old junk files, but those are the first ones I could find written in python. I guess that means I've been programming python for around 12 years now . Python was at version 1.4 or so, and 1.5 was released not long after. New style objects did not exist, and it was not all too uncommon to be able to segfault the interpreter (ping could easily crash linux