I take my shitposts very seriously.

  • 4 Posts
  • 270 Comments
Joined 2 years ago
cake
Cake day: June 24th, 2023

help-circle


  • rtxn@lemmy.worldMtolinuxmemes@lemmy.worldWhats his problem?
    link
    fedilink
    arrow-up
    53
    arrow-down
    3
    ·
    2 days ago
    • The 30% percent cut, stealing money from devs

    Sigh. Here we go again. I’ll just copy one of my older comments about that attitude.


    Steam is not a parasitic middle man, it is a collection of services that would have to be provisioned and operated by the developer otherwise. The 30% cut pays for:

    • A massive infrastructure to store and deliver the game and its updates, worldwide, and at an acceptable bandwidth that Valve operates
    • A storefront that enables monetizing the game
    • The audience and discoverability that would not exist otherwise
    • The Steam API, achievements, cloud saves
    • The client itself, content management, validation, and Linux compatibility tools
    • Network and operational security
    • Also keep in mind that Steam and its services are operated by experts. A game developer would have to hire the experts or get training.

    If the revenue from the cut exceeds the operational costs: it’s called profitability, not theft. The world doesn’t run on good vibes.


  • My compose.yaml inside...
    volumes:
      db:
    
    services:
      db:
        image: mariadb:10.6
        restart: always
        command: --transaction-isolation=READ-COMMITTED --log-bin=binlog --binlog-format=ROW
        volumes:
          - db:/var/lib/mysql
        secrets:
          - mysql_root_password
          - mysql_nextcloud_password
        environment:
          - MYSQL_ROOT_PASSWORD_FILE=/run/secrets/mysql_root_password
          - MYSQL_PASSWORD_FILE=/run/secrets/mysql_nextcloud_password
          - MYSQL_DATABASE=
          - MYSQL_USER=
    
      nextcloud:
        image: nextcloud
        restart: always
        ports:
          - 8080:80
        depends_on:
          - db
        links:
          - db
        volumes:
          - /var/www/html:/var/www/html
          - /srv/data:/srv/data
        secrets:
          - mysql_nextcloud_password
        environment:
          - MYSQL_PASSWORD_FILE=/run/secrets/mysql_nextcloud_password
          - MYSQL_DATABASE=
          - MYSQL_USER=
          - MYSQL_HOST=db
    
    secrets:
      mysql_root_password:
        file: ...
      mysql_nextcloud_password:
        file: ...
    

    If you use the links: element in the nextcloud service, the services listed there will be available using their hostnames. On the Nextcloud setup screen, choose mysql as the database engine, use db as the database host, and enter matching values into the other fields.


  • Did you completely miss the part where I said “Not the solution, and not a possible solution for everyone, but it is a solution”? I don’t know what you think the usual troubleshooting process is, but it doesn’t start with “uninstall Windows”. Obviously the user was sufficiently intelligent to consider the advantages and disadvantages of switching, and based on that information, chose a course of action that they thought was correct, and it ended up being the solution to their issue.

    I don’t know how else I can spell it out for you. Computer users are not dumbasses. They have agency over their own actions.




  • Not within the computer’s lifetime. Consumer-grade SSDs are generally rated for 3000-5000 write cycles or more, and contain some kind of wear levelling mechanism to distribute write operations over the entire physical medium to reduce the chance of individual block failures. The first SSD I ever bought is still going strong as my server’s root filesystem.





  • rtxn@lemmy.worldMtolinuxmemes@lemmy.worldI love systemd
    link
    fedilink
    arrow-up
    39
    arrow-down
    1
    ·
    22 days ago

    I’m pretty sure their arguments boil down to “big company bad” as systemd is developed by Red Hat. Putting a single entity’s products in charge of several basic functions of the computer (like booting, init, daemons, networking) is seen as a bad idea, especially Red Hat which disgraced itself by making the RHEL source code available only to customers (which does not violate the license), but so far I don’t know of any solid evidence of security holes caused by either incompetence or malice.



  • If you have a specific purpose in mind for the drive, then mounting it statically is probably the easiest solution.

    My setup is:

    • 2 TB NVMe
      • 200 GB partition at /
      • The rest (~1.8 TB) mounted at /games
    • 1 TB SATA SSD mounted at /home
    • 3 TB HDD mounted at /hdd

    /mnt and /media are used differently based on the OS. /mnt is supposed to be used for temporary manual mounts, but you can use it (or a subdirectory) as a permanent mount point. /media is meant to contain mount points for dynamically mounted removable devices, but modern systems generally use /run/media/$USER for that purpose; I would personally avoid it nevertheless.


  • almost identical in topic order, format and words

    Apparently, that specific conversation was in Mandarin, and Steve was the only member of the media present who spoke Mandarin. I’m pretty sure that appending a simple “thank you Steve from Gamers Nexus for translating” would’ve been sufficient, especially since Linus wants to look like they’re such good buddies.



  • “Ty and That Guy” - Ty Franck (one of the writers of The Expanse books) and Wes Chatham (actor of Amos Burton on the show) talk about sci-fi.

    “SPINES” - supernatural fiction about an amnesiac tracking down broken people with paranormal abilities, written in an audio diary format. It gets a little gay.

    “The White Vault” - supernatural fiction about a multinational team that travels to Svalbard to recover a lost expedition and encounters a monster.



  • rtxn@lemmy.worldMtolinuxmemes@lemmy.worldTest post
    link
    fedilink
    arrow-up
    2
    ·
    edit-2
    26 days ago

    I think that link does the same as the direct link icon with the fediverse icon on Lemmy. I can’t figure out the mechanism it uses, though. The HTTP request is just empty and sh.itjust.works is displayed immediately. I expected at least a 301 redirect or a script to execute location.replace() but I can’t see anything.

    As for the image, the embed mechanism is probably different on Mastodon and doesn’t translate at the moment. (I don’t even know if they support standard Markdown let alone the Lemmy flavor)

    Let me see…

    Looks like that would be a mixed result. Still, I commend the team behind the interface for getting federation to work.