|
|
|
|
|
by mozey
2246 days ago
|
|
"Everyone knows that debugging is twice as hard as writing a program in the first place. So if you're as clever as you can be when you write it, how will you ever debug it?" -Brian Kernighan Over time I've come to appreciate this sentiment. Banging out clever code super fast isn't that important... Spending some time up front thinking about types and architecture pays off in the long run. Especially for server side code. Far from being annoying, error messages from the compiler make me feel warm and fuzzy inside. On the other hand, for quickly prototyping user interfaces, some "stream of consciousness" Javascript might just be good enough. |
|