DEV Community

Cover image for Keep your Ego away from coding
Davide de Paolis
Davide de Paolis

Posted on

Keep your Ego away from coding

Have you ever been in a meeting where two - or more - devs were arguing about - mostly - irrelevant technical issues?

Have you ever felt upset after a colleague rejected your Pull Request or criticized your solution during a Code Design session?

How many endless heated threads have you read in blog posts or StackOverflow questions over this or that better approach?

If you have been a developer for enough time, you will definitely have experienced all of the above.

Why? Why are we - as developers - so attached to our code? Why do we have this incessant need to prove ourselves right?

I am the only one smart here

  • Ava or Mocha?
  • React or Vue?
  • Webpack or Parcel
  • Express or Hapi?
  • Visual Studio or Intellij IDEA (or VIM)?
  • AWS SAM or Serverless framework?

I am not saying that there are no differences. I am saying that most of the time those differences do not make that much difference.

Some solutions must definitely be evaluated before starting a new project, but this evaluation must be based on data, on the requirements from the client and on the possible limitations from the tool, not on personal preferences or taste.
Of course previous experience can be decisive in the choice, as costs are ( using IntelliJ requires a license while Visual studio does not; having a team learn a new stack requires time and therefore money)

Only because you know a tool better does not mean that tool is better than others on the market.

In the end, the client, or the user does not care if the Web app was built with the latest coolest js tech stack or in .net as long as it works, is fast and it is looking good.

The problem you solve is more important than the code you write

Over the years I got more and more detached from some tech decisions. Especially the minor ones regarding which linter, test framework or bundler.
The battle is mostly based on opinions.

It is always conservatives vs hyped - as long as it works and I am good at it, stick to it versus newer is always better.

I like to try new things and I love to learn always some stuff, but we also have to deliver and we cannot always switch framework, language at every project - wasting time, energy and money.

This is not that I don't have discussions over technical topics. I do. Some of them can also become quite heated. But it is never about who is right or wrong.

Actually, I very like to be proven wrong, because that means that I was making a mistake, or that I could simply do something better and learn something.
In the end it does not matter who is right, what matter is that the solution is right, whoever it belongs. and it does not even have to be the BEST one.

The point is:

  • opinions do not matter unless supported by facts and data
  • best is the enemy of good and often what you (and ultimately - the client) need is not the optimal solution, but a solution that suits the requirements and the time/money constraints.

When there is a tech discussion going on, be it choosing the tech stack for the next project, or a code design session for the next feature, or a code review, put your ego aside.

The discussion is about the code - the technology and the solution, not about you. it´s not about how cool you are, how expert you are.

Leave your ego aside, detach emotionally from your creature, embrace change, accept critics, learn from every experience.

Emotionally detach from your code.

Being emotionally detached from your code does not mean become sloppy or uninterested in what you do. Don´t emotionally detach from your work.
Focus on the outcome.

If you put too much pride in your code poetry, if you think your implementation it´s the only possible solution and that is perfect and therefore you are a good developer and a smart person, of course you will fell attacked - personally attacked if someone criticizes it, or suggests something different. Let alone how you could feel if you are clearly proven wrong.

i get it, but you are wrong, and i hate you

If you remain humble and leave ego out of your code, you might just incur into some frustration :
damn, why didn't I realize that issue? why did that solution not popped in my mind? I feel ashamed that I have wasted hours or weeks of work, it´s a bit annoying that I have to rework the same stuff over..

We all went through this. It is OK.

Conversations are not competitions.

Just because someone else is right doesn’t mean that you are wrong. An opinion that differs from yours is not an attack on your rightness.

you are wrong

Sometimes the solution proposed is actually the right one and the best, but it could be advisable to choose a less optimal one if it respects the requisites and way less effort.

On this matter I changed my mind a lot over the years.
Before I was one of those devs always fighting for the best design, it had to have all the right design patterns in place, dependency injection, interfaces, it had to be future proof and flexible for future implementations and changes in requirements.
Then I saw that those further implementations never came or that despite all the complexity and the flexibility, the new requirements often managed to break the design anyway.

So I slowly moved away from that stance, and embraced a simpler - not easier - approach. Flexible but more focused on what must be now, not on what could be.

As a good software engineer I try to anticipate issues of course, but I am not obsessing anymore on writing everything super abstract to be ready for future changes.

Focus on delivering value, not on proving that you are the best

Fundamentalism is never good, it is not in religion and it is not in tech. Flexibility is more important. You gotta know the rules, and you gotta know when to break them.

Always remember that code can be modified, code can be improved, code can be deleted.

You cannot know everything, there is always something you can or have to learn, you are not perfect, there will always be someone better than you. ( and if not. maybe you are in the wrong team, probably you should move on, you should never be the smartest person in the room)

All this is OK. All this does not lower you. On the contrary, it must be seen as something positive and challenging.

Write code with pride but with humility.
Put all your passion in your work, but leave your ego out.
Be great but be grateful.

zen

How do you deal with criticism?
How do you keep your balance between caring and obsessing?

Top comments (6)

Collapse
 
harsh183 profile image
Harsh Deep

The trick is balance. A good amount of cutting edge tech often shortens time and let's you go to market faster or maintain something easier.

I think my biggest factor is simplicity. How simple is the end code and interface? I've usually found in experience that the simplest appraoches are the most maintainable and future proof.

Collapse
 
dvddpl profile image
Davide de Paolis

exactly! striving for simplicity is already a blog post in my draft. sooner or later i will finish it.

Collapse
 
harsh183 profile image
Harsh Deep

I've been writing one too. Let me know when it's up.

Thread Thread
 
dvddpl profile image
Davide de Paolis

you too! :-)

Collapse
 
kodnificent profile image
Victor Mbamara 🇳🇬

Guilty as charged 🙄
I need to change 😑
Thanks for this

Collapse
 
pierre profile image
Pierre-Henry Soria ✨

Good read Davide! 👏