Viewing profile — bkz
bkz
HN member- Joined
- Sat, Feb 23, 2008, 1:42 AM UTC
- HN karma
- 54
- Public activity
- 14 items
- HN profile
- View on Hacker News ↗
About bkz
Recent public activity
-
comment
Comment #6941508
Runs perfectly fine with Wine.
- story
- story
-
comment
Comment #2050861
My view is that pair-programming is a tool which only really works for stuff dealing with tactical decision making, logic/fact checking, teaching or debugging. Higher level abstrac…
-
comment
Comment #2033289
This version clocked in at 1:35, gave up on the "professional code" requirement though :) Need to sleep. https://gist.github.com/752455
-
comment
Comment #1402065
Funny how readable Python is: def condense(s, remove): return "".join([c for c in s if c != remove]) Cheating (2.6+): s.translate(None, remove)
-
comment
Comment #1226503
IMHO, a clearer version: x^2 = x^2 x^2 + (r^2 - r^2) = x^2 (x^2 - r^2) + r^2 = x^2 (x + r)(x - r) + r^2 = x^2 If we continue you'll also notice that: (x + r)(x - r) = x^2 - r^2 Whi…
-
comment
Comment #1081357
People who are really serious about software should make their own hardware. -- Alan Kay
- story
-
comment
Comment #871511
After having launched our product I was spending some time reviewing commits together with the senior tech lead. Still to this day I can recall the commit number, the filename and …
-
comment
Comment #749743
Funny, I was in Berlin last week and spent a couple of evenings at this place where I can't recall a single person _without_ a laptop: http://www.spottedbylocals.com/berlin/area/mi…
-
comment
Comment #742720
Believe it or not IKEA is probably the most ethical and hacker oriented large-scale company currently around. They don't scam people into buying stuff which breaks and needs to be …
-
story
Ask HN: Berlin Hacker Meet
Hi, I will be visiting Berlin for a week, arriving on the 28/7 and I was wondering if there are any startup people in town who'd like to meet up sometime for dinner or drinks. I've…
-
comment
Comment #706493
The code has been available in their public SVN repository for quite some time: http://src.chromium.org/viewvc/chrome/trunk/src/courgette/ BTW, I've read about 40% of the Chrome co…