vote up 1 vote down star

Today a colleague related that he removed a large module of code and replaced it with one line, with no reduction in functionality. That reminded me of a similar experience early in my career where I replaced literally thousands of lines of repetitive BASIC (with variables like RRR and K865) with about 10 lines (the original developer apparently was not familiar with arrays or loops).

Any other similar experiences?

flag

60% accept rate
Should this be a Wiki? – Sergio Feb 20 at 17:33
No, it shouldn't be wiki, it should be closed. – Adam Davis Feb 20 at 17:38
I agree, I think this would be better suited as a Wiki. – Mike Feb 20 at 17:38
Ah, the wiki police are out in full force today. – Adam Davis Feb 20 at 17:40
I'd vote to close because it seems like a rep-grab which I just hate (Encourages pollution with stupid questions), but since "Polling" isn't a reason to close, and no reason matches it (it's not really argumentative) I'm pretty meh about the whole thing. – Bill K Feb 20 at 18:04

closed as not programming related by Adam Davis, Jason Punyon, EBGreen, chaos, Chris Ballance Feb 24 at 21:21

6 Answers

vote up 3 vote down

There have been a few times I've been able to replace hundreds or thousands of lines with just a few, but the most satisfying reductions have been taking poorly written algorithmic code (written by people with a rather brute-force approach to algorithm design) and replacing it with clearer, faster and shorter code. It may have only halved the number of lines, but there's a lot of satisfaction in it. Sometimes the original code didn't always produce the right answer either.

There have also been a couple of times when I've tidied up the code a bit and found nasty bugs hiding in the mess.

link|flag
vote up 1 vote down

A few years ago a guy on one of my teams wrote 300 lines of Java to perform a variable floor function (i.e. round down to the nearest fraction). He converted the floating point into a string then proceeded to loop through each number to the right of the decimal to compare with the passed in factor.

Replaced the 300 lines with a single line (using modulus and subtraction).

link|flag
Can we see the one-liner? – Bill the Lizard Feb 20 at 17:54
I don't have the code here, but the basic gist was: result = round(((value * 10000) - ((value * 10000) mod (factor * 10000))) / 10000,2) The 10000 bit was because we only cared about 2 significant digits (currency), but needed enough digits to eliminate floating point errors (hence the round fn). – LuckyLindy Feb 20 at 18:03
vote up 3 vote down

Absolutely, but in my case it was more due to picking the appropriate tool to do the job. I replaced 1600 lines of Java with 150 lines of PL/SQL functions to generate some XML export files of data. This has been a relatively common experience for me, taking some large codebase used to access a RDBMS and using simple SQL to get the same results.

I keep in mind that brevity for its own sake is not enough - the refactored code needs to stay understandable and sensible.

Mainly it makes me realize I need to make sure to continue expanding my own technical background and not get overcommitted to any one language, OS, etc.

link|flag
vote up 1 vote down

Replaced about 50 lines of javascript that was responsible for toggling elements based on a dropdown, with about 5 lines of jQuery.

link|flag
vote up 1 vote down

Hmm. How about an entire retired application (or subsystem or component etc)? If there's no use for the functionality, is it really there?

link|flag
vote up 5 vote down

I once replaced an entire project with a handful of lines of Perl code.

link|flag
Wow... can you provide more detail? – JoelFan Feb 22 at 1:25

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