• 2 Posts
  • 7 Comments
Joined 1 year ago
cake
Cake day: September 29th, 2023

help-circle


  • I’m not a kernel dev, but I’ve read often enough that there are some places where “everything is a file” somewhat breaks down on Unix. (I think /proc and some /dev)

    For an “absolutely everything is a file” system have a look at plan9, it was the intended successor to Unix, but then that got popular while plan9 stayed a research project.





  • exu@feditown.comtoProgrammer Humor@lemmy.mlDeployments
    link
    fedilink
    English
    arrow-up
    11
    ·
    12 days ago

    I’d probably prefer a bash script that’s called from your CI/CD if done properly, just because I could run the same tests locally with that script. That makes the feedback loop much faster and also allows stuff like auto formatting.

    Yes, you can do git hooks, but then you have to keep it in sync with your CI/CD all the time.