vote up 102 vote down star
45

I've been working with a small group of people on a coding project for fun. It's an organized and fairly cohesive group. The people I work with all have various skill sets related to programming, but some of them use older or outright wrong methods, such as excessive global variables, poor naming conventions, and other things. While things work, the implementation is poor. What's a good way to politely ask or introduce them to use better methodology, without it coming across as questioning (or insulting) their experience and/or education?

EDIT: Wow, a lot of great answers. Thanks for the input so far. I'm not even sure if there is a truly correct answer to this.

flag
8  
Is rolling back each of their commits with a message of "I think it's best if we all just pretend this never happened" an option? – Draemon Oct 15 '08 at 21:20
show 8 more comments

38 Answers

prev 1 2
vote up 1 vote down

Bad naming practices: Always inexcusable.

And yes, do no always assume that your way is better... It can be difficult, but objectivity must be maintained.

I've had an experience with a coder that had such horrible naming of functions, the code was worse than unreadable. The functions lied about what they did, the code was nonsensical. And they were protective/resistant to having someone else change their code. when confronted very politely, they admitted it was poorly named, but wanted to retain their ownership of the code and would go back and fix it up "at a later date." This is in the past now, but how do you deal with a situation where they error is ACKNOWLEDGED, but then protected? This went on for a long time and I had no idea how to break through that barrier.

Global variables: I myself am not THAT fond of global variables, but I know a few otherwise excellent programmers that like them A LOT. So much so that I've come to believe they are not actually all that bad in many situations, as they allow for clarity, ease of debugging. (please don't flame/downvote me :) ) It comes down to, I've seen a lot of very good, effective, bug free code that used global variables (not put in by me!) and great deal of buggy, impossible to read/maintain/fix code that meticulously used proper patterns. Maybe there IS a place (though shrinking perhaps) for global variables? I'm considering rethinking my position based on evidence.

link|flag
vote up 0 vote down

Politely and firmly...

link|flag
vote up 0 vote down

Privately inquire about some of the "bad" code segments with an eye toward the possibility that it is actually reasonable code, (no matter how predisposed you may be), or that there are perhaps extenuating circumstances. If you are still convinced that the code is just plain bad -- and that the source actually is this person -- just go away. One of several things may happen: 1) the person notices and takes some corrective action, 2) the person does nothing (is oblivious, or doesn't care as much as you do).

If #2 happens, or #1 does not result in sufficient improvement from your point of view, AND it is hurting the project, and/or impinging on you enough, then it may be time to start a campaign to establish/enforce standards within the team. That requires management buy-in, but is most effective when instigated from grass roots.

Good luck with that. I feel your pain brother.

link|flag
vote up 0 vote down

People writing bad code is just a symptom of ignorance (which is different from being dumb). Here's some tips for dealing with those people.

  • Peoples own experience leaves a stronger impression than something you will say.
  • Some people are not passionate about the code they produce and will not listen to anything you say
  • Paired Programming can help share ideas but switch who's driving or they'll just be checking email on their phone
  • Don't drown them with too much, I've found even Continuous Integration needed to be explained a few times to some older devs
  • Get them excited again and they will want to learn. It could be something as simple as programming robots for a day
  • TRUST YOUR TEAM, coding standards and tools that check them at build time are often never read or annoying.
  • Remove Code Ownership, on some projects you will see code silos or ant hills where people say thats my code and you can't change it, this is very bad and you can use paired programming to remove this.
link|flag
show 2 more comments
vote up 0 vote down

It is important to motivate and coach people and be show respect even if someone obviously does mistakes. But there should be the way not only to coach but also to state that mistake is mistake. Bad code should be done better. It is not optional. And employee should be aware which code is ok and which not ok from point of view of his supervisor. It is still supposed to be done with respect and motivate those who are accountable to improve.

link|flag
vote up 0 vote down

Depends on the programmer. Some guys actually like to hear "that sucks" because they knew the code smelled but weren't sure why.

Other programmers need to be babied a little more. I find telling them something is bad is good; "that's not a good way to write code" followed by a bit of coaching "here, see if we do this it's more readable/less warnings/whatever". It's the constructive criticism that helps; if you can't put your money where your mouth is and actually do it better you're best not to comment, even if you know it's bad.

The only person that both approaches have failed on was a stubbon admin assistant who was writing enormous macros in VBscript and going about everything backwards. She actually had the gall to tell me that I didn't know anything about computer programming and that I could stand to learn from her 1337 sk1l50rz.

link|flag
vote up 0 vote down

It totally depends on the culture you're writing in. In a free software project, you tell them they're writing bad code with positive suggestions, ways to improve it and feedback. You can also send them a patch to their code.

A friendly email never hurts, either.

link|flag
vote up 0 vote down

I have a similar senario with the guys i work with.. They dont have the exposure to coding as much as i do but they are still usefull at coding.

Rather than me letting the do what they want and go back and edit the whole thing. I usually just sit them down and show them two ways of doing things. Thier way and My way, From this we discuss the pro's and cons of each method and therefore come to a better understanding and a better conclusion on how should we go about programming.

Here is the really suprizing part. Sometimes they will come up with questions that even i dont have answers to, and after research we all get a better concept of methodology and structure.

  1. Discuss.
  2. Show them Why
  3. Don't even think you are always right.. Sometimes even they will teach you something new.

Thats what i would do if i was you :D

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.