vote up 36 vote down star
24

How to utilize programmers effectively when they don’t have Enough Work?

flag
show 1 more comment

49 Answers

prev 1 2
vote up 2 vote down

Library code: I've always maintained a list things I wanted coding in a generic way and added to a set of library classes.

  • If you are a service based company working in a specific area, e.g. database with browser front end or C# desktop applications for management reporting in banks (or whatever), then you are building up useful collateral by doing this.

  • If you are product based company then only bad planning and bad management would out you in this position. In this circumstance it seem only fair to ask the developer what would benefit them most at this point: learning python or writing a 5000 word paper on good planning practices in product development.

link|flag
vote up 5 vote down

Having your coders work on your code would suggest there still is work, it's just work that was initially skipped. If the code, documentation etc. are in good enough shape for you, extra work just tends to be tedious for the programmers so I wouldn't tell them to keep on improving it. And besides, if they do, you also need to utilize your testers, and if they do have work, well, suddenly your programmers are costing money possibly for very little return.

A better thing would be to have them work on something else, there's bound to be projects that never got started or finished due to lack of resources or have them learn something new. Ask what (work-related) they would be interested in, and see if you can come up with some useful project and if these interests could benefit the company. If not, you could suggest something that do. For instance, there could be new technologies that need evaluation. What better than have a few of your programmers try it out and write a report? Then you'd know the pros and cons and the company could decide if the new technology is worth pursuing.

Educating your personnel is always a good idea if done correctly. Scripting languages, for instance, are usually not very well known but some skill in them can make your programmers a lot more productive.

Do it right and the company is in a much better shape when work is available again and your programmers will be a lot more motivated.

link|flag
vote up 16 vote down

I can think of a number of things (some already mentioned but included for completeness)

Work on V. Next Try and get a headstart on the next release by working on some features from that version.

Adding unit tests You can always have better tests or additional coverage.

Improve the existing code Look at ways you can make the existing code simpler, fixing bugs, making the code more robust through refactoring, better patterns, comments, reducing the cyclomatic complexity

Improve the supportability work on installers, support docs, help files, knowledge bases anything that can save time and money later.

R&D Are you on the latest version of your frameworks and supporting platform? If not now might be the time to investigate and upgrade.

link|flag
vote up 6 vote down

Just tell them!
tell them that there is no enough work for them
and listen to their answers for this question instead of inventing tasks to keep them busy

link|flag
show 1 more comment
vote up 24 vote down

Have them paint your house.

link|flag
2  
heh heh... and I thought programmers had a sense of humor. – SpliFF May 25 at 9:00
5  
2 down-votes. Bring it on. I've made 1,500 rep in 5 days. Think I care? – SpliFF May 25 at 9:09
2  
+1 for some refreshing sarcasm :-) – Tor Haugen May 25 at 9:53
13  
Fire the programmers and hire painters instead. They're cheaper and they paint better. – Daniel Daranas May 25 at 10:18
10  
Yeah but your marriage will be safer. Programmers don't walk around your house with their shirts off helping themselves to the scotch and whistling at your girl... and painters have better unions. – SpliFF May 25 at 10:32
show 4 more comments
vote up 2 vote down

Send them to StackOverflow. There's always something they can pick up here that applies to what they have been working on, and to what they will be working on in the future.

All types of internal education is good for both the individual and for the company.

link|flag
vote up 15 vote down

Spend some time on build/deployment tools. You should be aiming to have a One Step Build, or in the case of web-apps, One Step Deployment.

link|flag
show 1 more comment
vote up 1 vote down

write internal tools. there's always some process that should be automated only no one has had the time.

link|flag
vote up 2 vote down

I think that there is never a break for programmers, there alway remains a consequent need to update the skill sets and dive into more programming challenges to make out some results. its more like heuristics, in that when a person comes by a problem, maybe in the "spare time", he would have done something similar so he can go about programming without a second thought. So i think studying more code, practising code, improving software programming concepts and all the same enjoying it, because if a person doesnt enjoy, he cant learn much. so learn at ur own pace but not completely stop. because as vibrant as water can be if it remain stagnant, it will smell and loose its beauty. similarly is a programmer, there can be extra time if we think of our jobs as just jobs, but if we think of them as a job and a hobby, well all the better.

