Home

The Biggest Bug

Programmers spend so much time architecting the perfect codebase, when the code itself relies on a system that is inherently flawed.

There's a powerful term in computer programming called coupling.

Modern code is modularized to make it easier to read, write, and maintain. But for the overall system to work properly, these modules likely have to communicate with one another and work together to benefit the greater whole. That's where coupling comes into play. As Wikipedia reads:

Coupling is the degree of interdependence between software modules.

Consider an example where we're building a program to handle school exams. We'd probably have Question and an Answer modules. If Answer depends on too much of the Question, it makes the program fragile. For example, say Answer knows the order in which the questions are presented. If that order changes, you may possibly break the Answer module. In that case, Question and Answer are tightly coupled together.

Therefore, the goal in modularized (or object-oriented) programming is building modules that are loosely coupled, or decoupled.

When programmers write code, that code is coupled with the language in which it's written. That makes sense, right? The more we know about the language, the more tools we have at our fingertips to make the code work.

For those languages to work as expected, they have to form opinions and make assumptions. One such decision languages make is how dates and times work. You could say most programming languages are coupled to time. Or, using the transitive property, much of the code we write is coupled to time.

And time might just be the world's biggest bug.

The Gregorian calendar we use today calculates the average year as 365.2425 days long. It has an error of about 27 seconds each year, which is about a day every 3,000 years or so.

In other words, the way in which we calculate dates and times is not fully correct. And yet, in so much of what we do, we assume it is. If we were to create a more accurate calendar (the Persian calendar is closer) that changes the basic behavior of how we assume dates and times work today, much of our code will be broken.

And that's why you always decouple your code.


If this sounds dramatized, it is. This won't actually affect any of us today.

Let's Connect

Keep Reading

Manipulate iFrame Content

When you can communicate with the code inside an iFrame, you can make any change you want to the code within that iFrame.

May 02, 2018

How to Write a Custom Rake Task

Rake provides a great way to automate repetitive or complex tasks. Here's a look at creating a simple and a more complex task.

Apr 27, 2015

CAML Query Builder for SharePoint 2010

A useful tool for building CAML queries in Microsoft SharePoint 2010.

Nov 30, 2012