• Stovetop@lemmy.world
    link
    fedilink
    arrow-up
    4
    ·
    3 months ago

    It’s just that we have to make space for our 5,358 partners and the telemetry data they need.

  • cylon@programming.dev
    link
    fedilink
    arrow-up
    4
    ·
    3 months ago

    Memory is cheap and data sells enough to many parties. Most apps are just store front for Ads and data collection.

    No wonder why open source apps are quite light.

    • jmcs@discuss.tchncs.de
      link
      fedilink
      arrow-up
      2
      ·
      3 months 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.

    • lobut@lemmy.ca
      link
      fedilink
      arrow-up
      1
      ·
      edit-2
      3 months 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.

      • Onomatopoeia@lemmy.cafe
        link
        fedilink
        English
        arrow-up
        1
        ·
        3 months 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.

  • enemenemu@lemm.ee
    link
    fedilink
    arrow-up
    1
    ·
    3 months ago

    Paypal has 500 mb and just shows a number and you can press a button to send a number to their server.

    It’s insane

    • Onomatopoeia@lemmy.cafe
      link
      fedilink
      English
      arrow-up
      1
      ·
      3 months ago

      Check out the apps Hermit and Native Alpha. They make web pages run like an app. I’ve only run into a couple sites where they don’t work right.

  • Blackmist@feddit.uk
    link
    fedilink
    English
    arrow-up
    1
    ·
    3 months ago

    Fucking Chrome/Electron is why.

    I honestly wouldn’t mind that if they could all use the exact same runtime so the apps could be a few MB each, but nooooo.

  • count_dongulus@lemmy.world
    link
    fedilink
    arrow-up
    1
    ·
    edit-2
    3 months ago

    Cheaper & faster development by leveraging large libraries/frameworks, but inability to automatically drop most unused parts of those libraries/frameworks. You could in theory shrink Electron way down by yoinking out tons of browser features you’re not using, but there’s not much incentive to do it and it’d potentially require a lot of engineering work.

    • Bytemeister@lemmy.world
      link
      fedilink
      English
      arrow-up
      0
      ·
      3 months ago

      Yep. Apps are 20x bigger with no new features…that you are using.

      Let’s not forget that the graphics for applications has scaled with display resolution, and people generally demand a smooth modern look for their apps.

      • lud@lemm.ee
        link
        fedilink
        arrow-up
        1
        ·
        2 months ago

        In the case of normal apps like PayPal graphics shouldn’t be a huge factor since it should be vectorized and there is pretty much no graphics in apps like PayPal.

        The issue comes from frameworks.

    • zenpocalypse@lemm.ee
      link
      fedilink
      English
      arrow-up
      0
      ·
      3 months ago

      Yeah, though the joke is funny, this is the real answer.

      Storage is cheap compared to creating custom libraries.

      • UnityDevice@lemmy.zip
        link
        fedilink
        English
        arrow-up
        0
        ·
        3 months ago

        Storage is cheap on a PC, it’s not cheap on mobile where it’s fixed and used as a model differentiator. They overcharge you so much. Oh, and they removed SD card slots from nearly all phones.

        • IsThisAnAI@lemmy.world
          link
          fedilink
          arrow-up
          0
          arrow-down
          1
          ·
          3 months ago

          Nah it’s fine. Clean up used apps every once in a while. Base phones have more than enough space.

    • Otter@lemmy.ca
      link
      fedilink
      English
      arrow-up
      0
      ·
      edit-2
      3 months ago

      With that in mind, I LOVE how lean and fast some FOSS apps/projects are. One of my motivations to go searching for FOSS alternatives is when something seems slow for no reason.

      It’s not always the case, but it’s often the case

  • Realitätsverlust@lemmy.zip
    link
    fedilink
    English
    arrow-up
    0
    ·
    3 months ago

    Simple reason - dependencies.

    Modern devs dump any dependency and sub-dependency under the sun into their project and don’t bother about optimizing it. That’s how you end up with absurdly large applications. Especially electron is a problem in this regard.

    You can still write optimized and small software. However, for most businesses, it’s just not worth their time. Rather using an additional couple hundred megabytes of dependencies on the client system.