45
What's the point of lightweight code with modern computers?
(liam-on-linux.dreamwidth.org)
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
Follow the wormhole through a path of communities !webdev@programming.dev
I mean, the text on a website isn't the problem for not being able to use 56k.
It's only images and video that take up space, the libraries used on websites are all cached at this point so that's hardly relevant to ongoing usage of a website.
You're underestimating the text part a lot. The sheer amount of things downloaded for most sites is insane. It's not the raw data (although it's still pretty significant, especially when things haven't been cached yet.
But there's often HUNDREDS of pages loaded. Each which needs a GET, even to validate cache, which often fails. Some can be done in parallel. All requires a bunch of shitty slow HTML/CSS/JS compute. It's stupid. It's why loading a page on a 16-core system with gigabit internet links still takes like 5+ seconds to load instead of the like 200ms that it should. Which adds up.
Now do that over 56k.