Search Results

31
votes

What development book made the most impact on you as a developer?

Godel, Escher, Bach: An Eternal Golden Braid (A Metaphorical Fugue on Minds and Machines in the Spirit of Lewis Carr …
2
votes

Language features you should never use?

Never rely on the compiler to initialize a variable. For example, never assume that integers are initialized to 0 or pointers to null. It may work fine in the current compiler you are using but c …
1
vote

What is a line of code?

The notion of LOC is a attempt to quantify a volume of code. As pointed out in other answers, it doesn't matter what you specifically call a line of code as long as you are consistent. Intuitively …