• CrabAndBroom@lemmy.ml
    link
    fedilink
    arrow-up
    1
    ·
    1 year ago

    Currently the Steam Deck. Between having (most of) my whole Steam Library availble, being able to run EGS/GOG via Heroic Launcher and all the emulators available, it’s like having my entire gamining history all in one machine.

    Plus in Desktop Mode it’s pretty much a full-on desktop Linux PC as well.

  • thelastknowngod@lemm.ee
    link
    fedilink
    arrow-up
    0
    ·
    1 year ago

    Over the last couple years, kubernetes. It completely changed the game and the ecosystem growing up around it is both exciting and refreshing compared with the old way of managing servers.

    • Nat@apollo.town
      link
      fedilink
      arrow-up
      0
      ·
      1 year ago

      I’ve been surprised not to see this with any of the fediverse platforms I’ve browsed. Instead, they’re all using Docker Compose. Any idea why that is?

      • deejay4am@lemmy.world
        link
        fedilink
        arrow-up
        0
        arrow-down
        4
        ·
        1 year ago

        k8s have a steep learning curve comparatively. With Docker you just install the Docker package and it’s off to the races. With k8s you need to know basically how Docker works, know how the layers it adds on top work, and define everything using YAML config files to get things up and running. The networking is complicated (but flexible), the storage isn’t straightforward (it’s designed to work with large-scale solutions like S3 or Ceph, so setting it up even for local “folder” storage requires more moving parts). Even bootstrapping a new installation requires many steps to install all the pieces you need.

        Don’t get me wrong it’s awesome, but if you don’t already know it, it doesn’t have many advantages for small installations over Docker which is very much “run docker-compose on this file you downloaded and the thing you want sets itself up”.

        While there are tools like Helm or Portainer to assist you, you still have to understand it to make it work.