this post was submitted on 12 Oct 2025
29 points (96.8% liked)

Programming

14417 readers
35 users here now

All things programming and coding related. Subcommunity of Technology.


This community's icon was made by Aaron Schneider, under the CC-BY-NC-SA 4.0 license.

founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] t3rmit3@beehaw.org 6 points 1 day ago

Modern software is built on towers of abstractions, each one making development "easier" while adding overhead:

Today’s real chain: React → Electron → Chromium → Docker → Kubernetes → VM → managed DB → API gateways. Each layer adds “only 20–30%.” Compound a handful and you’re at 2–6× overhead for the same behavior.

That's how a Calculator ends up leaking 32GB. Not because someone wanted it to—but because nobody noticed the cumulative cost until users started complaining.

Man, this is so true. What sucks even more is that so many devs now don't know how to build anything BUT this stack.