show/hide this revision's text 2 added 672 characters in body

The only time you can ever justify fixing these things (because they're not really broken, just ugly) is when you have another feature or bug fix that touches the same section of code, and you might as well re-write it.

You have to do the math on what a developer's time costs. If software requirements are being met, and the only thing wrong is that the code is embarrasing under the hood, it's not really worth fixing.

Whole companies can go out of business because over-zealous engineers insist on a re-architecture every year or so when they get antsy.

If it's bug-free and meets requirements, it's done. Ship it. Move on.

[Edit]

Of course I'm not advocating that everything be hacked in all the time. You have to design and write code carefully in the normal course of the development process. But when you do end up with hacks that just had to be done quickly, you have to do a cost-benefit analysis on whether or not it's worth it to clean up the code. If over the lifetime of the application you will spend more time coding around a messy hack than you would have fixing it, then of course fix it. But if not, it's way too expensive and risky to re-code a working, bug-free application just because looking at the source makes you ill.

show/hide this revision's text 1

The only time you can ever justify fixing these things (because they're not really broken, just ugly) is when you have another feature or bug fix that touches the same section of code, and you might as well re-write it.

You have to do the math on what a developer's time costs. If software requirements are being met, and the only thing wrong is that the code is embarrasing under the hood, it's not really worth fixing.

Whole companies can go out of business because over-zealous engineers insist on a re-architecture every year or so when they get antsy.

If it's bug-free and meets requirements, it's done. Ship it. Move on.