Viewing profile — anonymous1234
anonymous1234
HN member- Joined
- Mon, Oct 18, 2010, 3:30 PM UTC
- HN karma
- 7
- Public activity
- 4 items
- HN profile
- View on Hacker News ↗
About anonymous1234
No profile information was provided.
Recent public activity
-
comment
Comment #2355051
http://arewefastyet.com/
-
comment
Comment #2195487
Indeed. http://www.google.com/search?q=fortnight+/+1000 1 fortnight / 1000 = 20.16 minutes
-
comment
Comment #2195422
The US DST change in 2007 cost an estimated $500 million to $1 billion: http://www.csmonitor.com/2007/0307/p02s01-stct.html DST has cost me many hours spent debugging. I will be ve…
-
comment
Comment #1803835
why not use logs? in python: >>> from math import log >>> def isPower2(val): return False if (val == 0) else (log(val) / log(2)).is_integer() ... >>> isPower2(0) False >>> isPower2…