| Article: |
Myths Open Source Developers Tell Ourselves | |
| Subject: | on code reading | |
| Date: | 2003-12-12 13:00:20 | |
| From: | anonymous2 | |
|
Response to: on code reading
|
||
|
Code only shows you the what, not the why. It's been shown numerous times that one of the biggest contributors to developer productivty is domain knowledge. E.g understanding the problem that's being solved and for what customer.
|
||
Showing messages 1 through 1 of 1.
-
on code reading
2003-12-12 18:08:59 anonymous2 [View]



Once you have solved 2 or 3 similar problems, you may understand the general problem sufficiently well to be able to write a general solution to that class of problem.
Linus said something to this effect in an article, about the Linux filesystem (IIRC). He said that instead of trying to invent a whole new clever approach, he just studied the 3 main approaches, and made sure that his was compatible with all of them (so that Linux could be ported to such platforms). I think I've misremembered some details there, but the point was that thinking in terms of concrete and specific problems is an effective way to write great code (where great code is a great solution to a problem).