🦊 OneRedFox 🦊

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

help-circle




  • 🦊 OneRedFox 🦊@beehaw.orgtoLemmy@lemmy.mlMy rating of Lemmy
    link
    fedilink
    English
    arrow-up
    5
    ·
    edit-2
    2 months ago

    I would say that the decentralized nature of the platform means that the demographics that don’t get along don’t have to share the same space. Reddit is full of communities that fucking hate each other and the centralized nature of the site means that those userbases have to occupy a lot of the same subreddits; those users have a low barrier to entry to go troll each other and pick fights. In the Fediverse, these communities are separate instances and will just defederate from each other, putting an end to it. Instead, like-minded communities and instances can congregate together. The federation model also provides incentive for users to behave, since instances can be cut off from everyone else if they’re deemed too toxic/annoying.







  • Is the bootup/shutdown speed, and faster package management really worth it? Is it really significant enough?

    No. The primary reasons why you’d want to use Void Linux are the musl packages, the easy packaging experience with XBPS, and the simplicity of Runit. The distro felt like BSD on Linux when I last used it (it’s admittedly been a few years since then); I liked it. If the above things interest you, then go for it; otherwise, stick with Fedora.



  • OpenWebAuth used to be called “Magic Auth”, because of how seamless the experience is. Instead of only being able to manage things from your social dashboard, you can jump from one part of the Fediverse to another, and your permissions will be granted automatically. It all happens in the browser.

    The way this works is relatively simple: your browser accesses a token inside of a cookie. That token references your Digital Identity in the Fediverse, verifies it, and a handshake is performed. Afterwards, anything you were given permission to access unlocks and becomes visible on the page.

    Will this be impacted by browsers killing third-party cookies?





  • Installing proprietary software. For certain courses I unfortunately have to use software like Unreal Engine, Maya, Houdini, Unity, P4V, and a few others. I read NixOS has difficulty with running random binaries. I also could not find an UE5 package in nixpkgs, which Arch does have.

    So NixOS is different from other distros in that it throws out the FHS so that it can do things like install multiple versions of the same library without issues; this breaks binaries, however, and they have to be patched to work with NixOS. So you basically have to package things for Nix for them to work. Certain programs like Steam and VSCode even have a wrapper as part of their setup that recreates the FHS to make them work as expected, so doing this is possible, but as a beginner I doubt you want to fuck with that.

    Building binaries. I know nixos does some weird stuff with libraries and binaries. I need to be able to do normal stuff with binaries, and perhaps package and distribute them. It’d be really nice to be able to try out different compilers for my CMake/C++ projects also. Can NixOS do that easily?

    It’s actually nice as a dev environment. You do have to write flakes for your projects, but that’s not a big deal and the reproducibility is nice.

    VMs. I will be doing dGPU passthrough for testing assignments before handin. I assume this is no problem but it requires some weird stuff so I want to be sure before diving in!

    I’ve used VMs without issue, so should be fine.


    Since Nix is a distro-agnostic package manager, in your case I would probably use a normal distro like Ubuntu/Arch/Fedora and just use Nix with that if you want to go that route. It’ll go smoother than diving into the deep end right away.