Search Results

0
votes

Confessions of your worst WTF Moment. (What not to do.)

Trying to get rid of all duplicates in the code. …
0
votes

Stack overflow code golf

Not very short, but effective! (JavaScript) setTimeout(1, function() {while(1) a=1;}); …
1
vote

Is “username” one word or two?

It depends... userName - for Windows/Java fanatics. user_name - for C/UNIX/Linux fans. user-name - for some old languages and database programmers (Progress, Cobol, ...). …
0
votes

What is this code smell called?

It's just method overload replacement for dynamic OOP languages. Nothing special. Quite common and fairly legal. Look at any serious JavaScript code to see it in action (f.e. ExtJS) …