• 3 Posts
  • 40 Comments
Joined 1 year ago
cake
Cake day: August 8th, 2023

help-circle

  • I assume the “kill it” comment was a little tongue-in-cheek. On small SBCs, like a Pi, or old hardware, it could be a problem. I’ve seen people with flatpaks taking up 30GB of space, which is significant. I’m not sure how much RAM it wastes. I assume running 6 different applications that have loaded 6 different versions of Qt libraries would also use significantly more RAM than just loading the system’s shared Qt libraries once.





  • Allred came across weak, because he has the same position as Ted Cruz/Republicans on some of their worst policies (immigration and Israel), but he has to slightly “moderate” them a little to avoid turning-off base Democratic voters. This is a problem with the Democratic party as a whole, and it’s a losing strategy. Voters who strongly support Israel and being “tough on immigration” will be more swayed by the person that full-throatedly supports these position, and voters that disagree with these policies won’t be swayed by inconsequential concessions to them.





  • There’s plenty of open source projects that distribute executables (i.e. all that use compiled languages). The projects just provide checksums, ensure their builds are reproducible, or provide some other method to verify.

    In practice, you’re going to wind up in dependency hell before pypi stops hosting the package. E.g. you need to use package A and package B, but package A depends on v1 of package C, and package B depends on v2 of package C.

    And you don’t need to use pypi or pip at all. You could just download the code and directly from tbe repo, import it into your project (possibly needing to build if it has binary components). However, if it was on pypi before, then the source repo likely had all the code pip needs to install it (i.e. contains setup.py and any related files).