• 0 Posts
  • 21 Comments
Joined 1 year ago
cake
Cake day: July 1st, 2023

help-circle
  • There are absolutely very important reasons to still vote for Biden, but you can’t rely on millions of people to all do the right thing just because it’s logical. The person who’s running for office ultimately has the responsibility to ensure people want to vote for them. It’s just not really useful to blame millions of people when you know that there are statistically for sure going to be disaffected people out of those who need to be motivated. It doesn’t even matter whether most voters who would vote for Biden turn out to vote for him - they almost certainly will - because this fight is at the margins, and to win, you have to capture the irresponsible and unreliable people too.





  • How many people did the Fukushima incident actually kill? Meanwhile people are actively being killed by air pollution and climate change caused by fossil fuel energy. Nuclear energy incidents seem worse because they happen over a short period of time, but it’s just like with airplanes - plane crashes are horrific and disastrous, but statistically airplanes are massively safer than even rail and especially road transport.

    It requires good governance and adherence to safety standards and upkeep to be safe, but we’ve shown that we can reasonably do that for the most part.

    Renewables should of course be the first priority, though lithium mining is also a significant health hazard - but really when you compare everything statistically and not just by the significance of individual events, there’s no reason we shouldn’t be trying to eliminate fossil fuels by any feasible means, and that includes nuclear power.






  • Linux, if we’re counting the entire userland and typical components rather than just the kernel and its interface, definitely has worse (binary) compatibility than Windows, and potentially even Mac OS. The only saving grace is things like Flatpak which bundle the entire system tree they need with them and therefore have pretty long-lasting binary compatibility. But it’s quite normal to have to recompile some old software from scratch when some common system libraries get updated, really only core things like glibc have long-lasting binary compatibility, and you can’t even guarantee that compatible system libraries still exist even when compiling from source sometimes, because every project has a different approach to backward compatibility.

    Now, to be honest, things are much better with containerization (like flatpak/snap/docker/etc.), but that doesn’t really help you much for software that’s older than those unless someone bothers to try to figure out all of the dependencies and package them up and it still works. The only reason why it seems to be okay is that Linux distributions recompile all of the deps for you every time something changes and you get everything all at once, so you rarely see any of that all break. But if you have anything compiled from source, and you didn’t statically link the whole thing, you’ll see the problem.