this post was submitted on 21 Sep 2024
202 points (100.0% liked)

Programming

17083 readers
895 users here now

Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!

Cross posting is strongly encouraged in the instance. If you feel your post or another person's post makes sense in another community cross post into it.

Hope you enjoy the instance!

Rules

Rules

  • Follow the programming.dev instance rules
  • Keep content related to programming in some way
  • If you're posting long videos try to add in some form of tldr for those who don't want to watch videos

Wormhole

Follow the wormhole through a path of communities !webdev@programming.dev



founded 1 year ago
MODERATORS
 

The really interesting part is IMO this one:

you are viewing a single comment's thread
view the rest of the comments
[–] mark@programming.dev 30 points 1 week ago* (last edited 5 days ago) (1 children)

Not surprised that Tech debt is among the biggest. There seems to be a lot of complexity added to apps unnecessarily these days-especially web based apps. It's almost like companies purposefully force their engineers into creating web apps so bloated that users have no choice but to use the native app version.

[–] Carighan@lemmy.world 16 points 1 week ago (1 children)

I mean, the thing I work on hada great idea. Use microservices, because we genuinely have a need to independently scale different parts.

Few years down the line and there's an endless list uff services, most with a single instance doing nothing all day, and having memory and CPU overhead of course. And being a nightmare to figure out what code is whereas they all communicate independently.

[–] lolcatnip@reddthat.com 10 points 1 week ago

And being a nightmare to figure out what code is whereas they all communicate independently.

So much this. Especially in a larger company it can be basically impossible to find the code that implements an endpoint, and of course even if you can find it you can't trace it in a debugger.