Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

We have a couple senior (i.e. older) developers on our team that have no interest in improving. They write solid code, but they don't want to add unit tests or improve their efficiency. They are old-school C programmers using .NET, but everything they write is purely procedural. When confronted about their development speed (most code they write is far more verbose than necessary) or their lack of tests, they just say "Hey, it works, right? What's the problem?"

These developers also write surprisingly bug free code. Unfortunately they are also the only ones who can interpret it when an enhancement is needed (3000 line functions are not abnormal), so it's good job security in a way.

For example, the other day one I was doing a code review and the developer had a 100+ line function to filter a List. Basically it did this (slightly more complex, but it could have still easily been done in LINQ expressions):

 decimal avgAmount = locations
      .Where(d => d.Type == LocationType.Internal || d.Type == LocationType.Hospital)
      .Average(y => y.BillAmount);

His method had a bunch of for loops, accumulators, etc. that basically did the same thing. I thought this was a great opportunity to show him some basic .NET 3+ stuff, but his response was just "So? That makes no sense, why would I want to do it that way? Mine works, right?" When I asked him if he tested it, he said "sure, I ran it in our dev environment and it worked ... why would I write even more code to verify that something I know runs works?"

These two guys have been there for 15 years, and know the systems inside and out. Upper management would never let them go, particularly because they know that these guys' apps never break. Any suggestions for getting these guys to follow a more modern approach, or is it hopeless?

share|improve this question
106  
I'd like to see how you respond to that in 15+ years. :p – Esteban Araya Jan 22 '10 at 3:14
51  
Become as good as they are, and management will be more willing to listen to you. – SLaks Jan 22 '10 at 3:14
44  
I get so sick of inexperienced developers thinking Linq is the answer to the worlds problems. Showing them Linq is a stupidly huge jump for these developers to grasp. Why not just show them a nice 5 line example of basic C# where you loop over a generic list to calculate the average? It's much more familiar to them and is far more maintainable then a 100 line function. See it as a step towards Linq if that is really so important to you. People improve much more readily in small but regular steps, not in enormous leaps. – Ashley Henderson Jan 22 '10 at 9:17
14  
I find it quite scary how many answers here don't acknowledge the importance of maintainability. :( – Joel in Gö Jan 22 '10 at 11:49
41  
If the only person capable of maintaining code is the person who wrote it, it's not good code. – Mark Simpson Jan 23 '10 at 2:47
show 18 more comments

closed as off topic by leppie, Sam Saffron Nov 11 '11 at 0:55

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

54 Answers

1 2
up vote 138 down vote accepted

This has little to do with being "senior" and much more to do with attitude and motivation.

I'm 64, I've been at it continuously and professionally since I was 18. I can still outdo most folks with less experience. The keys are never stop learning, the joy of productivity by using great tools and techniques, and the experience to know what a blind alley looks like before entering. Some new stuff is shit and I can usually tell. "Getting it" requires active learning. Oh, and you can't fall victim to the "I don't have time to learn how to save time" syndrome!

Your cement-head co-workers stopped being professionals when they stopped wanting to be better at what they do. They're frozen in time and should be eased out of critical-path positions.

share|improve this answer
18  
Want to join my team? ;^) – Andrew Jan 22 '10 at 5:06
2  
Finally someone that makes a strong point. It's not a question of how good you are or how much you know, even if that is a good point. It is more of a "are they right to team" question. Even though they do make the code work, but stil is a crap non stoppable code. The just "stable and 'secure'", are not parameters for a good code. Perhaps in another time it was. Bob knows a thing or two when he says: "Your cement-head co-workers stopped being professionals when they stopped wanting to be better at what they do". They are bad examples, and they might be influencing other developers. Be careful. – NoProblemBabe Jan 22 '10 at 11:10
9  
I like working with people smarter than me, it keeps me on my toes . . . good thing I don't mind being out numbered :) – Binary Worrier Jan 22 '10 at 13:18
3  
Technically - this is not an answer. On the other hand - short "You can't" would be misunderstood and down voted furiously. – Arnis L. Jan 22 '10 at 15:21
3  
I agree with most of the response, but sometimes people can be rehabilitated. Most likely those guys have stagnated because they have been there so long. Could you share some of the ways that you keep motivated that the OP could use to maybe encourage these guys? – Andrew Mellinger Jan 22 '10 at 19:20
show 6 more comments

