Hi!

My previous/alt account is yetAnotherUser@feddit.de which will be abandoned soon.

  • 0 Posts
  • 315 Comments
Joined 2 years ago
cake
Cake day: June 1st, 2024

help-circle
  • Changing the TOS is explicitly allowed. You can refuse to accept the changes but then the company has the right to end their relationship with you (i.e. terminate your account).

    There are also strict limits. Something like: “Your account may be terminated for any unspecified reason” is illegal, I’m pretty sure.

    And the recent DSA of the EU has further limited social media company’s rights to terminate accounts. I believe they must provide a way to fight terminations and listen to your arguments. Other countries may have similar laws but I cannot speak for them.

    Banning clickthrough contracts would genuinely break large parts of the internet though. No more online purchases for one, including anything from Steam to Amazon.


  • It’s much more complicated than that. Social media platforms have a TOS that binds them just as much as the user. It’s literally just a contract.

    The social media company also has much more limited rights to terminate such a contract than the user. At least that’s the case in countries with any consumer protection.

    That’s how YouTubers at least in Germany have successfully forced YouTube to reinstate their channel. YouTube failed to prove a violation of their TOS, therefore the contract termination was null and void, therefore the contract is still valid.

    There is no contract when you have entered a restaurant. After you ordered your food, there is a contract and you cannot be kicked out for arbitrary reasons anymore. If you are kicked out for no reason, you can sue for damages (but you cannot force the restaurant to enter any new contracts with you, e.g. another meal).






  • True. I should’ve added: “Without significant foreign support”.

    Like no shit, if neighboring countries provides weapons, training and even manpower then it’s hardly considered an uprising, is it? More like a proxy war.

    That covers Vietnam, Cambodia and Syria. The latter was literally just a gigantic proxy war. Like look at this shit, this is not a popular uprising:

    Don’t know enough about Iraq, but in Afghanistan the military did jack shit against the Taliban and in Myanmar the military was the one rebelling.

    Every single uprising hinged on:

    • Who is supported by the country’s own military?
    • Who is supported by foreign nation’s militaries and to which extent?

    None of them depended on the popular opinion of civilians.










  • I meant the old .exe would check the signatures before initializing the official Windows way to update. Effectively have this run whenever you start the application:

    main() {
        if (update_available()) {
            exe_path = download_update()
            if (signature(exe_path) == SIGNATURE) {
                install_update(exe_path)
                restart()
            } else {
                put_up_a_warning_or_something()
                delete(exe_path)
            }
        }
    # Rest of the application
    # ...
    }
    

    The only thing I have no idea how to implement would be the install_update(path) function. But surely this is one way to install updates without signatures recognized by Microsoft, right?

    And if for some reason you aren’t allowed to sign the .exe because this breaks something, then place an unsigned .exe in a signed zip folder.