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

help-circle

  • Anthocyanins are responsible for the color and they act as a pH indicator, changing color from bright red in acid to bright blue in basic solutions. Soil acidity could have an impact on their color at harvest, but it also really depends on how you use them. If you put them raw in a salad, they’ll probably turn quite red regardless, but it’s also quite common to find them as a purple color.


  • Also so many sites that haven’t given in to the ad content farm / have found it to not be worth it are now just putting up paywalls… which I’m okay with in principle, but in reality I can’t afford to subscribe to 20 different sites I only read occasionally

    There’s going to need to be a new model of revenue sharing somehow at some point. I wouldn’t mind paying for one subscription that gave me broad access, but the problem then is the control that gives whoever collects the money (e.g. YouTube Premium)



  • 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.