Sounds to me like an immovable force. If their code works, and management loves them, maybe the best thing to do is to turn a blind-eye, pray that you don't inherit one of their projects, and focus on making your code leaner, faster, and better.

share|improve this answer
31  
Lead by example. I like it. – jeffamaphone Jan 22 '10 at 3:14
3  
+1 I agree. I think that by recognizing the issue @Andrew is already ahead of the game! – Billy Coover Jan 22 '10 at 3:16
1  
I'd have to agree. As others look at your code they'll notice that it's better (if it's truly better). – Esteban Araya Jan 22 '10 at 3:16
9  
Hm, agree. The whole point of fancy new .NET stuff is that it gets you the same result faster, easier and more maintainable. So... prove it. – littlegreen Jan 22 '10 at 3:23
2  
+1 Trying to teach a pig to whistle is a waste of time and it annoys the pig. How much code could they write in the time it takes them to learn unit testing, OOP and other modern practices? How much code could you write in the time it takes to convince them? – Duncan Jan 22 '10 at 4:36
show 3 more comments
How do you teach a senior developer how to be more efficient?

Wait a minute, from what you yourself said it seems that their code never breaks, that they produce a fraction of the number of critical bugs as the other developers, and that management values those accomplishments.

Shouldn't you be at least as interested in how you can learn from a senior developer as you are in how you can teach one?

