102
votes
What is the best comment in source code you have ever encountered?
long long ago; /* in a galaxy far far away */
…
4
votes
If you break long code lines, how do you indent the stuff on the next line?
I have two simple rules:
Statement block: one indentation;
Line continuation: two indentations or parenthesis aligned, whatever is further indented.
So, in the …
4
votes
What is the worst programming language you ever worked with?
System RPL, used by HP 48, 49 and 50 graphing scientific calculators. There were times it seemed to me that the compiler actually had produce a higher-level language for the proces …
