46
votes
Should a developer aim for readability or performance first?
You missed one.
First code for correctness, then for clarity (the two are often connected, of course!). Finally, and only if you have real empirical evidence that you actually need to, you …
0
votes
Why not use exceptions as regular flow of control?
You might be interested in having a look at Common Lisp's condition system which is a sort of generalization of exceptions done right. Because you can unwind the stack or not in a controlled way, …
6
votes
What real life bad habits has programming given you?
Sometimes I treat my desk as if it has a garbage collector. Wishful thinking, I suppose.
…
0
votes
Metric for Program Size
What are some suggested means of determining the size of an application that will provide real meaning?
If you ever find a really good answer to this, please write it up properly, ok …
2
votes
Best practices in LaTeX
Here's one I don't think has been mentioned yet.
When you are including figures via a \includegraphics and the like, don't specify the full pathname (use graphicspath to organi …
