vote up 3 vote down star

In my company we get on and off shore contractors in and out all the time. It is hard to maintain a code base like that since the level of maturity in writing code varies considerably. To a certain extent my role consists of mentoring the development resources. I have found that if I just let them code, i will get something very naive put together. What is the best way to teach people who are already developers how and when to use interfaces, abstraction, wrapping, design patterns, reflection etc.

flag

4 Answers

vote up 3 vote down check

Your question is bigger than programming and IT, of course -- it really gets into the heart of teaching theory -- how best to pass on knowledge from one person to another.

We know some of the basics -- small student to teacher ratio, etc. And you can't do the work for the student if you want them to master something.

So, what can we take away from this? Make sure you have consistent standards of where you want your "students" to get to. Ensure that you have quality materials they can learn from. You have to have a methodology to do this, otherwise you'll find that you're wasting a LOT of your own precious time. Mentoring is vitally important, but again, your student is going to need to have the wherewithal to learn on their own after being pointed down the right direction.

So how DO you teaching the import programming concepts that go way beyond syntax?

Personally, I like mentoring and providing good examples the junior developer can delve into to learn the ins and outs for themselves.

And don't forget that they need room to make mistakes, but those mistakes have to be caught and corrected.

link|flag
vote up 0 vote down

Your answer is in your question. The only way I have found to do it is to mentor younger developers, one at a time. That means matching developer ability to project difficulty, and spending time guiding them in the right direction.

Edit: Looking back at your question, I think maybe my answer is not so good. Unless they are long term (and probably not offshore), I don't think you are going to have much luck mentoring contractors. You are going to get what you get. Keep that in mind when you hire.

link|flag
vote up 0 vote down

Make everyone start with maintenance. Only by learning how painful maintenance is on bad code is can you learn not only how to write good code, but also have the incentive to actually do so.

link|flag
vote up 0 vote down

I'd suggest making sure that code reviews are somehow incorporated into your development process. Not the confrontational kind (two or more reviewers gather with the coder in a meeting room, with the result of tearing him to shreds), but more the one-on-one, walking through of what's been written. From what you described, it sounds like your developers are geographically distant, thus making an effective code review difficult. However, persevering in this would be worthwhile. A real-time voice conversation, with the code in front of both of you, would be best, if you can't get together in person.

As long as you enter into such reviews with the goal of helping your developers to get better, both of you will benefit.

link|flag

Your Answer

Get an OpenID
or

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