| 31. | | Denmark introduces fat-related food tax (bbc.co.uk) |
| 45 points by alexholehouse on Oct 2, 2011 | 36 comments |
|
| |
|
|
| 33. | | Plan 9 from User Space (aka plan9port) (swtch.com) |
| 47 points by shawndumas on Oct 2, 2011 | 2 comments |
|
| 34. | | Cool New Google Maps Feature Lets You 'Helicopter' Preview Routes (pcworld.com) |
| 44 points by Urgo on Oct 2, 2011 | 10 comments |
|
| 35. | | Investors Spooked by China (allthingsd.com) |
| 44 points by tilt on Oct 2, 2011 | 11 comments |
|
| 36. | | Curta calculator - hand-held, mechanical arithmetic (wikipedia.org) |
| 42 points by ColinWright on Oct 2, 2011 | 16 comments |
|
| |
|
|
| |
|
|
| 39. | | P(we hire you) =~ 0.0016 (davidlynch.org) |
| 42 points by kemayo on Oct 2, 2011 | 69 comments |
|
| 40. | | Is Your Software Rotting? (pragprog.com) |
| 40 points by sahil_lmn on Oct 2, 2011 | 9 comments |
|
| 41. | | Thank you to Mike Shaver for 6 years at Mozilla (jubjubs.net) |
| 41 points by erikpukinskis on Oct 2, 2011 | 6 comments |
|
| 42. | | Dyn.js - invokedynamic-based javascript implementation for the JVM (github.com/dynjs) |
| 39 points by franze on Oct 2, 2011 | 5 comments |
|
| 43. | | The Brainfu*k Turing Machine (Javascript) (damow.net) |
| 39 points by herbdean on Oct 2, 2011 | 4 comments |
|
| 44. | | Facebook caught lying? (blog.arunbalan.in) |
| 38 points by asto on Oct 2, 2011 | 8 comments |
|
| 45. | | How to Hire a Great Marketer for Your Company (mixrank.com) |
| 39 points by pw on Oct 2, 2011 | 2 comments |
|
| 46. | | Peerbind: convert a webpage into a massively interconnected website (peerbind.com) |
| 37 points by bpierre on Oct 2, 2011 | 11 comments |
|
| |
|
|
| 48. | | CodeSprint: Apply to multiple startups simultaneously (interviewstreet.com) |
| 36 points by mikeinterviewst on Oct 2, 2011 | 13 comments |
|
| 49. | | Tell HN: Another PayPal Farce - Refunds my money to customer |
| 35 points by ozres1 on Oct 2, 2011 | 22 comments |
|
| |
|
|
| 51. | | Algorithmic symphonies - HTML5 generator (olegkikin.com) |
| 35 points by oleg_kikin on Oct 2, 2011 | 3 comments |
|
| 52. | | The case against the Kindle as a low end tablet disruption (asymco.com) |
| 30 points by tylerrooney on Oct 2, 2011 | 22 comments |
|
| |
|
|
| |
|
|
| |
|
|
| |
|
|
| |
|
|
| 58. | | CSS 3D in Firefox, demo (taliabale.tumblr.com) |
| 28 points by liabelle on Oct 2, 2011 | 7 comments |
|
| |
|
|
| |
|
|
|
| More |
(a) in the "driven" part, not the "test" part. Tests are (in general) a good thing. However, using a series of tests to drive your design (aka "TDD is not a testing method,it is a design method" idea) often gives you an illusion of progress as you hill climb using conformance to an increasing number of tests as a progress heuristic and end up on top of a local maximum (as for example in the TDD sudoku episode).
(b)in conflating TDD with one or more of (1) testing, (2) automated testing (3) automated regression test suites (4) developers adding more tests to the automated regression test suite as they develop more features, refactor, debug etc.
You can have (1) to (4) without either (5)writing tests first (aka "don't write a line of code without having written a test covering it") or (6)driving your design with tests. The last two ideas are the real distinguishing features of TDD and are of debatable merit. None of (1) through (4) are novel ideas. (5) and (6) are where differences of opinion happen.
Even if you choose to use TDD, it is good to be aware it is just one tool in your toolbox and not necessarily the default tool to reach for.
(c) in the zealotry of some of its evangelists who insist that TDD is some kind of moral imperative and is the only "correct" way of developing software and anyone who doesn't follow that path or make respectful obeisance to it is "unprofessional","dodgy" etc. This is often accompanied by conflating TDD with more generic notions like "automated tests" etc as above.
For example, Rich Hickey, the author of Clojure, said recently at the Strange Loop conference "We say, “I can make a change because I have tests.” Who does that? Who drives their car around banging into the guard rails!?"
(and that is all he said. One sentence in a keynote presentation)
For this Hickey was taken to task by a TDD advocate, Brian Marick, for not being "respectful" enough to TDD and for his "tone" in daring to mildly criticize it as a development practice. After some tweets complaining about Rich Hickey's tone driving away people from Clojure etc he wrote
http://www.exampler.com/blog/2011/09/29/my-clojure-problem
"The dodgy attitudes come from the Clojure core, especially Rich Hickey himself, I’m sad to say."
This kind of repeated whining and harassment over a few days made the normally unflappable Hickey (who asked for references to his "disrespect" etc, to the sound of crickets) lose his temper and say (on his twitter stream)
"If people get offended when their tools/methods are criticized as being inadequate for certain purposes, they need to relax.",
and "Testing is not a strawman. It's an activity, it has benefits, but is not a panacea. No 'community' should be threatened by that fact"
and later "Accusing people who merely disagree with you of being snarky, intolerant, dismissive etc is both wrong and destructive."
and much later after being subjected to a barrage of tweets criticizing his tone and 'lack of respect' for TDD, "If launching an ad hominem attack is the product of a lot of thought, it is time for you to move on. Good riddance."
postscript: the best criticism of TDD I've seen is at http://www.dalkescientific.com/writings/diary/archive/2009/1... . The responses at http://dalkescientific.blogspot.com/2009/12/problems-with-td... are (mildly) interesting as well.