vote up 11 vote down star
6

What is the thing that irritates you while doing maintenance coding?

Can you point out some points for easier maintenance for me and my fellow programmers?

flag

45 Answers

1 2 next
vote up 55 vote down check

The thing that irritates me the most while doing maintenance coding? Easy.

That management thinks that any fix can be done as easily as flipping a light switch. That any fix occurs in a vacuum, that it won't have any side-effects, that it all works like magic.

And that no amount of logical, rational explanation will convince them otherwise.

link|flag
3  
Oh great answer. I would have voted twice if I could. – JMSA Oct 23 at 12:08
2  
While I understand the feeling, as I'm getting older I'm starting to see that when someone is looking for a band-aid, it is usually ok to give them a band-aid. Also, that having trouble communicating the challenges involved in a feature or functionality change is often a problem on both sides of the table. – Mike Burton Oct 23 at 17:01
vote up 25 vote down

That it's my own code that I have to maintainence on, so I can't blame someone else when it's not working...

link|flag
7  
And the worst thing is, while searching for someone to blame for, I suddenly discover that the culprit was myself. Then I just hide the thing in a corner and say that, "No. Nothing actually happened". – JMSA Oct 23 at 12:20
1  
Worse when you've already started cursing loudly in the office prior to realising it was your own... – Paddy Oct 23 at 13:09
1  
lol. Totally agree. And this is what makes one a better developer... making him/her go back and see what he/she did and how bad it is. lol. – psasik Oct 23 at 13:17
vote up 17 vote down

That I cannot resist refactoring it. Even though it's my own.

And that after refactoring, the original idea seems clearer, and not so bad at all...

link|flag
vote up 14 vote down

A WTF-per-line ratio greater than 1. :-)

link|flag
1  
My personal threshold is more like 0.1, but one has to be practical about these things and fix the most glaring WTFs first. :-( – Christian Hayter Oct 23 at 12:59
1  
Also... you're happy to accept one WTF on EVERY LINE? – DisgruntledGoat Oct 24 at 14:31
show 7 more comments
vote up 13 vote down

That my child, who was so beautiful when she was born, has turned into an ugly brat who won't stop talking back nor do what she's told. Not content with that, she makes a point of embarrassing me in front of all my friends.

As for a suggestion: unit tests -- at least that way you can remember (or figure out) what she was taught as a child and make sure you don't break it (unless that's the point).

link|flag
vote up 7 vote down

Comments written in a language other than English.

link|flag
4  
Ja, visst är det irriterande. ;) – Guffa Oct 23 at 14:02
1  
If you think Hungarian Notation is bad, try to understand a piece of spaghetti mess that extensively commented - in a mix of English, German, and Hungarian. – sbi Oct 23 at 15:03
show 3 more comments
vote up 6 vote down

The fact that such code is usually riddled with many bugfixes. Uncommented bugfixes, so you have no idea why the hell the previous programmer returns from function x when y equals '5'.

link|flag
vote up 6 vote down

That the unit tests don't exist, and the code hasn't been architected to facilitate unit testing. So I'm faced with code that doesn't have defined behaviour (via unit tests). I then have to change the code to be testable, and that in itself could change the behaviour and remain undetected....

link|flag
vote up 6 vote down

Code duplication.

I've seen code where entire methods (even classes), had been copied, and then parts changed. Sometimes you had classes of >1000 lines, with 80% of the code identical. Just hunting down all the places to change something can be a nightmare.

The first thing I do is usually try to refactor this (which is not always easy).

