• 1 Post
  • 36 Comments
Joined 1 year ago
cake
Cake day: July 6th, 2023

help-circle

  • You were never actually able to buy a game, it has always been a “license” to play it. Even for physical cartridges and disks. The difference being, legally speaking, if you actually owned it, you could make and sell copies of it or take the assets from the game and make a new game with them and then sell that. Owning a license means you can play it, but cant make copies or reuse the assets.

    Even with physical media, that license could in theory be taken away if the rights holder chose too. Realistically it would be impossible to enforce since there is no way of tracking down all the physical copies, so no one has ever tried to do it. But legally it works exactly the same as on steam. The only change is that a new california law is going to require steam, and other stores, to be transparent about it, but nothing is actually different.

    Even on GOG, where they give you a DRM free binary, if the rights holder doesnt want it available anymore, they have to take it away. You wouldn’t be able to download it and if you had saved a copy of the DRM free binary, playing it would legally be the same as piracy at that point.

    Despite all of this, game preservation is alive and well and isn’t going anywhere.




  • AWS has multiple teirs of storage options in s3, some replicate and some dont. by default those that do replicate do so in multiple availability zones, but not across regions. unless you turn on cross-region replication (CRR) which is an additional charge.

    So, for example without CRR if your bucket is in us-east-1 and 1 availability zone goes down you can still access the data, but if all of us-east-1 is down, you cannot.








  • There is one extra step. I have an 6700xt, and with the docker containers, you just have to pass the environment variable HSA_OVERRIDE_GFX_VERSION=10.3.0 to allow that card to work. For cards other than 6000 series, you would need to look up the version to pass for your generation.

    Here’s an example compose file that I use for ollama that runs ai models on my 6700xt.

    version: '3'
    services:
      ollama:
        image: ollama/ollama:rocm
        container_name: ollama
        devices:
          - /dev/kfd:/dev/kfd
          - /dev/dri:/dev/dri
        group_add:
          - video
        ports:
          - "11434:11434"
        environment:
          - HSA_OVERRIDE_GFX_VERSION=10.3.0
        volumes:
          - ollama_data:/root/.ollama
    
    volumes:
      ollama_data:
    





  • What are you even talking about? systemd is currently under an opensource license, they cant retroactively change that. Any changes would be for it going forward if it is even possible for them to buy the rights to it (which I’m not convinced it is as Lennart Poettering is not the sole contributor and Red Hat / IBM and many others also have a significant stake in it). Sun patented Java on it upon its creation and when oracle bought sun, they bought the rights to those patents. They aren’t comparable situations. Java was never open source, it was source available, but still proprietary.



  • That is my point, they have tried and failed completely before when their main product was windows licenses. Now, linux is incredibly important to their azure business, they wouldn’t want to potentially cause detriment to that and is far more important to them than windows licenses.

    Also why would we have to rip out systemd, even if they tried to claim ownership of it and make it proprietary, it could be forked from before the license change and we would keep on going like nothing happened.