• 0 Posts
  • 5 Comments
Joined 2 years ago
cake
Cake day: July 8th, 2023

help-circle
  • I have a couple of suggestions to add:

    I was considering leaving the other site before the API fiasco because it felt like so many users approach engagement as rhetorical combat, that is, the point of discussion is to defeat the other person. Instead, think one of Covey’s habits of highly-effective people: “Win-win, or no deal.” Approach discussion on the Fediverse as a collaborative act, in which you’re exchanging ideas with another person. Even if you disagree, you can both win by respectfully hearing out the other person. And if the other person won’t collaborate? No deal! Just disengage.

    Just like in intimate relationship, use “I” statements instead of “you” statements. Telling people who they are and what they believe is not only disrespectful, but probably wrong, often exaggerated or distorted for rhetorical combat purposes. People get angry when their identity gets poked at. One exception, of course, is when giving advice, like, stick to what you know, and share your thoughts and your reactions to a topic.




  • Both the real President and the fake President have a long history of reneging on deals, and not paying up. DGE seized the Treasury’s payment system, so they could remove money from the people’s bank accounts. The tariffs have a good chance of plunging the U.S. into recession, and $1 million really isn’t that much compensation for taking on the risk, especially if inflation gets going in earnest. They’d be on the wrong side of trade barriers with the economic bloc that’s geographically easier to trade with. Would this regime bail them out?

    In short, trustworthiness matters.


  • One that Linux should’ve had 30 years ago is a standard, fully-featured dynamic library system. Its shared libraries are more akin to static libraries, just linked at runtime by ld.so instead of ld. That means that executables are tied to particular versions of shared libraries, and all of them must be present for the executable to load, leading to the dependecy hell that package managers were developed, in part, to address. The dynamically-loaded libraries that exist are generally non-standard plug-in systems.

    A proper dynamic library system (like in Darwin) would allow libraries to declare what API level they’re backwards-compatible with, so new versions don’t necessarily break old executables. (It would ensure ABI compatibility, of course.) It would also allow processes to start running even if libraries declared by the program as optional weren’t present, allowing programs to drop certain features gracefully, so we wouldn’t need different executable versions of the same programs with different library support compiled in. If it were standard, compilers could more easily provide integrated language support for the system, too.

    Dependency hell was one of the main obstacles to packaging Linux applications for years, until Flatpak, Snap, etc. came along to brute-force away the issue by just piling everything the application needs into a giant blob.