• 1 Post
  • 21 Comments
Joined 1 year ago
cake
Cake day: June 11th, 2023

help-circle

  • Of course, if you’re living in Russia, it’s dangerous to state anything other than support for Russia’s invasion of Ukraine.

    That doesn’t mean it isn’t cringeworthy to watch someone awkwardly dance around it, trying to ignore it while complaining about (checks notes) losing a bit of reputation over an unnecessary war that their country started and which literally cost thousands of lives.

    Any Russian who stands up against that is incredibly brave. The others, just different levels of sad. Non-Russians who support Putin are the worst.

    I understand why you’d want FOSS to not care abot borders, wars and politics and that is noble. But to call this comment racism, comes across as a veiled show of support for Putin. As if critiquing his invasion is a racist act that hurts the Russian people. Putins invasion is hurting the Russian people. Not this comment.



  • Yes, you are right.

    The old stuff, now no longer supported, is:

    • .NET Framework up to and incl version 4.8
    • Runtimes distributed as part of Windows
    • Mono is a Linux Runtime used for compatibility

    The new stuff:

    • .NET Core, up to and incl 3, more recent versions are named .NET from version 5 onwards (to prevent mixing it up with the old Framework)
    • Is completely cross-platform, natively
    • I don’t know about desktop specific graphical stuff but that probably depends on the specific library



  • I have never heard of WattOS but that sounds terrible.

    It seems like antiX is a systemd-free Debian flavor.

    If you want systemd, why not just use Debian? Or, if you are looking for a nice preconfigured DE/WM, any of a number of Debian/Ubuntu derivatives.

    Mint for best out of the box setup, Pop!_OS for tiling, Zorin OS if you’re looking for a funky styling, any of the Ubuntu derivatives for the major DEs: Kubuntu, Xubuntu, etc.










  • F04118F@feddit.nltoLinux@lemmy.mlHow bad is Ubuntu?
    link
    fedilink
    arrow-up
    5
    ·
    edit-2
    3 months ago

    Completely off topic, but: I’ve been trying Fedora (KDE spin) for a few months now, and I’m flabbergasted at how unusable the distro version (not the Flatpak) of Firefox is. I think it’s a codec issue as I’ve checked Firefox is running in wayland mode, but:

    • video calls (Zoom, Slack) don’t work.
    • despite installing every codec I could find through Fedy, a package manager for non-free Fedora repos.

    Meanwhile, the Microsoft Edge flatpak works flawlessly.

    Are you using a flatpak browser too? If not, how did you get your browser to work?

    I really like Fedora otherwise: up-to-date kernel and modern (very efficiently stored) packages, but properly tested with major releases, btrfs and systemd by default and commonality with RHEL is useful at work.

    But these codec issues are pushing me back to Arch…


  • I um… didn’t get started yet. But a colleague demoed it to my and it’s kind of between virtual environments and containers, if you’re familiar with Python.

    You write a Nix config and specify exactly which versions of which package you want to have. Reproducibility is the main selling point of Nix. Things don’t just break overnight because a dependency of a dependency of a dependency got upgraded. You can always go back to exactly what it was like before. Guaranteed. That’s pretty cool.

    Ok so you got that config, then you build and activate it, and it replaces your shell. You enter the Nix shell. You still have access to all your files and directories, but your Nix config controls exactly which versions of your tools you have. gcc, npm, python, maven, whatever you use.

    You can see why this makes people want to build an immutable OS.

    The main drawback of Nix is that it has a bit of a learning curve. Hence why I haven’t started yet. Maybe it’s time though.



  • Exactly! If you only have to edit small text files on a server once in a blue moon, nano is much less biomemory-heavy. But if you regularly write docs and code in l vim or neovim, it starts to pay off after a week or two.

    I really enjoyed learning to quickly select and change entire words or lines, doing things like: :%s/replace_this_text/with_that/g Etc. If you enjoy that, you will soon get to a point where you miss the motions in your regular editor and install a vim extension in VS Code and stuff, just before fully switching to neovim