5
votes
Best rule for maximum function size?
15 lines of code is good, but it can get larger or shorter depending on what exactly you are doing. The most important thing is to keep all the sentences of a function at the same abstraction level …
0
votes
Which chemical stimulation do you require while coding?
I can code with just water, but most of the time I have mate.
…
1
vote
Should all public methods of an API be documented?
a)
If it's a method, there are always some little details that matter, for example the ones you provided regarding flushing and closing the streams. For example a method "String getFileExte …
10
votes
How to check for equals? (0 == i) or (i == 0)
If you have a list of ifs that can't be represented well by a switch (because of a language limitation, maybe), then I'd rather see:
if (InterstingValue1 == foo) { } else
if (Inters …
1
vote
Experiences and tips for programming with and for Amazon’s cloud servers/apps/tools?
As for SimpleDB, it has a very limited query language and it is very restrictive. If you planning on having lot of complex queries, you …
8
votes
What programming religious argument bothers you the most?
Saying that a language is better/worse because it uses semicolons/indentation. (i.e. Python vs. C-like languages).
…
21
votes
Stunning graphic effects with javascript
Remember lemmings? :-)
http://www.elizium.nu/scripts/lemmings/
…