share|improve this answer
8  
Good thought ... I try to do both. These guys claim to have 2 secrets to their success: write almost everything in a single fn (hence the source of our many 3000+ LOC functions), and know the business REALLY well. I contend that the 2nd point is far more valuable, and have followed that myself. As a a result I can cover twice as much business functionality with the same level of quality as these guys, while using unit tests and still having time to manage the team. They have the skills to do the same (both write far more LOC/unit of time, but it's very inefficient), but lack the interest. – Andrew Jan 22 '10 at 5:11
9  
Andrew, in all your comments you're rather taking the position you're right. Time to learn from them. – Will Jan 22 '10 at 7:03
1  
I take it this company doesn't add new features that often. Large code is impossible to change. Unit tests are a trick to help with code that changes a lot. It would seem useless to these seniors if the code doesn't change once written. – reccles Jan 22 '10 at 14:59
5  
While code stability is a good metric to judge the performance of a developer by, so is maintainability of code. 3000+ LOC functions/methods are inherently fragile, and therefore unmaintainable, even by the original author -- given sufficient time between writing and maintenance. Verbosity, on the other hand is a double edged sword. On one it can ensure maintainability, on the other it can obscure it. Finding the right balance is tough. – Jason D Jan 23 '10 at 14:13
show 2 more comments

Personally, I think this is a living example of Joel Spolsky's Big Macs vs. The Naked Chef essay from so many years ago.

Rigid processes are useful for floundering developers who write a lot of buggy code and need a constant guiding hand. When you have development leads who can run circles around the vast majority of programmers in the wild, the worst possible thing you can do is stifle their talents by forcing them into a process they hate or that goes against their way of thinking/working.

Don't get me wrong, I'd personally go insane without lambda functions; but great developers are more important than whatever methodology is currently in season. Which is better: a zillion unit tests that all pass, or a single cohesive application that actually does what it is supposed to?

share|improve this answer
show 2 more comments

These guys take pride that "their code doesn't break", that's good, that's not a problem. You need to point out to them how easy it is for someone else to break their code, it might have been some other dev making the change, but it's still their code that's broken.

The next time you get the opportunity, do this.

Get them to make a small change to an existing app that has unit tests, where you know this change will break some tests. e.g. Change the signature of a method AND it's internals.

They need to fix the tests to get the app to build, and I’m assuming the tests need to pass or the build will fail then also (if not this is a problem with your Build Process that you need to fix).

Review their code, and especially the work on the tests, did they remove any "inconvenient" test coverage, are there any big holes in the test coverage for the new functionality etc.

If so then this is exactly what you want. Sit them down and explain to them that the tests aren't for them (because hey, you know their code is good), they're for other developers that may change their code, or code that has a knock on effect to their code.

The tests verify that someone else hasn't broken their code.

share|improve this answer
1  
+1 : Nice idea, frequently it's unit tests on other bits of code that people have written that spot a minor glitch in things I've done. Unit tests are just as good when you creating code as maintaining it later. – Ian Jan 22 '10 at 9:50
1  
"The tests aren't for them" might not really be true, but it might be a good way to get them to hear the message. But if they don't want to learn, there's only so much you can do. – Emily Jan 22 '10 at 21:12

It sounds like these guys write code that is more reliable than yours, without even writing unit tests. Management also seems to emphasize the reliability of code developers produce over efficiency. If these guys are as slow as you say, you should be running circles around them in terms of development time, and have more than enough testing time to make sure your code works.

If your code is less reliable than theirs, you'll need to slow down, because in your environment, reliability is king. Maybe these guys stick conservatively to language features they have absolutely mastered because they know they can write bug-free code that way, and they have learned over time that dabbling in the latest and greatest techniques means a major bug more than once a year.

Eventually your experience and suite of unit tests will make you even more reliable than they are, and you'll have room to talk. You'll develop a reputation with your managers for being both fast and reliable. You can probably negotiate for nice raises based on that fact, but once again, don't expect management to crack down on employees they see as reliable contributors. Unless you can credibly argue that these guys are being grossly inefficient through laziness, you have no leverage over them.

But then, let's back up a second. How long have you been in this position? Is there a culture of coding excellence at your company? There is the possibility that these guys just want to put in their time and collect their check. That isn't what you or I would want, but there isn't necessarily anything really wrong with that, and there might not be anything anyone can do about it. If that isn't the kind of person you want to work with, and management doesn't care, you might have to change jobs.

share|improve this answer
9  
No, it's about the same reliability as mine, but far more reliable than the rest of the team. The only difference is that I code about the same amount as both of them combined, and still have time to manage the small team. I guess that's why I get paid a lot more (>2X more to be exact), but these guys don't really care, even when I tell them they could get an increase in salary if they start changing their development approach. – Andrew Jan 22 '10 at 5:03
2  
Yeah, I hear you. If the prospect of doubling their salary doesn't motivate them to learn, and they aren't inclined to do it for its own sake, you're low on carrots. And it sounds like you can't use sticks because upper management wouldn't have your back. You have exhausted my storehouse of advice! – PeterAllenWebb Jan 22 '10 at 16:22
show 1 more comment

i am, frankly, amazed. On the one hand, writing a 3000-line function with no bugs is extraordinary - and hard to believe. Have you verified this claim with your own unit tests?

On the other hand, if you showed me how to replace a 100+line function (though I would never write a 100+line function!) with 3 lines of LINQ I would buy you lunch, and a book on LINQ.

If I understand the situation correctly, these gentlemen need retraining. Please do not write C in C#! [Yes, I know, "real programmers can write FORTRAN in any language", but professionals don't]

If you're their boss, but upper management doesn't support staff improvements, you should bail, and bail fast.

share|improve this answer
1  
@[Andrew]: if you're serious about demonstrating the value of the techniques you want to teach these fellows, I suggest that you write unit tests for one of their remarkable functions (like the billing process) and note any bugs that if finds, then refactor the code to take advantage of C# language facilities and re-run the tests. If you find no bugs and can't refactor the code, then leave these savants alone. Otherwise, use it to demonstrate that you do have something to teach them. I'd be surprised if 12000 lines of C-style code was actually necessary in C#! – Steven A. Lowe Jan 22 '10 at 14:10
show 1 more comment

Particularly because they know that these guys' apps never break

End of story.

share|improve this answer
41  
Not end of story. You've got to consider what will happen when someone besides them tries to add functionality in the future, and they've got to hack apart a 3000-line method. – Kaleb Brasee Jan 22 '10 at 3:44
10  
Indeed. They should follow courses until they can write maintainable code that never breaks. Management might like them, but when push comes to shove, management likes money more. – littlegreen Jan 22 '10 at 3:56
6  
You are going to get downvoted by everyone who worked with somebody who had "working" code that couldn't be modified. – wisty Jan 22 '10 at 4:33
7  
How is that, in any conceivable way “end of story”? When was “never breaks” ever the only requirement? And who redefined “never” here, anyway? – Konrad Rudolph Jan 22 '10 at 12:31
4  
-1: Yeah sorry, not end of story. Maintenance includes adding new features not just bug fixing. So unless those two guys want to implement all the new features on all the projects they wrote you're going to need a codebase maintainable by mere mortals. – Cameron MacFarland Jan 22 '10 at 13:37
show 3 more comments

Seems to me you don't need to be worrying about teaching the "senior" developers at all.

Let's just say they both suddenly decide LINQ and functions shorter than 100 lines are the best thing since sliced bread. Great, now you and your team are now on the same wavelength.

You now go to management and say:

"You know that 3000+ line business critical function that takes us ages to make changes to? Well we as the development team would like to re-write it using modern technologies and better design practices. What do you think?"

Management reply:

"How long will it take and what tangible costs will it save us?"

You:

"Ahhh, well before we can give an estimate we will need to do a thorough analysis of the existing code and build unit tests over it. Once this is done then we will then know how to best make changes without breaking existing business rules."

Management:

"Oh, sounds like a bit of up-front work. But it currently runs pretty smoothly and it has caused us very few problems over the years. I'm not quite seeing where the real benefits are?"

You:

"It will allow developers to make enhancements and do bug fixes much more quickly. Also, when developers leave the company the people they handover to will be able to understand the code much more quickly."

Managment:

"OK, but those are benefits for developers only. What benefits will it give our customers?"

You:

"As I said, it will allow us to do bug fixes and enhancements more quickly."

Management, now with a bored expression on their face:

"OK, thanks for your feedback, well take this off-line and get back to you."

6 months later:

. . . . .

share|improve this answer
show 1 more comment

First off, this is a function of temperment, not age. I've worked with developers 20 years my junior who resent having to learn anything new. To this day, I'm stuck writing code that interoperates with Btrieve because the owner of the application played around with SQL Server for a while in 1997 and decided there was nothing there he needed, and he wasn't even 40 yet at the time. (He really never got over the trauma of porting the app from COBOL to VB3, which it runs under to this very day.)

A lot of people feel that the bargain they've made with their employer doesn't obligate them to improve, and that their actual goals in life aren't tied up with their profession. They aren't necessarily wrong, mind you. There are employers aplenty whose performance on their end of the bargain deserves no more than that.

On the other hand, even people counting the days to retirement embrace change if the change will stop them from hurting. These guys will learn LINQ and design patterns and anything else thrown their way if it makes their job easier. Right now, they don't. If you want to change their practice, you have to change the structure of incentives. It has to become expensive to not do things more efficiently.

Not monetarily expensive, mind you. But expensive in that it deprives them of things they like and piles on things they don't. For instance, programmers hate meetings. Is there a way for you to contrive things so that the longer a programmer's methods are, the more time he has to spend in meetings?

Obviously a workable solution won't be as transparently manipulative as that. But if you can implement procedures that are annoying for people who don't use LINQ and shruggable for people who do, people will beg you to teach them LINQ.

I got 8 developers working under me to wholeheartedly embrace XSLT by doing this, and XSLT is horrible. (Also, horribly, I love it.) So it's got to be possible to do this with LINQ.

share|improve this answer
3  
VB3! . . . OH MY GOD! There is no emoticon for how this makes me feel! – Binary Worrier Jan 22 '10 at 8:25

Depending on their character, it can be very hard to teach a senior developer anything new. IME, it requires foremost a lot of patience, and holy communications skills. Hanging out with them in bars might also be a good idea.

Edit: I wrote it jokingly, but I'm actually quite serious. In one way or another, you need to open up a dialogue with them. They will be reluctant, but you are their manager, and you not only have the right but the obligation to ensure their productivity since you are responsible for anything they produce. In this dialogue, it is foremost important that you listen to their arguments for doing things their way. Otherwise, they will not even bother listening to you. After that, bring up your arguments, and listen to their defence. It will be tedious, but if your arguments are sound, and your tactics are good, you should be able to make your point to them in time.

share|improve this answer
2  
@Chris O: it can be very hard.. luckily most seniors aren't that way. I happened to be stuck though with a very narrow-minded senior in my previous job - and the only thing that helped with him was very, very careful communication. Many seniors have seen so many "young dogs" come and go, and received so many suggestions, that they've developed a filter for these things. It's a challenge to still make your point to them. – littlegreen Jan 22 '10 at 3:30
show 2 more comments

Get these guys to do your code review:

  1. you can learn from their experience
  2. you expose them to the new ways, and make them familiar with them
  3. they will help you ensure the quality of your code

All win, even if it doesn't change their ways.

share|improve this answer

Procedural programming is not wrong. Maybe you're better off insisting they don't create massive functions, than try and force them into OO and modern language features they might simply be too stuck-in-their-ways to learn effectively.

Would you prefer they write good procedural code, or bad OO code?

share|improve this answer
1  
I'm not sure why you got downvoted ... most of the stablest software in the world is procedural. – Andrew Jan 22 '10 at 19:30
show 1 more comment

Since they don't particularly care about using LINQ and other new technologies that focus on making code cleaner and more succinct have them write extensive comments for their functions. Tell them you need the comments in a way that an new guy in the company would understand the function with just one read.

That way the code will be more easily maintained and on the off-chance they realize that they spend more time writing comments than code they will start coding better just to avoid such a hassle.

Since you are their superior you will have no problem enforcing the above rule, even if they object and take it up to management.

share|improve this answer

It's certainly going to be difficult. I only had one of those nuts to crack and it took me 3 years to do it and we're still hammering the finer points of OOP, n-tier client server/etc. He's starting to drink the kool-aid, but it has taken a lot of brow beating and a couple of disasters for it to occur. It also helped that he was outnumbered. He was 1 senior lead among 6 that was still using older techniques.

I'd say keep on keepin' on. Persevere. Try to get one of them onto a project that you're running. Set the standards and refuse code that doesn't meet the standard. For my guy, I flat out refuse to assist with old methods. I'll explain how I'd do something or look at a problem, and the moment an older technique comes out I say "Awesome, have a blast working that mess out."

Good luck with it.

share|improve this answer

Set them to fix each other's bugs, and to make enhancements to each others' projects. Each will see that the other produces unmaintainable code, and may even take the hint.

share|improve this answer
show 1 more comment

If they are good at what they do then perhaps we could learn from them instead of trying to teach them. I am one of these grumpy old men myself and although comfortable with OOP, I still use assembler to write Win32 applications and hardly need to use a debugger.

These days, the answer to "what did you write this application in?" is "the debugger!"

Trying to reduce the development time is false economy and most of the current methodologies, patterns, OOP, this, that and the other are developed to satisfy the accountants not the end-user. We usually end up with systems that are expensive to maintain and what we saved on the swing we spend on the roundabout.

If I ever end up in Intensive Care Unit connected to a computer which keeps me alive, I prefer one of these 3000 line functions written by your colleagues over the latest lardeeda instantiated over-ridden multiple-inherited encapsulated marshaled watchamajingies that has the same 3000 lines hidden under multiple layers of abstraction out of sight and out of mind.

You may say I have no class (duh!). But I already know that!

share|improve this answer
2  
Do you really still use assembler to write Win32 apps? – Permaquid Jan 22 '10 at 14:31
1  
Yes. And I am not alone. There is a very active group that do this. Here is an example movsd.com It is easier than everyone thinks. – Square Rig Master Jan 23 '10 at 2:05
1  
win32 assembly.. you have no class my friend, but you have style! :) – gbjbaanb Sep 2 '10 at 22:06

