Wednesday, March 16, 2011

Thoughts Do Not End, and Neither Does Extra Code

I don't think it's proper to say I wish I didn't have as much energy as I do right now, but maybe I wish I could flip and switch, sleep, then flip it back on. That would be very useful. I feel like working all night on business and into tomorrow, then taking three days off for "life". But, I'd probably feel worse than simply sleeping a while and getting up normally and working.

I think it's that 15 months of bureaucracy has left me with a huge collection of stalled motivation to execute on ideas for solving customer / user problems in the SIMPLEST and most user-valuable (and those most economically valuable) path first, rather than for technological fancifulness.

When you see, very clearly, that simple, uncomplicated solutions to problems can prevent months and months of backtracking, it's very frustrating to have to watch those decisions being made. But, you also have to realize when it isn't worth your own personal expenditure, when what you are working on is not under your authority or ultimate influence.

Writing code should not be like a "drug hit". When it gets like that, then no amount of code is ever enough. There has to be more, more, more.

Yet, the words of this random google search ring so, so, so true:

Improve Code By Removing It

Less is more.

 It's a quite trite little maxim, but sometimes it really is true.

One of the improvements I've made to our codebase over the last few weeks is to remove chunks of it.

We'd written the software following XP tenets, including YAGNI (that is, You Aren't Gonna Need It). Human nature being what it is, we inevitably fell short in a few places.

I observed that the product was taking too long to execute certain tasks — simple tasks that should have been near instantaneous. This was because they were overimplemented; festooned with extra bells and whistles that were not required, but at the time had seemed like a good idea.

So I've simplified the code, improved the product performance, and reduced the level of global code entropy simply by removing the offending features from the codebase. Helpfully, my unit tests tell me that I haven't broken anything else during the operation.

A simple and thoroughly satisfying experience.

So why did the unnecessary code end up there in the first place? Why did one programmer feel the need to write extra code, and how did it get past review or the pairing process? Almost certainly something like:

      • It was a fun bit of extra stuff, and the programmer wanted to write it. (Hint: Write code because it adds value, not because it amuses you.)
      • Someone thought that it might be needed in the future, so felt it was best to code it now. (Hint: That isn't YAGNI. If you don't need it right now, don't write it right now.)
      • It didn't appear to be that big an "extra," so it was easier to implement it rather than go back to the customer to see whether it was really required. (Hint: It always takes longer to write and to maintain extra code. And the customer is actually quite approachable. A small extra bit of code snowballs over time into a large piece of work that needs maintenance.)
      • The programmer invented extra requirements that were neither documented nor discussed that justified the extra feature. The requirement was actually bogus. (Hint: Programmers do not set system requirements; the customer does.)

What are you working on right now? Is it all needed?



No comments: