When reviewing somebody else's code, what is it that you usually find most disturbing?
|
3
|
|||||||||||||||||
|
|
|
Code formatting. I absolutely can not read code, if it is not formatted consistently. Just thinking of the mix of tabs and space for indenting makes me shudder. |
||||||||
|
|
|
When I mark a section as needing a total rewrite, and then realize it's something that I wrote years before. |
|||
|
|
Bad/Poor commenting. |
|||
|
|
|
|
|
|||
|
|
|
|
Variable names not declared according to the context . |
|||
|
|
|
|
A Modest List
If statements comprised entirely of: Unreadable Boolean-Chain Statements
Basically, complex to very complex booleans that have no unifying name. Sure, I the machine can figure that out and get it right. Sure, I can puzzle through it. But it wastes so much time as I try to decipher it and it makes people afraid to change it because it's one big honking statement that requires a strong mastery of boolean algebra to pick apart. Conversely, you can encapsulate that stuff and make it readable. Below is a Contra-Example
Sure, it's wordier, but it's comprehensible, each unit of logic is discrete, modifiable, self documenting, it's easily debuggable since you see the result of each step, and it's unit testable. |
|||
|
|
Not using |
|||
|
|
|
|
Not to repeat everyone else but variables and functions named in a foreign language confuse [and disturb] the shit out of me. |
|||
|
|
|
|
|
||||
|
|
|
Code that's obviously been copied from a blog somewhere and pasted into production code. |
||||
|
|
|
That I'm reviewing someone else's code. |
||
|
|
|
|
Inefficiency - like copypasta repeated code and absence of modularisation is the worst. Also, where one lengthy block of code could be replaced by a 12 character line of code. |
||
|
|
|
|
When someone puts the opening bracket on the same line:
instead of the one true way of doing this:
|
||||
|
|
|
Using the same variable for different purposes (a common habit of electrical engineers that write SW)
|
||||
|
|
|
When reading lines from a file, making the exact same database call with the exact same data for every line, when the entire table being searched only contains about 30 rows. |
||
|
|
|
|
|
||
|
|
2-spaces indentation. |
||
|
|
The naming conventions are most disturbing. Somebody use the names for variable just as int a,b like is not a good practise. Atleast he should comment on it. Another one I notify is lack of comments in codes. A good programmer should write comments as he can possible. This help him to review code. Anothe wrong stratergy coming is lack of functions. Some one writes a large code for a button clickis not good. So he should use functions for various purposes. |
||
|
|
|
|
Incompetence |
||
|
|
|
|
|
||
|
|
pthread_create() |
||
|
|
Use of #if 0 to block out code. This beats the very purpose of having a source control & makes the code very hard to read. Another very common issue is not initializing variables, a huge no - no but occurs very very often. |
||
|
|
Things that seem like evidence of cargo cult programming. Stuff that doesn't make sense in the context. Typically, when asked why the solution is the way it is, a reply of "I don't know." |
||||
|
|
|
You might be interested in reading the "code smells" question - it goes over a number of common "code smells" (indicators of bad code) and how to correct them. |
||
|
|
|
|
|
||
|
|
|
|
|
||
|
|
Another favorite of mine is
Or another favorite is lines of code that have just been commented out. We have things like subversion for a reason. No reason to leave code commented out from 3 iterations ago
|
||
|
|
Usually a code written by people who think writing code doesnt need to be looked again once it starts working. Those people usually dont folloow standards, have very little programming expirience, don't comment and finally use some weird constructs like one
to check simple length. Btw, I really came accross this code, multiple times, since it was copy/pasted in different places. Oh, and yeah, copy/pasted code is also really disturbing. |
||
|
|
The thing that disturbs me the most is finding code that was clearly never tested. |
||||
|
|
|
Bugs; especially any timing-related, intermittent bugs. |
||
|
|
