Live data from Hacker News

Viewing profile — th_yc

th_yc

HN member
Joined
Tue, Oct 04, 2011, 10:49 PM UTC
HN karma
1
Public activity
3 items

About th_yc

No profile information was provided.

Recent public activity

  1. comment
    Comment #3073335

    Yes, since PyPy (and Rubinius) have JITs (like V8), that is the fairer comparison. Nevertheless this highlights just how helpful JITs can be for cpu-bound code -- makes me wish PyP…

  2. comment
    Comment #3073322

    Exactly -- for a fair comparision, V8 (which has a JIT) should be compared against Rubinius (for Ruby) and PyPy (for Python), which will both be nearly as fast as V8. Of course, it…

  3. comment
    Comment #3073316

    Technically the above is a dynamic programming algorithm, in that you are avoiding the recomputation of fib(1..n-1) in each step. That is equivalent to recursion+memoization, which…