I’m a computer janitor that sometimes streams trying to learn dev https://www.twitch.tv/destide

  • 48 Posts
  • 281 Comments
Joined 3 years ago
cake
Cake day: July 4th, 2023

help-circle

  • It has been Slackware based since inseption I think just because that’s what fit when it was created.Fedora particually Silverblue and in turn some of the Ublue projects have shown you can create a super stable environment for container based workloads.

    Updates are seemless and targetable a fedora backend gives them an easier switch to podman should docker not be viable in the future.

    From the article it looks like they’re focusing on Faster security updates Better hardware support through the Linux kernel There’s a clear seperation of the base os and the apps,plugins etc that Silverblue/Ublue can offer that Debian couldn’t do as easily and they’d be better off just sticking on Slackware.

















  • sudo {package-manager} remove npm nodejs sudo {package-manager} purge npm nodejs

    npm: sudo tee /usr/local/bin/npm >/dev/null <<‘EOF’ #!/bin/sh echo “npm is blocked on this system.” exit 1 EOF

    sudo chmod 755 /usr/local/bin/npm

    npx: sudo tee /usr/local/bin/npx >/dev/null <<‘EOF’ #!/bin/sh echo “npx is blocked on this system.” exit 1 EOF

    sudo chmod 755 /usr/local/bin/npx

    Might break somethings but that’s a part of boycotting something I guess.