• 0 Posts
  • 28 Comments
Joined 2 years ago
cake
Cake day: June 26th, 2023

help-circle






  • What games are you playing and what hardware are you running?

    Linux has come a long way regarding the ability to easily play games made to run on Windows. It’s never been so easy and well performing. However, in my experience, it’s not quite “just works” yet. Yes, some Windows games will “just work,” but for now that’s still the exception to the rule in my experience.

    I use Arch btw, with a i9-9900 and an Nvidia RTX 2070. I still have to tweak settings, research what others are tweaking, I have a few hours of research and tinkering invested into stopping up close jitters in VR(still unresolved), my graphic settings have to be lower than normal for decent performance and I do not enjoy the same frames I’ve enjoyed on Windows with this same machine.

    I could probably get some better performance squeezed out of these games, but it’s going to cost me time and tinkering.

    tl;dr I don’t think we’re in “just works” territory yet, but we’re getting closer and the progress over the recent years has been amazing. I can’t wait to be rid of Windows forever.










  • CodeBlooded@programming.devtoSelfhosted@lemmy.worldWhat is Docker?
    link
    fedilink
    English
    arrow-up
    23
    ·
    edit-2
    3 months ago

    Docker enables you to create instances of an operating system running within a “container” which doesn’t access the host computer unless it is explicitly requested. This is done using a Dockerfile, which is a file that describes in detail all of the settings and parameters for said instance of the operating system. This might be packages to install ahead of time, or commands to create users, compile code, execute code, and more.

    This instance of an operating system, usually a “server,” is great because you can throw the server away at any time and rebuild it with practically zero effort. It will be just like new. There are many reasons to want to do that; who doesn’t love a fresh install with the bare necessities?

    On the surface (and the rabbit hole is deep!), Docker enables you to create an easily repeated formula for building a server so that you don’t get emotionally attached to a server.