Joel Spolsky wrote a great article on a very similar topic: The Duct Tape Programmer

My take: it's not really broken so why try and fix it?

Think about your programmers as a black box resource. Input goes in and output goes out and it always seems to be correct. Now the contents of that black box may be a Rube Goldberg invention but why worry yourself over that? Just use them as a valuable resource. Your attempts at trying to make them more efficient will more likely than not result in lower productivity. Heck, i would even support their hackery.

Final thought: i suggest that you look think about you point of view as a religious argument similar to Java vs. C#. Which one's better? Does it matter to the end user? As far as modern programming processes go, yes, there's a school of thought solidifying out there that preaches (correctly IMO) TDD, OOP, MVP, ETC. but in the end we just need to get the work done. And no end user is going to ever wonder what's under the hood as long as the hour glass doesn't turn too long.

share|improve this answer
show 4 more comments

There are two kinds of people in this regard: there is the "team guy", and there is the "solitaire professional". It seems that the two guys you have mentioned are of the later, and no matter how good they are in writing code, they are putting your team into danger. Your team will inevitably find itself in situations, in which it will have to take desperate measures to make it. Just recall the time when you had to modify the code of these guys in their absence, and you will get an idea of this.

If you cannot change these guys, your only solution remains to say good bye to them. They are good people, as solitaire professionals, but they would cause your team to fail.

