Tagged Questions
The cleverness tag has no wiki summary.
18
votes
10answers
3k views
Help me understand this Brian Kernighan quote
"Debugging is twice as hard as writing the code in the first place. Therefore, if you write the code as cleverly as possible, you are, by definition, not smart enough to debug it."
--Brian Kernighan
...
9
votes
5answers
339 views
Javascript || operator
I am using a large JS library to perform certain drawing operations in canvas. Reviewing the library code (to make accommodating changes), I have ran into the '||' operator being used in a fashion ...
3
votes
6answers
256 views
Javascript Shorthand - What Does the '||' Operator Mean When Used in an Assignment?
I just took a look at this answer, and I noticed the following line of javascript code:
hrs = (hrs - 12) || 12;
My Question:
What does the '||' operator mean when
used in an assignment?
2
votes
1answer
90 views
Memory management for a convenience class to do asynchronous web requests
Inspired by Apple's LazyTables sample, I've just built myself a class called ImageLoader. It's agonizingly clever of me. And as is often the case when I'm agonizingly clever, I'm up against the limits ...
1
vote
7answers
161 views
Are Template-less Getters Possible in Variadic Template Container Classes?
A hypothetical variadic template tuple class would, as far as I can tell, have to use getters with template parameters.
int MyInt = MyTuple.Get<int>(0);
This is inconvenient, and introduces ...
1
vote
2answers
2k views
How many hardware details can a Java Applet Discover?
I'm writing a Java applet to run differently under different hardware. For instance if I know a computer has a large amount of RAM but a weak processor, I can alter the balance of some time-memory ...