• 0 posts
  • 20 comments
Joined 3 years ago
Cake day: June 13th, 2023
  • While DRM is the bane of everybody there are cases where trust and integrity is important and it’s an intriguing look into how hard it is to manage.

    Nah, when the user wants to ensure trust and integrity in his own system, it works just fine. The problem comes when the user who needs to be able to access the data is simultaneously the adversary who needs to be stopped from accessing the data.

    In other words, it’s one of those situations where the fact that it’s hard to manage is a gigantic clue that it’s wrongheaded to try to do so in the first place.

  • Trust me, you don’t want to be trying to maintain legacy Jython code at this point, let alone use it for anything new. All the “normal” Python infrastructure like Pip etc. has moved on and broken compatibility, so you’d have to find and maintain locally the last working compatible version of every single package you use. I suppose you could use Java libraries, but the impedance mismatch trying to use LBYL explicitly typed stuff in EAFP python is terrible. It’s just a horrible mess.

  • You can still view the source code. That’s what open source is.

    No, it’s not. It only counts if it provides the four freedoms listed here:

    • The freedom to run the program as you wish, for any purpose (freedom 0).
    • The freedom to study how the program works, and change it so it does your computing as you wish (freedom 1). Access to the source code is a precondition for this.
    • The freedom to redistribute copies so you can help others (freedom 2).
    • The freedom to distribute copies of your modified versions to others (freedom 3). By doing this you can give the whole community a chance to benefit from your changes. Access to the source code is a precondition for this.

    And before you say “but that’s the definition of ‘Free Software’, not ‘Open Source’,” even the latter, misguided as it is, at least still requires freedom 0!

  • WARNING: The following essential packages will be removed. This should NOT be done unless you know exactly what you are doing!

    You are about to do something potentially harmful. To continue type in the phrase ‘Yes, do as I say!’

    User: gleefully types in the phrase

  • You’re “downloading an app” anyway, even if it’s JavaScript running in a browser. How do you think the client-side code gets to the client‽

    But yes, I think we need a new version of something like Java Web Start, except with the ability to steam parts of itself as-needed instead of having to download the entire .jar before being able to run. If you’re going to have an app, have an app that has proper libraries for the UI etc. instead of hacking everything on top of a whole bunch of DOM cruft!

    I guess WebAssembly is a step in the right direction, but it’s still too tied to the document viewer known as a “web browser,” for no good reason.