If management can’t see this, their company will not survive on a long term, or will remain small, and they will never be as successful, as they could become. If this is the case, then this might be a good time for you, to start thinking about a new job, as you deserve a better team to work in, which is not that limited.

share|improve this answer

Wow what a kewl question...

Well this is my 2cents:

I would have developers that are on par with my way of thinking and have them shadow the senior citizen developers until they understood all of their work. Then I'd simply fire the seniors for being outdated and have the shadows pick up the slack. This happens alot in companies where management wants to get rid of someone that they can't get rid off; the give them people to mentor: i.e. train to do their job.

You can justify to management that you need to train other people to do their job because it is posing a HUGE risk to the code base if those individuals suddenly die. You can justify that if they depart this earth there will be no one who can maintain their code. It's a good business practice to ensure that your organization doesn't have people who are irreplaceable; even at the CEO level. Irreplaceable people create points of failure in the organization that could cause the collapse of the company. You wouldn't build a computer system today that relied on 1 single machine that had 1 special thing about that that allowed the entire system to operate fully. You would have at least 2 or more such parts in the event that the first part fails.

If management still doesn't budge then you could always throw in the old "By doing the code this way anyone and their dog can maintain it. In that regard we can save money by hiring cheap labor" Saves money = It's got my vote :)

Also what happens if said individuals suddenly realize their importance and begin making demands on salary and benefits? Time to Panic?

