Live data from Hacker News

Viewing profile — eipi

eipi

HN member
Joined
Thu, Jan 12, 2012, 2:14 PM UTC
HN karma
44
Public activity
10 items

About eipi

No profile information was provided.

Recent public activity

  1. comment
    Comment #5418303

    Until the day a man feels equally comfortable telling a sex-related joke to a woman as to another man, all such jokes are, by definition, sexist. We as a society are not open towar…

  2. comment
  3. story
    Ask HN: How do you manage your one-man project?

    I am doing some side projects at my "copious" spare time (getting up at 5am and work for 2 hours). I think it would be a shame if I end up wasting time. So, I wonder if any of you,…

  4. comment
    Comment #4906449

    There are two kind of "technical" people. The "Science" kind, and the "engineering" kind. If you appreciate the "beauty" of an mathematical equation, or the "elegance" of a proof, …

  5. comment
    Comment #4810112

    Because city and local officials make huge profits with these development. Remember, land is owned by the government. And no one is accountable for failed investment. Cheapest mate…

  6. comment
    Comment #4522128

    For one, it will be useful to catch cheating program homework that simply renames variable names and re-arranges function definitions.

  7. story
  8. story
  9. comment
    Comment #3685865

    Memoized version: class Factorial(object): def __init__(self): self.n = 0 self.fact_n = 1 def next_fact(self): self.fact_n *= (self.n + 1) self.n += 1 def prev_fact(self): self.fac…

  10. comment
    Comment #3500817

    This is essentially what I have been doing for the last 6 months and it works great for me. But it only works great because 1) I go to bed at 9 pm - I am literally falling asleep w…