DEV Community

Cover image for What is the most frustrating part of software development?
Ben Halpern
Ben Halpern

Posted on

What is the most frustrating part of software development?

Oldest comments (50)

Collapse
 
sherrydays profile image
Sherry Day

It's frustrating, but also gratifying with the right mindset: When you spend hours on a problem, and the solution is some stupid typo.

It's literally the worst. Likeβ€” I just ruined my day for a typo.

The gratifying part is that these are usually the times where I read a lot of documentation, reach a lot of source code, and generally level up as a developer. Without that appreciation and acknowledgment, it's only frustration. πŸ₯²

Collapse
 
warwait profile image
Parker Waiters

Disagreements. My way is the right way and I don't really want to hear otherwise. πŸ˜‚

Collapse
 
atvfool profile image
atvfool

I've dealt with that my fair share, I find it best to ask people "why is this way better"

Collapse
 
snoopydev profile image
SnoopyDev

The software development.

Collapse
 
gnyiri profile image
Gergely Nyiri

Endless meetings about nothing..

Collapse
 
ingosteinke profile image
Ingo Steinke

Talking about software development with people who are either stupid or stubborn or can't think outside the box of their corporate environment.

Collapse
 
booleanhunter profile image
Ashwin Hariharan • Edited

I'd say it's gotta be development effort estimation. In an Agile workflow, this would involve planning poker during sprint planning, where each member goes about assigning story points for various tasks. The results can be widely subjective. Here are some reasons in my experience:

  1. Firstly it can depend on who's picking up the particular feature and their working style.
  2. Often in planning stage, there are these little gaps in our current understanding of the code-base, which can either delay or speed up the feature development - and the only way to find out is when you actually start working on it.
  3. Also depends on the understanding of the overall product feature. Sometimes during actual development you tend to discover these edge cases that haven't been accounted for by the product team. So you kinda have to circle-back to them and wait for their response on what they think should be the expected behavior, which can introduce further delays.
  4. Development could also potentially get delayed if some key member of the team who has a more in-depth understanding of something essential is unavailable. Maybe they're too busy, or maybe they're on a holiday.

Most activities in software development can be solved to a degree, but this one seems so subjective that it almost feels like rolling a dice. Other than just adding extra time to the estimate (which raises the question - how much time?) to account for contingencies, I don't know if there is any strategy for this. Would love to hear other's thoughts. πŸ˜ƒ

Collapse
 
jonrandy profile image
Jon Randy πŸŽ–οΈ

I would shorten this reply to "Agile generally"

Collapse
 
booleanhunter profile image
Ashwin Hariharan

Haha, i guess with the planning poker activity you can certainly say it's generally Agile.

But, planning poker or not, estimates are still hard wouldn't you say? πŸ˜…

Thread Thread
 
jonrandy profile image
Jon Randy πŸŽ–οΈ

They're a waste of time, so I don't do them

Thread Thread
 
booleanhunter profile image
Ashwin Hariharan

Interesting! Is it because your workplace doesn't really need you to calculate estimates one way or another? Or perhaps they're flexible enough?

Thread Thread
 
jonrandy profile image
Jon Randy πŸŽ–οΈ

I just gave up doing them. Maybe the PO filled them in for me, who knows?

The happiest, most productive teams I've worked on we're ones where we were allowed to self organise, and not estimate

Collapse
 
codewander profile image
codewander

I worked in a setting where estimates were not essential to business. The founder came up with a system like the following for communicating what work was being done and raising awareness of blockers:

  • create Asana project for each major effort (a product line, a consulting project, ...)
  • define some high level milestones along with any known tasks
  • each developer, in increments of about one hour (potentially logged at end of day), defines micro tasks which spanned an hour or a few hours, as they start the work or as they come close to completing the micro tasks
  • mark milestones complete when they are completed

You get very detailed visibility about blockers, direction of tasks, and choice of approach. Tech leads can daily or weekly provide feedback and steer in a different direction if choice of tasks or milestones are not leading to delivered results that will continue to accomplish overall project goals. There is no estimation, but you can look back and see gantt charts or calenders of microtasks.

Collapse
 
booleanhunter profile image
Ashwin Hariharan

This is an interesting approach to work! Would love to know more on what was the business domain that you worked in, where estimates were not super essential.

Thread Thread
 
codewander profile image
codewander • Edited

The company was a mixture of custom scientific consulting (writing running long, expensive batch jobs), custom application development, and a long term SaaS product, still in development. The projects that I worked on were for custom application development, and our clients were very flexible about delivery dates.


We had four experienced engineers using this workflow on four solo projects and they each loved it. I especially liked the visuals that Asana produces once you enter the microtasks. We also did a weekly report to summarize our feelings on how the project was going.

