cm0002@lemmy.world to Programmer Humor@programming.dev · 15 hours agoWhy indeedlemmy.mlimagemessage-square133fedilinkarrow-up11Karrow-down113cross-posted to: programmerhumor@lemmy.ml
arrow-up1990arrow-down1imageWhy indeedlemmy.mlcm0002@lemmy.world to Programmer Humor@programming.dev · 15 hours agomessage-square133fedilinkcross-posted to: programmerhumor@lemmy.ml
minus-squarelobut@lemmy.calinkfedilinkarrow-up30·edit-211 hours agoWeb “Apps” are also quite bad. Lots of and lots of stuff we’re downloading and it feels clunky. Sometimes that’s bad coding, poor optimization, third party libraries, or sometimes just including trackers/ads on the page.
minus-squareOnomatopoeia@lemmy.cafelinkfedilinkEnglisharrow-up35·11 hours agoI vaguely recall a recent-ish article that an average web page is 30mb. That’s right, thirty megabytes. It’s amazing how much faster web browsing becomes when I run PiHole and block most of it. Suddenly the TV is pretty snappy, and all browsers feel so much smoother.
minus-squareSorryQuick@lemmy.calinkfedilinkarrow-up3·edit-23 hours agoThat’s straight up not true. It’s not even remotely close to that. https://httparchive.org/reports/page-weight
minus-squareLemminary@lemmy.worldlinkfedilinkarrow-up4·6 hours agoAnd I’m sitting here uneasy thinking how the hell I’m going to compress my map data any further so that my entire web app is no bigger than 2 mb. 😥
minus-squarethesystemisdown@lemmy.worldlinkfedilinkEnglisharrow-up17·10 hours agoSome devs will include a whole library for one thing instead of trying to learn another way to do that thing.
minus-squarebleistift2@sopuli.xyzlinkfedilinkEnglisharrow-up7·8 hours agoNowadays libraries are built with tree-shaking in mind, so when it’s time to deploy the app only the code that’s actually used gets bundled.
minus-squarechraebsli@programming.devlinkfedilinkarrow-up9·9 hours agoA whole library which was meant to to 10 things, but you only use one. And that for x libraries
Web “Apps” are also quite bad. Lots of and lots of stuff we’re downloading and it feels clunky.
Sometimes that’s bad coding, poor optimization, third party libraries, or sometimes just including trackers/ads on the page.
I vaguely recall a recent-ish article that an average web page is 30mb. That’s right, thirty megabytes.
It’s amazing how much faster web browsing becomes when I run PiHole and block most of it.
Suddenly the TV is pretty snappy, and all browsers feel so much smoother.
That’s straight up not true. It’s not even remotely close to that.
https://httparchive.org/reports/page-weight
And I’m sitting here uneasy thinking how the hell I’m going to compress my map data any further so that my entire web app is no bigger than 2 mb. 😥
Some devs will include a whole library for one thing instead of trying to learn another way to do that thing.
from * import *
Nowadays libraries are built with tree-shaking in mind, so when it’s time to deploy the app only the code that’s actually used gets bundled.
A whole library which was meant to to 10 things, but you only use one. And that for x libraries