49
votes
One piece of advice
Practice, practice, practice.
I used to think that reading books and attending lectures would somehow magically transform me into a great coder. While these things are still important, the …
2
votes
What kind of prefix do you use for member variables?
I prefix member variables with 'm' and parameters (in the function) with 'p'. So code will look like:
class SomeClass
{
private int mCount;
...
private void SomeFunctio …
2
votes
What is the worst class/variable/function name you have ever encountered
Function name:
GiveItAWhirl();
followed closely in the code by
GiveItAWhirl2();
These functions just pieced together unrelated da …
