04.08.2012, 19:11
Quote:
|
What other advice for remembering things have you guys got? I'm pretty forgetful in many things, especially coding (forgetting ;, function names, parameters, variables, stupid things etc)
|
Quote:
|
Orignially Written by WikiHow Use consistent naming conventions for variables. It will help you keep track of each type of variable, and also what that variable's purpose is. This means more typing than simply x = a + b * c, but it will make your code much easier to debug and maintain. One popular convention is Hungarian notation, where the variable name is prefixed with its type. For example, for integer variables you might use intRowCounter; strings might use strUserName. It doesn't matter what your naming convention is, but be sure that it is consistent and that your variable names are descriptive. (See Warnings below). |
Quote:
|
I bet all of you (even the really good ones!) have made some stupid mistakes!
|
.