Thread Thread
 
booleanhunter profile image
Ashwin Hariharan • Edited

I see! I think more companies should adopt this working style. From what I've seen, many of them just want you to keep grinding sprint after sprint, insisting on deadlines even when there isn't any actual pressure from clients to ship a certain feature.

how agile works

Thread Thread
 
codewander profile image
codewander • Edited

It actually is agnostic about how hard you work. For example, I put a lot of pressure on myself in that system to deliver a lot each day. I just like that it focuses on recording as you go and looking back, rather than spending lots of time on estimation, velocity, etc, and excessive time specifying tasks so that you can estimate them. I like deep requirements gathering though. I just don't like an obsession with estimation. My ideal system is something between the described system and kanban with bi-weekly retros.

Thread Thread
 
codewander profile image
codewander • Edited

The worst job that I ever worked (worked for about 10 different development shops), at a "best employer in healthcare" and "best employer in region", shoved this top down quarterly planning process on all the developer teams and had us spend 15% of our time in backlog grooming, task creation, scrum ceremonies, etc. Mostly well meaning people, just horrible experience for developers, no ability to focus or reach flow, task creation and grooming was a constant nightmare.

After that experience, I shudder whenever I see a tech company that has won "best employer" awards. I also don't trust Glassdoor anymore. I think the only way to learn about these problems is to experience a company first hand for a few weeks.

Also, if I see someone is using Jira, I start to ask very probing questions in interviews to try to understand why they arrived at heavyweight, clumsy jira.

Collapse
 
theaccordance profile image
Joe Mainwaring

Estimation is definitely a challenge that requires a team effort to get right. I recently shared a guide that I wrote for my own teams, perhaps there are insights that can help? A Guide to Story Point Estimation

Collapse
 
dendihandian profile image
Dendi Handian • Edited

Yes, this is one of the problems why I left a company.

Collapse
 
frontendengineer profile image
Let's Code • Edited

this cannot be the reason why would you leave a company. perhaps suggest a process that would work with you or the entire team?

Collapse
 
kpbird profile image
Ketan Parmar

Explain development estimation to sudo technical manager is frustrating.

Collapse
 
pykoder profile image
christophe grosjean • Edited

One extreme way to solve this is to go with #noestimates but it's a highly polemic subject. Some people (mostly managers ?) really love estimating things beforehand.

Collapse
 
janmpeterka profile image
Jan Peterka

When I want to code, and I'm stuck on problems with my tech.

Yesterday I spent an hour solving wrong DNS setting in Ubuntu as I was cut from my remote repository, instead of finishing feature.

Finally solving this, my battery died out without warning.

Then I couldn't continue working in a bus as my ntb charging got stuck on 4%.

Collapse
 
devsmitra profile image
Rahul Sharma

Requirement change after completing 90% task πŸ˜‚

Collapse
 
atvfool profile image
atvfool

this needs to be higher. my most recent job has been actually pretty good about this though telling the business that they have to deal with it until a new story can be brought in an completed in the next sprint

Collapse
 
jonrandy profile image
Jon Randy πŸŽ–οΈ

Non-technical managers

Collapse
 
lukewestby profile image
Luke Westby

Configuring AWS IAM policies lol

Collapse
 
kayis profile image
K

Reality.

You have a nice idea, and then you checkout what the market offers to help, and it's either legacy solutions or not yet production ready.

Software development is all about making compromises. The smarter you are, the better the compromise is.

Should you go all in on AWS because their CDK supports all their services? This means you have to use something like DynamoDB, which is rather low-level for a DB, or a relational alternative that isn't billed on demand.

Want to use something more modern, like FaunaDB? Well, then good luck finding a IaC framework that supports it and doesn't kill your vibes with YAML.

Reality usually sucks.

Collapse
 
jeremyf profile image
Jeremy Friesen

Javascript…just kidding.

I think the most frustrating is that software is highly susceptible to entropy. Which means guard strongly against dependencies. And be very wary of what all of those bells and whistles; much like the physical world, moving parts are more prone to breakage.

Collapse
 
swimburger profile image
Niels Swimburger.NET πŸ”

Dependency hell, annoying in a lot of programming stacks, but especially in NodeJS where you have to choose between being fully patched and secure vs. having a working app :(
Usually we have to accept that we can't patch a handful of vulnerable dependencies.

Collapse
 
tobhai profile image
Tobias Haindl

Unrealistic expectations. Often those expectations come from the outside, but they can of course also originate from the inside.

Sometimes I think "oh I did this in the past already, this should be easy".
If the task then takes longer than expected it feels very frustrating.

Handling those expectations properly is not always trivial in my opinion.

Collapse
 
otumianempire profile image
Michael Otu

Communication