this post was submitted on 13 Jun 2023
2 points (100.0% liked)

Experienced Devs

3928 readers
1 users here now

A community for discussion amongst professional software developers.

Posts should be relevant to those well into their careers.

For those looking to break into the industry, are hustling for their first job, or have just started their career and are looking for advice, check out:

founded 1 year ago
MODERATORS
all 12 comments
sorted by: hot top controversial new old
[–] Golang@programming.dev 2 points 1 year ago* (last edited 1 year ago)

I'd say the ability to understand a problem set and break it down into pieces is the most important skill for software engineers. You can have all the AI tools you want, but if you don't truly understand what it is you are trying to solve, you will likely end up at an over-engineered solution that requires consistent iteration.

[–] GameOfHotPotato@programming.dev 2 points 1 year ago* (last edited 1 year ago) (1 children)

I wouldn’t necessarily say it’s critical thinking as that’s too wide a term to be useful. What I would put in my top 3 skills are:

  • problem decomposition
  • curiosity
  • being open to feedback / criticism

Problem decomposition allows you to take huge problems and fix them as if they’re nothing more than a few tiny issues.

You won’t learn anything after the initial knowledge required to do your job and keep on growing without being curious.

The same can be said for feedback, a lot of people attach their ego to their work. This is such a limiting factor, holding you back from improving in areas you weren’t aware of.

[–] terebat@programming.dev 1 points 1 year ago

I like problem decomposition a lot as a discrete step. There's a huge tendency to go, I have problem A, let's just solve with it B. Many times the nuance of why A occurred, whether it's a symptom of something, and what are the different subproblems that comprise A are skipped.

This often causes solutions which don't actually solve the problem, or just mask it. That extra effort up front, leads to the proper solution, and as you said, very tactical fixes instead of huge unnecessary solutions.

[–] tomcizek@programming.dev 1 points 1 year ago* (last edited 1 year ago) (1 children)

I was lucky I didnt faced this dumb attitude of locking others out of conversation. My experience from my early days is that seniors used jargon, but made sure that everyone understands what is means without any kind of shaming.

That's why I always considered jargon as useful. It is just some kind of model of point of wiew on some part of reality that we already agreed on (and must be clear to everyone in conversation). There is a saying "all models are wrong, some are useful". And critical thinking helps you determine if the presented model is useful in your context... or anywhere at all.

So I think it is good to understand some jargon, so you can determine if it fit your needs and brings any value, also you can be the hero who makes sure everybody understands.

[–] terebat@programming.dev 1 points 1 year ago

Jargon is great for consolidating complexity into just a few words, reducing the things you have to think about. It can be equally valuable though to poke into implicit assumptions that are commonly made.

It's definitely a balance, and being inclusive in conversations is super important as you mentioned. It allows newer folks to get up to speed much faster in comparison, and allows more engagement across the people within the discussions.

[–] schizosfera@feddit.de 1 points 1 year ago (2 children)

Critical thinking is definitely important, but I would say that the most underrated skill is communication (spoken and written).

[–] terebat@programming.dev 1 points 1 year ago (1 children)

Definitely agree there! Communication is super underrated, especially with how difficult it can be to align people and teams across organizations.

[–] schizosfera@feddit.de 1 points 1 year ago

Also communication: issues, blockers, requirements, expectations. Nothing works without these things and the ones you mentioned.

[–] HiddenTower@lemmy.world 1 points 1 year ago

Yep, first thought I had when I read the title.