link|flag
vote up 4 vote down

People mentioned refactoring which I completely agree with, in a different way I would say: Have them delete some code.

I always say, the best part of being a programmer is deleting crappy old code. :)

link|flag
vote up 3 vote down

(Disclaimer: I'm speaking as a developer turned QA, so this may be from a slightly different point of view)

That really depends on your company situation and management mentality. Speaking from my own experience:

Don't tell your bosses otherwise you'll be facing an immediate head-count reduction!

Don't extend your unit testing phase to ridiculous proprtions. You're probably under pressure to get that bug count down or share of the bugs found by you up. but you're stealing work from the QA team if you do it that way, and they'll forever hate you for it. Just remember that a good QA team can watch your back... or stab you in it.

Do plan for and spend more time on documentation. Programmers do not exist in a vacuum, and other people rely on their design and functional specs to do their job properly. We all hate doing documentation, but this is often criminally overlooked and makes QA a nightmare.

Do spend more time on training! It'll pay back in quality of code and reduced stress for the team leads.

link|flag
2  
I'm serious about the head-count reduction. QA hate to see that too, because it means next release a load of junior programmers will be brought on board with little or no training before being thrown in at the deep end, and we'll all be in defect hell! (the eighth circle, along with the other fraudsters... for hiding defects) – Xiaofu May 25 at 7:54
vote up 1 vote down

Education in several areas, over time I have been reading up on developmentmethods, new technologies, new products and so on. It's expected by my company that I keep getting wiser to help make everything run more efficiently and on the ball at all time.

link|flag
vote up 4 vote down

Research completely different technology stacks. Learn from them.

I've worked in Window shops where I installed Cygwin (a Linux emulator) on my laptop. Introduced my colleagues to the notion of what you can do on a commmand-line.

I currently work in a (mostly) Linux shop, where on my Windows laptop I have installed SQL Server and Visual Studio.

link|flag
vote up 2 vote down

Refactoring, learning new technologies, testing (even performance testing).

link|flag
vote up 13 vote down

They always can improve performance. Somewhere in that app, there is a slow, fat rat waiting to get whacked with a good piece of opti-mice-ation.

link|flag
47  
But be sure to use a pro-furry-ler. – Earwicker May 25 at 7:48
3  
If only I could vote up comments... – Jeff Meatball Yang May 25 at 8:08
vote up 84 vote down

Get them to pay back some Technical Debt.

You could have them look to first get any legacy code covered by a decent set of unit tests. Then you can get into the game of refactoring.

In addition to that, once you've got that safety blanket of the unit tests, you should then be able to look at performance tuning too. Recommend you look at either using the profiler that's build into Visual Studio if you have the right version or getting your hands on something like dotTrace or ANTS Profiler.

link|flag
3  
-1 that sounds like it should just be part of the work in the first place! – Ed Woodcock May 25 at 12:17
20  
But under the pressure of deadlines, unfortunately that's not always the case! – Campbell May 25 at 13:12
4  
I would also look at scalability and load testing. I also agree with Campbell, in theory these things are part of the work, in practice they are not. – MikeJ May 25 at 15:35
4  
+1 You said it all ! Ed Woodcock said that this should have been done in the first place and, to me, he is right. Well, in theory. In practice, these things are NEVER addressed in the first place in a lot of places (most of them). I have 20 years of software consulting behind me and I can tell you that corrects but inefficients and unmaintainables softwares are the common practice. – Sylvain May 25 at 19:28
show 2 more comments
vote up 2 vote down

There is always room for improvement in the code. Just be sure not to break anything.

link|flag
vote up 20 vote down

testing and refactoring?

link|flag
show 1 more comment
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.