• 0 Posts
  • 3 Comments
Joined 1 year ago
cake
Cake day: September 15th, 2024

help-circle
  • So, if you’re still for collective ownership of the means of production…

    Note that most self-described “socialists” aren’t literally suggesting we ban the ownership class, declare the value of all stocks to be $0, and force every corporation to operate as employee-owned collectives. They’re usually arguing for things like “expand our old-age health-insurance program to just cover everyone” or “make the city buses not charge a per-ride usage fee.”

    The hate against “socialism” is precisely because Karl Marx and some 20th century communists used it to mean something different, and then the right wing of United States used that label to try and smear every social program since the ban of slavery. Now we have two entirely different and incompatible meanings, and both a lot of bad-faith actors who intentionally conflate the two and a bunch of good-faith actors who aren’t even aware there’s a difference.



  • Because neither Kotlin nor JavaScript load images.

    Kotlin is a Java runtime language, whose most common use is being compiled to bytecode to run full desktop or server applications.

    JavaScript is a web browser language, whose most common use is being sent alongside HTML to augment the behavior of a web browser.

    Since Kotlin tends to operate outside of a browser sandbox, it makes sense to expose JRE features to allow memory efficient image handling.

    In contrast, JavaScript within a browser sandbox only gets images loaded by the web browser, which were already sent over the Internet and loaded in their full size.

    ( There are ways to run JavaScript outside a browser and Kotlin within, but that’s a bigger topic.)