1
vote
Do you ever code just for fun?
I do a lot of programming in my spare time just for the fun of it. Probably more than I do at work, in fact. A lot of my programming has been related to the original Doom (there's still a fairly …
65
votes
What is the best comment in source code you have ever encountered?
The original Doom had an engine with static walls that could not move; the result was that all doors opened vertically; nothing could ever move horizontally. I burst out laughing when, after the s …
1
vote
What are the most useful software development metrics?
Average function length, or possibly a histogram of function lengths to get a better feel.
The longer a function is, the less obvious its correctness. If the code contains lots of long fun …
38
votes
What coding mistakes are a telltale giveaway of an inexperienced programmer?
Probably the most tell-tale sign is an inability to properly factor out code into separate easy-to-understand chunks. If you're regularly encountering functions that are hundreds of lines long, or …
22
votes
What are the best uses for each programming language?
Assembly is useful to learn so that you know exactly what is going on at the bare metal - sometimes useful to understand performance issues. In the majority of cases, it mak …
