How to utilize programmers effectively when they don’t have Enough Work?
|
24
|
|
|
|
|
|
Library code: I've always maintained a list things I wanted coding in a generic way and added to a set of library classes.
|
|||
|
|
|
|
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. |
|||
|
|
|
|
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. |
|||
|
|
|
|
Just tell them! |
|||
|
|
Have them paint your house. |
||||||||||||||||||||
|
|
|
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. |
|||
|
|
|
|
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. |
|||
|
|
write internal tools. there's always some process that should be automated only no one has had the time. |
|||
|
|
|
|
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. |
|||
|
|
|
|
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. :) |
|||
|
|
|
|
(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. |
||||
|
|
|
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. |
|||
|
|
|
|
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. |
|||
|
|
|
|
Refactoring, learning new technologies, testing (even performance testing). |
|||
|
|
|
|
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. |
||||||||
|
|
|
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. |
||||||||||||||||
|
|
|
There is always room for improvement in the code. Just be sure not to break anything. |
|||
|
|
|
|
testing and refactoring? |
|||
