vote up 162 vote down star
64

I know most people have code review and standards in place, but I work at a place with poor standards. I'm not saying that my code is flawless by any means, but I find the code my fellow members submit is totally lacking of structure, standards, naming convention, etc. Whole code blocks that have been replaced are still left commented out in the final product. I'm not going to get into the actual correctness of the code, but these issues make it virtually impossible to debug when my boss inevitably comes to me to fix my team members' problems before send out their app..

My question is this, how do you guys handle poor quality code from your team members? If you work in a less structured environment, how do you approach coders about improving the quality of their own code (or your boss to get him to implement some kind of standards/code review)?

Thanks guys.

flag

44 Answers

prev 1 2
vote up 0 vote down

I'm not sure if it depends if you've got a leadership position (from official company hierarchy or from technical merit) in the team or not. Getting the other team member to review your code and taking on their comments and ideas might better help them understand the wonders of code review and proper structure.

If you just try to force standards on people I've often found that code reviews decent into people complaining about how you've placed a } on the wrong line or haven't included a space after a , while missing actual problems like unchecked return values or the like.

link|flag
vote up 0 vote down

Assuming you actually want your team to improve, I would essentially recommend to work it out the way every successful team works: use their strengths and try to cover their weaknesses.

I think watching team sports will give you a better idea of what I'm talking about.

link|flag
vote up 0 vote down

An important thing is to help a developer understand why bad code is bad. Maybe have the developer work on a support ticket on someone else's crappy code, so they can see first-hand how much harder problem determination is with crappy coding. Or, if they're receptive to apprentice-style learning, have them look at a particularly crappy piece of code and discuss what it does, then "pair-refactor" to better code.

link|flag
vote up 0 vote down

Lets not forget one thing. There are bad programmers out there, but what if you don't understand your co-worker code ? Does that make it bad code or you a bad reader ?

I have seen people taking over some code and yell and scream this is some f*ed up code and so on. They get permission to rewrite it and either the result ends up being almost identical or worse.

But if the code is WTF-daily quality the best way is to call the programmers bluff and tell him/her to rewrite his stuff.

This is what meetings are. One thing I like about scruum meetings is they are never more than 15 minutes, no sitting down, ask for one such meeting and ask for an explanation of the code and then agree on either a rewrite or a re-read.

link|flag
vote up 0 vote down

The main problem with telling people that their code is 'wrong' is that they might get mad or offended etc.

I just want to add to this. Rather than saying "wrong," I just say our code has to be "consistent." People don't like to be told that they are wrong, but I don't think people will object to adjusting their ways so that they can feel like they are part of the group.

Obviously, your group will have to hold meetings so that you guys can come up with consistent practices. This is where you present your ideas. If they are truly better than your coworkers' practices then they will bubble up to the top to become the new standard.

Of course, having a standard means nothing. You need to actually enforce the standard once it is in place.

link|flag
vote up 0 vote down

I like the guy who said the weekly code review. Good practices can be taught and hopefully the person in question is new and anxious to improve and learn from others. If not, well then, craft them a nice utility project to work so they are out of the way.

link|flag
vote up 0 vote down

Where I work, we have mandatory code review for anything going to our production servers. Our organization's main business is not producing code but we must maintain an ERP system. For that reason we have developers on staff. Our review process is fairly informal (just a little background).

My strategy for code review has been classify things I find as either:
! - show stoppers. ie: flaws in logic, unhandled cases, security holes, etc.
* - suggestions. ie: more concise methods of performing same function, more efficient, etc
? - I don't understand some portion of the code as it relates to the business need

The "suggestions" are where I try to impart (what I believe to be) better coding practice without saying "you must do it this way or FAIL". I keep it open ended and try to explain why I think its a better method. This is my attempt to improve coding practices without being being overbearing or bruising egos. We also don't have the resources available to force all our code to be pristine.

I try to make sure that the suggestions would provide significant improvement. Often people know there is a better/cleaner way but they just need to get something out the door.

How you write your review (choice of language and tone) can play into the reaction of the developer. Some people take critique better than others. Pick your battles for those who take it poorly. People who take it well (and enjoy learning) are often appreciative.

link|flag
vote up 0 vote down

tease them unmercifully until they shape up or quit - or you find another job where you're not pulling all the weight

"I'd like to congratulate Tim on finally putting a comment in his code..."

"John wins this week's Obfuscated C Contest prize, unfortunately we're supposed to be writing VB.NET..."

;-)

link|flag
vote up 0 vote down

Fire them, or fire yourself.

link|flag
vote up 0 vote down

it is really nasty to have someone else complaining about your code, for that reason a more "neutral" opinion might be better and by neutral I mean non-human, at my current job we use pylint (python) and we have approval before prod, the pylint seems to be very fair since it's based on rules and policies defined globally and the programmer can check it personally before submitting (avoiding the shame of being corrected by someone else).

link|flag
vote up 0 vote down

Give your team more training sessions on how to improve their quality... and a little motivation might help

link|flag
vote up 0 vote down

I had a heart-to-heart with a developer one time when he checked in code that didn't even compile much less work correctly.

I asked him how he wanted to be perceived ny his peers and people who looked at the product code years later. I gave him two options:

  • your code didn't work well and was terrible to maintain
  • your code is a pleasure to work with and rarely have to make fixes

What type of person do you want to work with and what type of developer do you want to be?

He thanked me a year later after I had left the company.

link|flag
vote up 0 vote down

"A superior man is modest in his speech, but exceeds in his actions." - Confucius

You are not going to achieve much through ridicule and the cost of replacing an employee is probably going to outweigh the cost of training that employee.

Teach them the best practice - You might just learn something yourself in the process.

link|flag
vote up -3 vote down

Public ridicule. Send an email around with the code in question along with "Ha Ha Ha! Great candidate for the daily WTF!" as the email subject. People will soon learn.

link|flag
prev 1 2

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.