Django v1.0

Productivity for today is down the drain… -_-
Tags: django, Programming, python
I just read a blog entry about how slow python is compared to Haskell. His code was running at about 33 seconds on my machine. Then he went talking about using psyco to improve his speed. So, I tried running his psyco code and the time came out to be about 1.6 seconds.
And I thought this is just too slow. So here’s my speedy fib. It’s nothing fancy, just uses hash table to increase the speed.
The average time for my code was 0.0014~ Woohoo~
[post script]
I tried running my code with psyco, but that made it worse. -_-;; So much for JIT.
Tags: geek, Programming, python