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

help-circle

  • That’s most of what we do today.

    Every web app you use right now - which is most of your day for most users - is just a dumb terminal UI hitting some API on some foreign computer.

    Plan 9 uses the file system as a way of interacting with apis. Linux took this idea directly by copying in the/proc filesystem from 9, which are not bytes on a disk but are instead the kernel presenting its running processes in the format of files and directories in your file namespace, and with which you can interact to control those processes.

    It also took this idea and created FUSE - file systems in user space - so that you can do the same thing on Linux as a user, but with not quite the same ease you have on plan 9 - and notably, fuse file systems are not naturally network file systems, and so you can’t export them as easily to the network as you can with nine machines, where it’s implicit.

    Last, Linux took the idea of per-process namespaces from 9, setting the stage for all of the docker, snap, etc. tools we use today.

    In short, a lot of nine already is mainstream because it’s been adopted by Linux. However, using plan 9 and then returning back to Linux feels like putting on bulky gloves, because Linux did not start with these concepts in mind, but bolted them on after.

    /Tinyrant


  • marzhall@lemmy.worldtoADHD memes@lemmy.dbzer0.comThe Vitamin
    link
    fedilink
    English
    arrow-up
    8
    arrow-down
    1
    ·
    1 month ago

    Grab the pills when you get a chance. The whole milk only has enough vitamin d to offset the amount used by your body to use the calcium in the milk, so it’s net zero additional vitamin d in your diet to drink fortified vitamin D milk. If you’re like me, you’ll feel a significant difference.




  • Probably the best advice I saw when I was considering getting a new one was that there are a ton of these things sitting in Goodwill stores, and they all do pretty much the same exact thing and have since the 00s - so if you’re interested in one, it’s worth just hitting up a couple Goodwill stores around you and there’s a good chance you find one. I realized after posting that my machine is 20 years old, not 14, so you’re going to have a tough time picking out a machine that won’t do the job, and you’ll be reducing how much new stuff needlessly gets made and how much goes to the landfill.

    When it came to maintenance, the bread machine kneads the dough with a pulley + a spindle in a pan that connects to a flipper, and my spindle was starting to freeze up, so I ended up using food-safe mineral oil to lubricate the spindle and I was back in business.

    Gl & good hunting! Hope you find something you enjoy.




  • It’s convenient. Can’t hurt to get used to it, for sure, in that it’s useful to not have to go through dependency hell installing things sometimes. It’s based on kernel features I don’t see Linus pulling out, so I think you’ll only see it more.

    As someone who runs nix-only at home, I mostly use its underlying tech in the form of snaps/flatpaks, though. I use docker itself at work constantly, but at home, snaps/flatpaks tend to do the “minimize thinking about dependencies and building” bit but in a workflow more convenient for desktop applications.