DEV Community

Cover image for Why you should learn how to remove and not add
Davide de Paolis
Davide de Paolis

Posted on

Why you should learn how to remove and not add

I am preparing lots of speeches for my Public Speaking training at Toastmasters. What I still find very hard is figuring out how much to write to fill the allocated time for the speech.
When I have a topic in mind I try to jot down something, but as soon I try to rehearse it, I realize the draft is way too long.

Therefore I need to iterate many times shaving off the unnecessary, trying to be more concise and see if the speech fits the time I will have on stage.

Removing the unnecessary - knowing what and how much to remove is extremely difficult.

But it is an enormously important skill to master and it is not only true for public or communication in general but also in software development.

Whether you are writing a README or a JIRA ticket you want to be clear but not verbose.
Whether you are reviewing some code or discussing requirements/estimations with the stakeholders you want to be honest but not blunt.

But you might say: "that´s still communication isn´t it?"
Yes, then think about all the other principle or best practices like:

  • implementing a class or method (single responsibility principle)
  • refactoring a monolith into microservices
  • defining the size and scope of a React component
  • granting roles, policies or permissions (principle of least privilege)
  • and in general, the idea itself of negative coding! (which does not mean writing code while grumpy and complaining and without any hope it will ever work, but the outcome of some refactoring which brings the total line of code to be less)

When would you stop? when removing stuff might break your application or make it slower or make your code harder to read?

In regards to this topic, there is an interesting excerpt from a book by Bruno Munari.
Bruno Munari was an Italian artist, designer, and inventor from my own city ( Milan ) born in 1907 that I always found inspiring because of his fundamental contribution to many different fields:
from painting and sculpture to industrial and graphic design, from poetry to kinesthetic learning.

To simplify you need to remove and to remove, one must know what to remove, like sculptors do when they hit through the rock with a chisel to remove all the excess material
Theoretically, every rock can have a beautiful sculpture inside it, how do you know where to stop to remove, without ruining the sculpture?

By removing instead of adding means recognizing the essence of things and communicating them in their essentiality.

Bruno Munari

This brings us to another quote that I love, from Antoine de Saint-Exupéry (yes, the author of The little Prince):

Perfection is achieved, not when there is nothing more to add, but when there is nothing left to take

With this, I am not saying that we should get stuck in the mirage of perfectionism, still, we should always strive for simplicity.

Finding that balance is our main challenge.


Photo by Mike Kenneally on Unsplash

Top comments (0)