38
votes
32answers
5k views
0
votes
Should you display what’s happening in the unit test as it runs?
Displaying information can be useful; if you're trying to find out why a test failed, it can be useful to be able to see more than just a stack trace, and what happened before the program reached t …
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 is the most useful script you’ve written for everyday life?
I wrote a script for formatting C source files that automatically indents the code using an appropriate combination of tab and space characters, such that the file will appear correct regardless of …
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 …
1
vote
Why do people use Java?
I think it mainly comes down to the history of the language - you need to understand its history to understand how it became popular. It still retains popularity as a result of that initial moment …
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 …
21
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 …
2
votes
What do you do with a developer that does not test his code?
It seems that people have come up with a lot of imaginative and devious answers to this problem. But the fact is that this isn't a game. Devising elaborate peer pressure systems to "name and sham …
2
votes
Why isn’t LISP more widely used?
I think there are a number of reasons, including the syntax, the fact that it's difficult to learn, and that it is less efficient (or it's at least more difficult to write a compiler that generates …
