Search Results

3
votes

Humor in code

My favorite is a comment a co-worker added to a safe-delete function we had in c++. It was very hackish, but it protected from some null problems in a code-base that wasn't checking nulls often eno …
0
votes

what is an ideal variable naming convention for loop variables?

For integers I use int index, unless it's nested then I use an Index suffix over what's being iterated like int groupIndex and int userIndex. …