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

Instead of having them write code, have them maintain their code.

Until they have to maintain their steaming pile of spaghetti, they will never understand how bad they are at coding.

link|flag
show 2 more comments
vote up 1 vote down

I can't emphasize patience enough. I've seen this exact sort of thing completely backfire mostly because someone wanted the changes to happen NOW. Quite a few environments need the benefits of evolution, not revolution. And by forcing change today, it can make for a very unhappy environment for all.

Buy-in is key. And your approach needs to take into account the environment you are in.

It sounds like you're in an environment that has a lot of "individuality" to it. So... I wouldn't suggest a set of coding standards. It will come across that you want to take this "fun" project and turn it into a highly structured work project (oh great, what's next... functional documents?). Instead, as someone else said, you'll have to deal with it to a certain extent.

Stay patient and work toward educating others in your direction. Start with the edges (points where your code interacts with others) and when interacting with their code try to take it as an opportunity to discuss the interface they've created and ask them if it would be okay with them if it was changed (by you or them). And fully explain why you want the change ("it will help deal with changing subsystem attributes better" or whatever). Don't nit-pick and try to change everything you see as being wrong. Once you interact with others on the edge, they should start to see how it would benefit them at the core of their code (and if you get enough momentum, go deeper and truly start to discuss modern techniques and the benefits of coding standards). If they still don't see it... maybe you'll need to deal with that within yourself (especially on a "fun" project).

Patience. Evolution, not revolution.

Good luck.

link|flag
vote up 1 vote down

Nobody likes to listen someone saying their work sucks, but any sane person would welcome mentoring and ways of avoiding unnecessary work.

One school of teaching even says that you should not point out mistakes, but focus what is done right. For instance, instead of pointing out incomprehensible code as bad, you should point out where their code is particularly easy to read. In the first case you are priming others to think and act like crappy programmers. In the later case you are priming for thinking like a skilled professional.

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