Viewing profile — rhettinger
rhettinger
HN member- Joined
- Wed, Apr 07, 2010, 7:49 AM UTC
- HN karma
- 47
- Public activity
- 19 items
- HN profile
- View on Hacker News ↗
About rhettinger
No profile information was provided.
Recent public activity
-
comment
Comment #2227870
Traditional unit testing doesn't work well with the strategy component in high-frequency trading programs. * The need to rapidly iterate and refine strategies is not supported by w…
-
comment
Comment #2045143
How Python's super() actually gets used: http://www.google.com/codesearch?as_q=super\(&as_lang=py...
-
comment
Comment #1976769
Code Prion - n. a really bad idea dressed-up as a good idea thereby becoming contagious in a way that never seems to die out. n. memes adopted as a religion by the clueless because…
-
comment
Comment #1951506
There's room for debate on whether grades should reflect homework completion and timeliness, but some of the grading practices were nuts: "...their grades are more accurately refle…
-
comment
Comment #1843760
One client was charging-off sizeable bad debts on their accounts receivable, but the program did not recognize that some of the receivable balance was for the sales tax. With a fiv…
-
comment
Comment #1843750
One client was charging-off sizeable bad debts on their accounts receivable, but the program did not recognize that some of the receivable balance was for the sales tax. With a fiv…
-
comment
Comment #1834783
The Burrows-Wheeler transform used in bzip2 is truly mind-blowing. Many algorithms are ordinary genius (eventually you would have come up with it because the problem space dictates…
-
comment
Comment #1573731
This article had remarkably little content or analysis. Essentially the only point made was that LaTeX markup can separate content from presentation.
-
comment
Comment #1556803
What we really need is more startups that actually have a capital gain (real profits in excess of original investment). That would be progress.
-
comment
Comment #1552710
Monocle works by wrapping a single generator and translating each yield-statement into a hand-off to the event loop or reactor and resuming when the value of the deferred becomes k…
-
comment
Comment #1491396
> Will Python 2 ever end? It will probably be around for a very long time. Some people are trapped by dependencies third-party libraries and others are trapped by mountains of exis…
-
comment
Comment #1444353
If my previous experience in the field is any guide, this should be a rewarding experience for you. > Is there any reason not to go do this? It is likely to be a high-stress job. A…
-
comment
Comment #1434399
I've seen open source people disappear for all kinds of reasons. It is a natural ebb and flow. People tend to fall off when they are busy and they tend to come back when they've go…
-
comment
Comment #1394059
Too often, I see bloggers willing to give executives and public officials a pass when they are caught in a lie. The rationale is that the people are otherwise doing a good job, but…
-
comment
Comment #1393918
Pretty good start and cool idea. Would be more impressive if the program responded to movement of the ghosts or followed a known pattern around the maze.
-
comment
Comment #1393630
If you list it on your CV, someone may "remember" that they thought you were really smart but likely won't remember what gave them that impression. That is a win. If you go to a Me…
-
comment
Comment #1289399
Unlike many lawsuits, this one is a testable hypothesis. It is knowable whether favorable reviews disappeared, whether an algorithm or person triggered the disappearance, and wheth…
-
comment
Comment #1252047
Hopefully, this article will be counter-balanced at some point by discussions with successful entrepreneurs who had open, candid, and honest relationships with their VCs and custom…
-
comment
Comment #1246731
Python 2.6.4 (r264:75821M, Oct 27 2009, 19:48:32) >>> from itertools import product >>> twokids = product('B G'.split(), 'M Tu W Th Fr St Sn'.split(), repeat=2) >>> boytues = [t fo…