Or..

You could remind them that as a race we've only been able to get this far through progress, which is a process of change over time. Change being the only constant.

share|improve this answer

I had a similar experience with senior developers who would only write low-level C code, although we were supposedly using C++. I even found many cases where char buffer could be overflowed with strcpy, it just never happened to break anything. They didn't write tests for anything and heck, the version control they used was memory stick. But still, their code always works and does the stuff it is needed to do. So it doesn't matter!

... until YOU need to maintain their code. Not slightest idea what was changed last and why, and if you aren't experienced with C style coding and 3000 line functions, you will almost certainly break something trying to make a small change, or at least spend days figuring it out. That's why developers should keep in mind the others who might be reading the code someday.

But to your question, making people to do it in your way is usually extremely difficult. Attacking against their style will definitely not work. Judging from their harsh answer to your example, they probably don't like you in the first place. At least, they don't want to take advice from you. Become friends with them, make them like you and be more productive than them. Their attitudes might change.

Compare friendly "Hey, check this out, I found out that you can do this same stuff this easily with this new LINQ thing" vs. formal "Your code works but it's wrong! You should do it like this." coming from someone way younger than them.

Well, if it's really hopeless and you can't get over with it, quit. That's what I did (having also numerous other reasons).

share|improve this answer
show 1 more comment

You mentioned in a comment that you are their senior, but are you their boss?

Start writing tests for code assignments they've been given and let them know you will not put into production until it passes. You may catch one of those rare bugs. This may also shorten your code review; they might like that notion. Next, have them write a test, do a code review on their test which should not take as long. I can't imagine they enjoy code reviews with you.

Show management some numbers. How long you take compared to how long they take to write the same code (I mean code that accomplishes the same thing.). The effectivness of code test in avoiding bugs. Are there performance issues in their code compared to yours? Can you get user feedback indicating how some sections of the application take so much longer than others. Maybe you can come up with some specs as well.

Find one simple coding technique that you know could replace a lot of their code. Make them implement it in the next code review.

If upper management doesn't mind spending more money on projects because these guys take so long, you need to put in for more vacation because profit is not important to this company.

share|improve this answer

If at all possible, you should try to add tests to their code. If not unit tests, at least integration tests. It's all well and good that their code works now, but what happens in the future when they're not around, and someone has to add functionality? Even a few tests have a decent chance of letting future maintainers know if they've broken something.

share|improve this answer

I have had exactly the opposite problem.

I had a bunch of pure Java OO developers who refused to use SQL for manipulating sets in our tables and insisted on populating collections of line item objects from the database, filter them according to some simple criteria and agregate a single quantity from the collection.

They were reading more rows than they needed from the database, they were reading in columns they never used, the whole thing would have blown up when they hit production volumes -- but hey reuse is kool and SQL is so yesterday.

I quietly replaced their mess of six or seven interdependent classes with a 30 line "JDBC" program which fired off the appropriate SQL before the system got to UAT.

