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

help-circle
  • 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



  • Good point. I guess you’re right, there are no flattering roles. But each of those options you list would have been less on top of existing prejudices.

    Making her the (non-technical) project manager whose only contribution is “how many story points is that?”, who’s then silenced because “this is important!”, confirms the typical prejudices about women in tech:

    • no technical expertise
    • is not in charge
    • does not have anything to say that is worth listening to in times of crisis

    Especially being talked over. This matches many women’s experiences in men-dominated environments to a T.

    I’d much rather the technically competent, important but socially weird engineer (Jared) be the woman, or the incompetent boss, who’s in charge and calls the shots. Even having no women in the skit would be better than this Cindy role.

    Or, weird idea I know, multiple people with different roles being women. 🙄





  • 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.


  • Makes sense. Mono was necessary in the “old .NET” world, where runtimes were tied to Windows versions and the framework was a pure Windows framework. Mono made it possible to run old dotNET framework versions (up to 4.8) on other OSes.

    Since dotNET Core and then dotNET 5 and higher, the framework itself is cross-platform so Mono is not necessary anymore, except for backwards compatibility for apps that use a now unsupported framework.

    So it makes sense that Microsoft, after dropping the old dotNET Framework versions, also wants to stop supporting the cross-platform library that was only needed for those old versions.











  • F04118F@feddit.nltoLinux@lemmy.mlHow bad is Ubuntu?
    link
    fedilink
    arrow-up
    4
    arrow-down
    1
    ·
    edit-2
    2 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.