Hacker News new | ask | show | jobs
by joshaidan 3360 days ago
I wonder if there's some way to apply this to coding. Besides annoying my co-workers, would verbally talking about what I'm coding improve the quality of my code, or productivity? What about physical gestures?
2 comments

It feels like our equivalent would be Rubber Duck Debugging.
Not verbal, but I think of strict adherence to coding and commenting standards in this spirit. A single character out of place can distract the reader from a fatal bug. Also, acknowledging one's fallibility and handling cases that should never happen:

  else throw("BUG: ...")