Write Less Code

Umer Mansoor Umer Mansoor Follow Jun 03, 2016 · 4 mins read

Not too long ago, I sat down to ‘clean up’ a project that I inherited. I was given the reins of the refactoring efforts because the project has had several bugs in production. It was stuck in a vicious cycle where fixing old bugs would introduce new ones. So I dived into the source code one weekend and the problem soon became evident: the project was a big, hairy mess. I use the word big because there was lots of unnecessary, redundant and tightly coupled code. By hairy mess, I don’t mean that the code looked amateur or was full of shortcuts. In fact, the problem was quite the opposite. There was too much magic and everywhere I looked, I saw clever and grandiose design practices that had no relationship with the actual problem that the project was built to solve. Things like reflection, aspect oriented programming, custom annotations were all present. The project was an over-engineered beast. To put it into perspective, after the refactoring was over, the module was reduced to less than half of its original size.

I’m sure the developers who wrote the project did so with the best intentions, but their clever tricks turned against them. They spent a lot of time on periodic maintenance and fixing bugs. The clients were unhappy that the software was full of bugs. The developers felt like shit because everyone was always complaining about the project. But who’s to blame for their misery, for the long hours they had to work to fix the bugs and get no satisfaction out of their jobs? No one else to blame other than the developers themselves. One of my favorite bloggers, Jeff Atwood, wrote that the best code is no code at all:

It’s painful for most software developers to acknowledge this, because they love code so much, but the best code is no code at all. Every new line of code you willingly bring into the world is code that has to be debugged, code that has to be read and understood, code that has to be supported. Every time you write new code, you should do so reluctantly, under duress, because you completely exhausted all your other options. Code is only our enemy because there are so many of us programmers writing so damn much of it. If you can’t get away with no code, the next best thing is to start with brevity.

Jeff’s point is undeniable. As developers, we have an itch to come up with clever solutions that we think will make us look professional or help us learn a new tool or technology. We build complex layers to solve simple problems and justify them as being “actually necessary”. But we must realize that the more code we write, the more magic we apply, the more opportunities and doors we leave open for the bugs to creep in. These bugs will come back and haunt us or our successors in the form of overtime required to fix them on time. I’m obviously not talking about using slick tricks to reduce the number of lines of code. Rather we should ask ourselves whether we need to write all that code to solve the actual problem. I’ve seen a couple of custom ORMs and handmade thread pools in my career which brings me to another point:

Don’t reinvent the wheel. Pretty please.

But don’t just stop there. Think whether that fancy framework is needed at all. A project I worked on used Hibernate along with the complementary DAO’s and DTO’s to execute one simple, straight-forward query. Another project had a comprehensive event handling system for a filter that used the reflection API to find and invoke the handler class based on the event type. It was an “ingenious” solution and it took me a while to figure out that the unused methods marked by the IDE were actually invoked using reflection. The icing on the cake: the system handled just one type of event. About five classes worth of code could have been condensed into a simple if statement:

if (event.type == THE_ONE_TYPE_THIS_SYSTEM_CAN_HANDLE) {
  process_the_event_and_return_result;
}

The best code is no code at all and the fastest code is the code that never gets executed. Our goal should be to keep our solutions as simple as possible and stay away from our natural tendencies to over-engineer, use clever tricks and design patterns until it can be proven that they are absolutely necessary to solve the problem. Complexity is our worst enemy. Unnecessary complexity, even more so because most of the time, you aren’t gonna need it.

I’m going to end this post with an excellent piece of advice from Jeff:

If you love writing code– really, truly love to write code– you’ll love it enough to write as little of it as possible.

Please share this article if you liked it. It will help the site grow and every share means a lot. Social sharing buttons are below. Thank you!

#featured #programming #opinion #popular #overengineering

You May Also Enjoy


If you like this post, please share using the buttons above. It will help CodeAhoy grow and add new content. Thank you!


Comments (6)


Ian Mackenzie

Totally agree! I like the concept of ‘spending’ code - “How many lines of code did you spend to implement this functionality?”

Also reminds me of the Bill Gates quote - “Measuring programming progress by lines of code is like measuring aircraft building progress by weight.”

Small typo in the first paragraph - “that that” should presumably be “that had”…


Umer Mansoor

Thanks for letting me know of the typo. Fixed :-)


egraether

I totally agree with this article and try to follow these rules wherever possible. But most of the time you are not writing from scratch, you have to deal with what’s already there. To make this task simpler I started building a new developer tool: Coati, a cross-platform source explorer, designed for navigating and understanding source code quicker. It currently works for C/C++ and I use it parallel to my code editor. It made my life much easier, by giving quick answers about the implementation.


Rob van der Leek

Lots of developer wisdom in this article that can not be stressed enough. The amount of code in a codebase has a big impact on the ease of maintenance.
My company has written a book on the 10 most important guidelines to keep your code maintainable: http://amzn.com/1491953527
If you like the sampler then please contact me by e-mail for a copy.


toufik

very neat and concise post that was informative thnx


crpatino

I do parallel refactoring by keeping an eye out for opportunities of code that can deleted. Many times I end up with negative lines of code spent after adding a new feature.

“One of my most productive days was throwing away 1000 lines of code.” Ken Thompson


Speak Your Mind