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 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 2 vote down

This will definitely need a lot of effort on your and your team's side. But, to make life easier you may use some of the tools.

I am listing down a few tools for Java and Perl:

Java:

  • Jalopy -- for formatting
  • Findbugs -- for best practices
  • PMD -- for static analysis of the code

Perl:

  • perltidy -- for code cleanup. See this to get started.
  • Perl::Critic -- for critic's opinion :) .. I am looking for alternatives here.
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 2 vote down

You sound like you are ready to help your teammates get better at their jobs, but you're not sure if you can.

When I was a manager of a software team, one of the things I looked for was the impact each person had on the rest of the team.

If you wrote great code, but got in to arguments or complained a lot, it would hurt the rest of the team's productivity.

If you make your team work smoothly, helping folks get along, or contributing ideas for teammates problems, or teaching them to be better at their work, then you have a huge effect on what the team creates. Your influence on others can far exceed your own code contribution.

In my opinion, whether your boss is able to recognize this, facilitate it, and reward it is a huge factor in whether I would stay where I was and try to improve things or quit and try my luck elsewhere.

link|flag
vote up 3 vote down

If you're a .Net shop, I recommend using Team Foundation Server code check-in policies. The Static Code analysis (aka FxCop) with the unit test policy is a great gate keeper for quality code/builds.

You can also consider the Visual Studio 2008 code metrics features (e.g., Cyclomatic Complexity, Depth of Inheritance, Class Coupling, and Lines of Code).

link|flag
vote up 2 vote down

We've developed our own coding standards at our company. Periodically, the senior members will do code reviews for others and let them know what things they need to fix and improve on. You can't be too harsh, but you can't let it slide either...

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 2 vote down

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)?

Since your sphere of influence appears to be limited to your own team, you have to start in your own backyard, ie; lead by example. Be vocal with your peers about what you consider to be successful for you, share that with them, and avoid being arrogant.

Poor quality code usually indicates poor fundamentals. If that is the case you have to short circuit developer bad habits and tendencies. Source code has structure and syntax, so should a development team. Here are some of the things my team does:

  • TDD, write your unit tests first and relentlessly test your code because you know yours and everyone elses code sucks. Say it with me, "I KNOW MY CODE WILL SUCK, I MUST WRITE TESTS FIRST." Resist the urge to integration test. Mock external classes and data to the class being tested to the point that the ability to test every line of code becomes more important than the design itself.

  • KISS, keep it simple and be consistent! The simplest way is the best way every time. It will be easier to understand in 6 months and far easier to maintain. Think Fisher Price easy. Also, don't allow anyone to design in a vacuum, discuss as a team how something is going to get done. If you have a hard time doing that, you are not breaking things down to small enough tasks. This will be painful at first, but it will be worth it in the long run.

As far as coding standards go, don't develop your own from scratch. Instead ask your teammates to check out the Philips Medical Systems standards: http://www.tiobe.com/standards/gemrcsharpcs.pdf. Ask your team to discuss what you want to take away or add to that. Get everyone to participate in it's formation because this is critical for buy in. Then, don't stick it in a drawer when you're done! Post it around your office and use it when you develop. An excellent time to browse the coding standard is right after you pass your tests. You are hopefully about to refactor at this point.

Your bosses job is to hold people accountable for following these principles.

Good luck.

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
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
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.