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

They may think your style stinks too. Get the team together to discuss a consistent set of coding style guidelines. Agree to something. Whether that fits your style isn't the issue, settling on any style as long as it's consistent is what matters.

link|flag
vote up 8 vote down

The code standard idea is a good one.

But consider not saying anything, especially since it is for fun, with, presumably, people you are friends with. It's just code...

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

Probably a bit late after the effect, but that's where an agreed coding standard is a good thing.

link|flag
vote up 2 vote down

If you have even a loose standard of coding, being able to point to that, or indicating that you can't follow the code because it's not the correct format may be worthwhile.

If you don't have a coding format, now would be a good time to get one in place. Something like the answers to this question may be helpful: http://stackoverflow.com/questions/4121/team-coding-styles

link|flag
vote up 5 vote down

By example. Show them the right way.

Take it slow. Don't thrash them for every little mistake right off the bat, just start with things that really matter.

link|flag
vote up 34 vote down

Introduce the idea of a code standard. The most important thing about a code standard is that it proposes the idea of consistency in the code base (ideally, all of the code should look like it was written by one person in one sitting) which will lead to more understandable and maintainable code.

link|flag
show 6 more comments
vote up 0 vote down

Politely and firmly...

link|flag
vote up 6 vote down

Suggest a better alternative in a non-confrontational way.

"Hey, I think this way will work too. What do you guys think?" [Gesture to obviously better code on your screen]

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.