Live data from Hacker News

Viewing profile — jhtom

jhtom

HN member
Joined
Mon, May 13, 2013, 9:02 PM UTC
HN karma
2
Public activity
2 items

About jhtom

No profile information was provided.

Recent public activity

  1. comment
    Comment #5701654

    Speaking about concepts perhaps Norvig post "(How to Write a (Lisp) Interpreter (in Python))" http://norvig.com/lispy.html can be useful. The concept of a dotted pair (the car and …

  2. comment
    Comment #5701393

    Just a small note. In the definition of the Cons class, the iterate method is calling each time to len before proceeding, and that is terribly inefficient. def __iter__(self): curr…