share|improve this answer
show 1 more comment

[No answer, just musings] Maybe they might get interested in PLINQ, or anything out of PFX-stuff from .NET4. You can dangle some really cool tech and they might jump at it. These guys might like automatic parallelism.

They are smart folks, but they should understand that the largest contributing factor to bug count is line count, in any language. I wouldn't believe that their code is "perfect", the bugs just haven't been discovered yet, you know they're in there.

The largest problems with the pure procedural approach is that is doesn't solve all problems and it doesn't interface with the rest of the system very well.

Nice Lambda by the way.

Edit: Actually, some concrete advice for you: get into the habit of discussing hardware with them, i.e. cache coherency, SMP, architecture or whatever and how it relates to "new" programming tech. If nothing else, you'll have exciting conversations, but maybe they'll be more willing to listen to your code suggestions.

share|improve this answer
2  
Between the two of them they have contributed over 1,000,000 lines of code that are still in production, ranging from old 16bit DOS C to COBOL to .NET. Given the scope of our organization, it's uncanny how little blows up. We're talking like 5 critical bugs in the 9 years that I've been there, vs. ~100 for the other 6 members of the team. One thing they've taught me is that it's much harder to make mistakes if you understand the business, rather than just understanding how to develop/design. On a different note, you can probably tell I've drunk the kool-aid on new .NET features, I love it. – Andrew Jan 22 '10 at 3:27
4  
@Andrew "contributed over 1,000,000 lines of code"... nice. With that track record "why mess with success?", these folks are extremely good at what they do, so exploit this great talent. – Chris O Jan 22 '10 at 4:02
1  
@Andrew - Be interesting to put them onto something that really lends itself to the OO and see if they can deal with that... As people have said they seem to be doing a good job, the only way you'll get them to accept change is if they decide they need to do it. – Ian Jan 22 '10 at 9:30
show 1 more comment

Go fix something that is broken.

These guys are not a problem. Focus on making their job easier, but let them run.

share|improve this answer
show 1 more comment

Perhaps it would be useful to explain that, while their code is rock solid, it's impossible to maintain. They seem to pride themselves on being really good programmers, so explain to them that they're leaving the task half finished. Unit testing and documentation are programmer responsibilities. At least they should be.

Ask them some questions. Something like this: 'You wouldn't hire a carpenter that put up the frame of a house, and then abandoned you to work out if the frame was good enough to pass the relevant building codes, right? Why should I accept your work when you're leaving me to go find out if it's good enough? It's part of the job, and only doing half of it isn't good enough. Even if the half you've done is superb.'

share|improve this answer

The phrase "you cant teach an old dog new tricks" comes to mind - but I don't mean that in a bad way. If someone is very experienced then often its difficult for them to unlearn old habbits, but a good developer with 10 years experience who might write slightly versbose cose is still going to be vastly superior to a frash developer who does know how to use lambda expressions but only has a year or so experience.

Definitely don't take it upon yourself to try and teach them to use the new "superior" syntax - if you force it down their throats then its likely to be met with resistance. If on the other hand you just make them aware that it exists then you will probably find they adopt it themselves if and when they appreciate how it will benefit them.

share|improve this answer

It sounds like the problem is not that these developers are inefficient. I mean, their code never break, and well these 100 lines of code that you could write with a couple of lines using LINQ might not take that much longer to code. I rarely find that my typing speed is the limiting factor.

I do think that you have a case here, though: Their code is unmaintainable. So my suggestion is to switch strategy and focus on this point when you try to convince your superiors.

share|improve this answer

A third train of thought on this one...

I don't believe their code is unmaintainable or unreadable. Sure it makes it harder to get to grips with but remember a decent developer given the sole task of "understand this code" will be able to do it. Maybe it'll take days rather than hours, but in the grand scheme of things that's not the end of the world. Besides, having lots of classes can take time to get your head around too. And if you are actually having to make changes at a few hours' notice, that's probably a bigger problem in your system.

Developers are dumped on legacy code-bases with loads of uncommented huge functions and nobody to ask all the time. It's a specific skill that not all developers have, but many do. Lock a skilled developer in a room with the code and he will figure it out.

After all, a hacker can figure out your code and modify it from the raw .exe. You're spoilt to have the code at all!

share|improve this answer
1 2

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