• cabbage@piefed.social
    link
    fedilink
    English
    arrow-up
    24
    arrow-down
    2
    ·
    edit-2
    3 days ago

    At this point it’s pretty much a challenge to write software bad enough that a computer will struggle to run it.

    (Not a particularly great challenge obviously - I’m quite good a it myself)

    • Pieisawesome@lemmy.dbzer0.com
      link
      fedilink
      English
      arrow-up
      8
      arrow-down
      1
      ·
      2 days ago

      Yes and no.

      It’s about abstractions more than optimizing.

      React native is JavaScript code, which means it’s starting (essentially) a web browser, then it downloads, parses, and runs the code.

      All of this takes time, and is repeated every time it starts (perhaps they might cache this for windows).

      If they used a compiled or JIT language, it would be much faster performance, since there are fewer abstractions, but the hi would be much harder to build…