• 0 Posts
  • 13 Comments
Joined 1 year ago
cake
Cake day: June 11th, 2023

help-circle
  • Espi@kbin.socialtoFirefox@lemmy.mlStop using Brave Browser
    link
    fedilink
    arrow-up
    33
    arrow-down
    3
    ·
    edit-2
    10 months ago

    What does this even mean. Chromium or Webkit are not “native” to an OS. OSs don’t magically include browser engines, its not a critical component of an OS either.

    Most OSs do come with browsers preinstalled, but they are programs just like any other. You can remove Safari from macOS (albeit its pretty hard because root is read only and signed), you can remove Edge from Windows. In my desktop with Windows 10 the only browser I have is Firefox (not even Edge), does that make Gecko the “native” browser engine?

    If anything, the native browser engine for Windows would be MSHTML from Internet Explorer.



  • Does anyone know of a Spotify client that works on ARM? I put an Orange Pi 5 as a smart TV box but Spotify doesn’t work in the browser because no Widevine on aarch64 Firefox.

    The poor Orange Pi can also barely play video without dropping frames, the GPU drivers are awful. I might try to uninstall them and just do software-rendering everything.



  • I haven’t seen anyone hate Fedora until this meme.

    Now, Red Hat, which has strong ties to Fedora, is doing a lot of stupid bullshit. I actually moved to Debian due to that, not really because I think its superior (at the end of the day, all distros can do the same stuff) but because I’m getting tired with corporations






  • I can’t believe Microsoft is still using this piece of crap filesystem. If they had a CoW filesystem they could even paper over the mess that is Windows Update without having to actually fix it, they could save petabytes of storage over the world and significantly improve reliability all in one go. Let’s not even mention how NTFS is amazingly slow on hard drives, manages to fragment to hell and back without doing anything, requires offline repairs like it was FAT32 and its compression barely does anything while massively slowing down the computer.

    Yet here I am envying btrfs, APFS, ZFS and even fucking XFS for their reflinks and CoW.

    In fact, not even WSL uses a modern FS, I think Microsoft is allergic to modern FSs.



  • I would say that it’s extremely unlikely.

    Websites in general are never limited by raw code execution, they are mostly limited by IO. Be that disk IO as files are read and written, database IO as you need to execute complex queries to gather all the data to build the user timeline, and network IO to transfer data to and from the user. For decentralized social media like Kbin or Lemmy its even more IO limited as each instance needs to go back and forth to other instances to keep up-to-date data.

    Websites usually benefit much more from caching and in-memory databases to keep frequently used data in fast storage.

    This is why simple, high level, object oriented, garbage collected languages have become so common. All the CPU performance penalties they incur don’t actually affect the website performance.