• 0 Posts
  • 15 Comments
Joined 1 year ago
cake
Cake day: June 3rd, 2023

help-circle








  • Probably can’t be libel if they don’t make it public, just stuff that happens behind closed doors and they can say “no comment”. Would be different if Reddit had a public modlog like Lemmy.

    My guess is, after 10 years without a problem, someone around 2 years ago might have marked me for takedown for whatever reason. I always tried to be respectful, but didn’t start self-censoring until they suspended me for “violent content” without even referencing what was the supposed content. I kind of hoped that using Power Delete Suite to blank the account history, and avoiding most polemic topics from then onwards, would keep it safe, but apparently not.

    Ironically, an alt account I created to participate in more polemic topics, got zero problems… but they now banned it along the main one, so bye Reddit, so long and thanks for all the fish.






  • Xorg, or X11, “used to” do the “minimum necessary” for a remote display system… in the 80s. Graphics tech has changed A LOT in the last 40 years, with most of the stuff getting offloaded to GPUs, so the whole X11 protocol became more and more bloated as it kept getting new and optional features without dropping backwards compatibility.

    The point against Wayland, was dropping support for remote displays, while kind of having an existential crysis for several years during which it didn’t know what it wanted to become. Hopefully that’s clear now.

    OpenRC and runit are indeed working alternatives, but OpenRC is kind of a hack over init.rd, while runit relies a bit too much on storing all its status in the filesystem. Systemd has a cleaner approach and a more flexible service configuration.


  • “do one thing well”

    Arguably, Systemd does exactly that: orchestrate the parallel starting of services, and do it well.

    The problem with init.d and sys.v is they were not designed for multi-core systems where multiple services can start at once, and had no concept of which service depended on which, other than a lineal “this before that”. Over the years, they got extended with very dirty hacks and tons of support functions that were not consistent between distributions, and still barely functional.

    Systemd cleaned all of that up, added parallel starting taking into account service dependencies, which meant adding an enhanced journaling system to pull status responses from multiple services at once, same for pulling device updates, and security and isolation configs.

    It’s really the minimum that can be done (well) for a parallel start system.