in Platform Updates

When Rewriting Your Software Doesn't Matter

Bartosz Olchówka in Programming, on October 21, 2013

Imagine coming to work on a Monday morning, full of energy after a relaxing weekend, and it turns out you have an empty todo list. “Hell yeah,” you might think. “Finally, I have some time to rewrite that XYZ module. After all, it’s just a piece of crap.”

Wait. Think for a second before digging into that 8-hour task.

Will your customers see any difference? No? Then you’re probably planning to waste the whole day on trying to convince yourself you’ll do a good job today. But the reality is it won’t be a good job at all.

11-year-old JavaScript code

Here’s a textbook example of why you shouldn’t touch things that still work as intended.

LiveChat’s tracking code is just a snippet of code our customers install on their websites. It’s responsible for loading our chat widget (you can see it in the bottom-right corner) and exchanging some data with our server.

Seems like an easy task, right? I bet there’s a jQuery plugin for that ;-)

However, we’ve been in the business since 2002, and those were the days when JSONP and AJAX calls were like landing on Mars. Exchanging data between the web browser and the server was a tough task in these days. That’s when one of our developers came up with a smart idea.

He used the tag’s attributes to exchange the data. The tag was supported by all browsers so it was a very reliable solution. It worked the following way: web browser was “asking” the server if it has any fresh data available by loading a raw image:

var image = document.createElement('img');
image.src = 'http://server.livechatinc.com/12345/control.cgi';

When LiveChat server wanted to send some information to the browser, it returned an image with specific width. For example, a 32px-wide image. The browser was able to read the image’s width. It also knew that each ’s width represents a particular message. The width of 32px meant that a chat with an agent has started:

if (image.complete === true) {
	var w = image.width;
	if (w === 32) {
		// here's the code responsible for displaying
		// chat with an agent inside the chat widget
	}
}

That’s how it worked. The data between the web browser and the server was exchanged using an tag’s width attribute.

The most important fact is this: our tracking code still works that way. That’s right. It’s 2013 now and we haven’t changed that logic for 11 years. Our 6000 customers are using a script that exchanges the data using tag’s width attribute.

Think about that. This code:

  • does exactly what it should,
  • works on all browsers; after all, it worked on all the browsers in 2002, too,
  • is a time-tested, bug-free solution.

Sure, we could rewrite that code and use JSONP to exchange the data. But the end-user won’t tell the difference. So what’s the point? We just focus on other tasks that really make a difference.

Be productive instead of busy

There’s a great quote by Tim Ferriss who says: “Focus on being productive instead of busy.” To better understand what he means, just have a look at some examples:

You’re busy when…

  • … you’re checking your mail for the 4th time within an hour,
  • … you’re sitting on a meeting lasting 60 minutes, whereas the conclusions could be laid down via e-mail in 10 minutes,
  • … you’re rewriting your app and the end-users can’t tell the difference.

You’re productive when…

  • … you’re designing a feature that will solve a problem that your customers are facing right now,
  • … you’re reading a book that will endow you with additional skills,
  • … you’re optimizing an algorithm which will result in 2x faster website loading time.

Refactor, don’t rewrite

Joel Spolsky wrote a great article about that “single worst strategic mistake that any software company can make: rewrite the code from scratch.” It’s a 13-year-old stuff that’s still a must-read for all software developers. Have a read if you’re thinking of rewriting the software: Things You Should Never Do, Part I.

See other Platform Updates

How to Fix Common UI Mistakes With a Few Lines of Code

“The devil is in the details,” people tend to say.

Read more

Migrating Users to a New Product

How to migrate users to a new version We have been maintaining two versions of the same product for 11 months.

Read more
See all updates