vote up 0 vote down star

Possible Duplicates:
How to manage stressful situations?
How do you vent stress as a programmer?

So you're on schedule for a sweet new release on time a few days away.

Boss calls, there is a feature/spec change, sweet no biggie right? Wrong. 6 months of work in dependency updating and changing gone to waste.

Sure there are ways to reduce the chance of this (see modular and independent designs). But sometimes these things happen, especially when dealing with outdated source trees and designs that were seem to be drunkingly conceived sometime during the .com boom. And all you can do is 'deal'.

So this isn't all subjective, I am wondering what kinds of programming techniques others have used to stop this from happening so bad again, and, if you can think of any, what kind of systems/procedures/steps do you take to clean up and refactor a disaster like this in an efficient and clean/complete way (without introducing bugs, generally bad looking code or breaking any functionality).

As now I have to spend about the next week or so going through removing certain parts of the new system and making sure it all still works under the new spec/design.

Side note maybe subjective: what about stress relief that works well for coders? Other than the 3 ciggies I just sucked down.

flag

Duplicate?: stackoverflow.com/questions/646533/… – lothar May 28 at 22:44
Hardly......... – jim May 28 at 23:19
How about this one: stackoverflow.com/questions/92159/… – gnovice May 29 at 3:07
Damn I found another one too.. stackoverflow.com/questions/937457 This was not a duplicate. Removing the 'stress' word would have made it completely unrelated. I am dumbfounded. – jim Jun 2 at 0:38

closed as exact duplicate by lothar, gnovice, marc_s, Shog9, John Saunders May 31 at 0:56

5 Answers

vote up 3 vote down

Suck it up and move-on mostly. This is the life of a software developer.

link|flag
vote up 0 vote down

I blogged about SOLID principles a while ago. Using them in conjunction with some good design patterns should help you next time. Always write your code as if it is going to be thrown out of the window and write it such that it allows deep refactoring.

I been practicing domain driven design for a while now and it has many advantages like coming up with ubiquitous language, some really nice design patterns, etc. But the overall goal is it will help you understand your domain better and keep yourself in sync with the domain users at all times.

I am a little curious to know that requirement that can throw off a 6 month effort. Is it that your boss wants you to move from a .net to a LAMP stack?...with all kidding aside, I understand your pain.

As far as your stress relief, practice Meditation and breathing exercises(in yoga).

link|flag
It was basically a design decision at the start that required all sorts of off shooting systems be built way before they were really needed. So it isn't all bad. If it was done right the first time we wouldn't have needed all the extra work done. I would love to use a better design, but in this world I'm dealing with a very bloated and old design that is so well integrated its impossible to dissect it.. – jim May 28 at 23:19
vote up 2 vote down

Make sure the boss knows about the consequences of his decision.

Also: cigarettes do not really relief stress (sorry, couldn't resist).

link|flag
Oh I told him I was going to cry don't you worry. He apologized a lot too. He is well aware. Its just something that has to be done. Better spec next time I guess. Also: Lies. – jim May 28 at 22:56
vote up 0 vote down

beer, beer, sports, and beer.

link|flag
If only it was summer, I could do with a wakeboard.. :( – jim May 28 at 23:20
vote up 0 vote down

Six months is a long release cycle. You might consider using some kind of agile software-development method so that you get frequent feedback from bosses and users such that when goals suddenly change (as they always do) you are more likely to be holding some useful pieces.

link|flag

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