• @[email protected]
      link
      fedilink
      16429 days ago

      And analytics. And offloading as much computation to the client, because servers are expensive and inefficiency is not an issue if your users are the ones paying for it.

        • @[email protected]
          link
          fedilink
          928 days ago

          The Samsung shop hands out 1.4mb JSON responses for order tracking, with what I estimate 99% redundant information that is repeated many times in different parts of the structure.

    • @[email protected]
      link
      fedilink
      36
      edit-2
      29 days ago

      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.

      • @[email protected]
        link
        fedilink
        English
        4329 days ago

        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.

      • @[email protected]
        link
        fedilink
        English
        2029 days ago

        Some devs will include a whole library for one thing instead of trying to learn another way to do that thing.

        • chraebsli
          link
          fedilink
          1328 days ago

          A whole library which was meant to to 10 things, but you only use one. And that for x libraries

        • @[email protected]
          link
          fedilink
          English
          728 days ago

          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.