And yes, I sometimes find it was my own code (though I hope I'll never do it like this again).

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

When I realize the code I am debugging is not even working. It was simply not tested enough. And I am wondering how come this code was checked-in. How come someone else could have think it was working.

link|flag
vote up 5 vote down
#ifdef BAD_CODE
... stuff that has been useless since ages
#endif

a couple of useful lines

#ifdef BAD_CODE2
... more stuff that has been useless since ages
#endif

And so on, ad nauseam. This construct can be handy to test your hypothesis, but these bad blocks have to be removed asap.

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

Very easy. Swallowed exceptions. e.g. (c#):

try
{
   //Do something
}
catch
{

}

//Keep doing something else.

This leads to all kinds of fun bug hunting, usually based on a bug report that you can't recreate. My motto to all juniors is now to never (ever) swallow an exception without logging it.

(Close second is badly written code within a transaction, where an error causes the transaction to hang, and the only error message you get is about a locked DB, with no explanation of what caused the original error).

link|flag
vote up 4 vote down

That everyone else is a complete moron, totally screwed up the design, created an unmaintainable mess of spaghetti code, commented the easiest stuff and forgot to comment on the hard-to-understand stuff.

The most irritating thing is that, much too often, it's a former me that was the moron.

I guess I just don't like digging through stale code.

link|flag
vote up 4 vote down

Worse than uncommented bug fixes is comments that are out of date or just plain wrong.

link|flag
vote up 4 vote down
  • See copy-pasted code from experts-exchange.
  • See your own code broken by another guy.
  • Find awfully written unit-tests.
  • Don't find them
link|flag
show 3 more comments
vote up 4 vote down
  • duplicated code
  • bad identation
  • unclear variable names
  • magic numbers
  • magic string constants
  • very long methods
  • unclear naming of methods
  • out of date documentation
  • inconsistent coding rules
  • lack of revision and authors tags
  • lack of documentation
  • no OOP at all
  • copy & paste
  • anemic classes
link|flag
2  
I was going to list the opposite of anemic classes; thousands-of-lines long classes that fit better into a monster movie than a professional solution. – Dean J Oct 23 at 14:51
show 1 more comment
vote up 3 vote down

When the only design documents are the codes themselves, written by someone I don't know or can't get access to. And the codes have no comment.

Making it worse will be a lot of redundant (if I know at all) files/codes/DB tables/columns which confuse me further, not to mention time wasting.

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

When you have large sections of commented-out code without any explanation of why those sections have been commented-out. Usually this is just a lazy alternative to version control, but sometimes it may indicate a temporary fix that the developer is unsure of, or some other condition you are not aware of.

So do you leave it? Delete it? Make a back-up and delete it?

link|flag
5  
I always delete it. If I feel really unsure, I'll replace it with a (short) comment to that effect. That's why we have version control, after all. And commented-out code greatly hinders readability, and after a few unrelated changes, is unlikely to be useful anyway. – sleske Oct 23 at 12:24
show 3 more comments
vote up 3 vote down

Ummm. How about maintenance coding itself?

But seriously, my biggest pet peeve is when i refactor a piece of code for clarity and/or performance and realize that suddenly two or three other features broke because of a ridiculous chain of dependencies.

Spaghetti code:

alt text

link|flag
2  
That happens often. – JMSA Oct 23 at 12:16
vote up 3 vote down
  • Unclear variable names e.g. m_strObjArr
  • .NET code littered with Hungarian Notation, especially when applied inconsistently e.g. m_strI, strI, objArr (Microsoft recommends not using Hungarian for .NET naming: http://msdn.microsoft.com/en-us/library/ms229045.aspx)
  • If-then blocks without braces
  • Duplicated code. This is especially irritating when the same JavaScript or C# method is pasted on every page in a site instead of it having been factored into a common file.
  • No instructions on how to get the code running on a local development machine or deploy it to production.
link|flag
show 2 more comments
vote up 2 vote down

When the code doesn't make best use of the language. Use the language the way it was intended.

Concentrate your maintenance on clarity and correctness: Use smart pointers here, make this a class. Catch that exception and clean up before rethrowing. Don't go crazy making huge architectural changes unless the existing architecture is causing the problem, or preventing you from fixing actual bugs.

link|flag
vote up 2 vote down

Can you point out some points for easier maintenance for me and my fellow programmers?

One word: Refactoring.

link|flag
vote up 2 vote down

Giving a workload estimate for discovering and fixing a tough bug when initial information is the issue report stating "The software doesn't work". Usually my answer is: "between two hours and fifteen days"

Then justifying why I spent two weeks for adding only a couple of characters here and swapping two lines there.

link|flag
1  
one of my coworkers once worked to debug an issue for weeks, then had to actually fly to the customer's site (since it wasn't reproducible locally), then found that there was a single missing quotation mark that somehow got removed from their copy of the script. 1 character change, untold thousands of dollars and tens of hours consumed. – rmeador Oct 23 at 16:20
vote up 2 vote down

My biggest pet peeve: code rot.

In other words: we start out with a pristine, beautiful application. Over time, new features are added to it -- of course, whoever is working on the changes just slaps their code anywhere. Another person works on the code, can't figure out what its doing, and just wedges their new fix or feature wherever it fits. Fast-forward a year or so later, your once shiny and polished code has turned to rust. Its barely held together with duct tape and rubber bands.

So, what happens next? Management wants a shiny new feature added, but you can't work it in without architecture or database schemas having an impact on existing code. You've got deadlines to hit, so what do you do? Write a hack that sort of works, wedge it in wherever it fits, and hope you have time to fix it later... [cue the Lion King's "Circle of Life"]

link|flag
1  
I try to keep in mind that the goal of development isn't "the perfect application backend", but "happy customers". No amount of perfect code pays the bills; one happy customer might fill that niche, though. – Dean J Oct 23 at 14:50
vote up 2 vote down

Uncommented code.

Yeah, we get it, you think you're God's gift to programming and that your coding is "self explanatory". I don't care. Comment your damn code regardless. You have NO IDEA what type of programmer is going be coming in after you; it could be someone fresh out of school that isn't aware of the techniques you use.

link|flag
vote up 1 vote down

When the code I am maintaining is written badly, without oops, using wrong or messy architecture, because then I have to either change a lot of things or act as wrongly as the previous coder did.

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

Coming across bugs caused by someone copy-pasting a chunk of code and then not actually modifying it to get the correct behaviour in the new place (let along the fact that they copy-pasted in the first place).

That's my current one anyway, having come across it most recently while doing maintenance coding :)

link|flag
vote up 1 vote down

Uncommented code, compact statements (e.g. single line ifs etc) and inconsistent variable naming.

Oh and I'm a real stickler for nicely laid out classes, keeping properties, methods, constructors and private variables grouped together.

link|flag
vote up 1 vote down

hard-to-read code:

  • wrong indentation
  • inconsistent coding rules or no coding rules at all
  • useless comments (I prefer no comment)
  • out-of-date paper documentation
link|flag
vote up 1 vote down

Unexpected non-local scope of the code, i.e. you change something in one part and in some almost incomprehensible ways, something else in a completely different part of the system suddenly fails. Drives me mad.

link|flag
1 2 next

Your Answer

Get an OpenID
or

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