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?
|
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? |
|||
|
|
|
|
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. |
||||||||
|
|
|
That it's my own code that I have to maintainence on, so I can't blame someone else when it's not working... |
||||||||||||
|
|
|
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... |
|||
|
|
|
|
A WTF-per-line ratio greater than 1. :-) |
||||||||
|
|
|
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). |
|||
|
|
|
|
Comments written in a language other than English. |
|||
|
|
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'. |
|||
|
|
|
|
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.... |
|||
|
|
|
|
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). |
|||
|
|
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. |
|||
|
|
|
|
And so on, ad nauseam. This construct can be handy to test your hypothesis, but these bad blocks have to be removed asap. |
|||
|
|
Very easy. Swallowed exceptions. e.g. (c#):
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). |
|||
|
|
|
|
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. |
|||
|
|
|
|
Worse than uncommented bug fixes is comments that are out of date or just plain wrong. |
|||
|
|
|
|
|
|||
|
|
|
||||
|
|
|
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. |
|||
|
|
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? |
||||
|
|
|
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:
|
||||
|
|
|
|
|||
|
|
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. |
|||
|
|
|
|
One word: Refactoring. |
|||
|
|
|
|
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. |
||||
|
|
|
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"] |
||||
|
|
|
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. |
|||
|
|
|
|
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. |
|||
|
|
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 :) |
|||
|
|
|
|
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. |
|||
|
|
|
|
hard-to-read code:
|
|||
|
|
|
|
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. |
|||
|
|