• 44 Posts
  • 356 Comments
Joined 3 years ago
cake
Cake day: June 16th, 2023

help-circle


  • Skywind: Playing the plot of Morrowind in the Skyrim engine. Game mechanics, spells, skills, models, textures, and bugs are all going to be similar to what you have in Skyrim, give or take some modding.

    OpenMW: Playing Morrowind in an open source, crossplatform game engine. You are playing the exact same game as TES III (gameplay mechanics, spells, models, textures, etc are 1:1 identical in a vanilla install) but the code behind it is less buggy, more moddable, and it provides many modern quality-of-life improvements that the original engine couldn’t do.


  • Can I leave all my drives connected, plug in a seperate SSD through USB, boot into Nobara live and install on that drive without it affecting my mint install?

    Yes. Just double-check every part of the install process so you don’t write to the wrong device.

    Also, if I do that will it put the EFI file on the seperate SSD?

    Probably yes (depends on the options you pick during the install process). The external drive will get its own boot partition with appropriate EFI files. Then to boot from it, you would select the external drive in your UEFI.

    I use rEFInd as my EFI bootloader: It lets me chain load other boot options (external drives) without touching my motherboard UEFI settings. I leave it installed to my main boot partition, but it scans for other bootable partitions at startup. Then it auto-populates a selector list of my main install, or whatever other external devices are plugged in. It can chain load GRUB, other EFI bootloaders, Windows, etc from these devices, so you don’t have to worry about compatibility with whatever bootloader the OS expects to use.



  • Me!!!

    But I’m actually safe: Last month I fried half of my BTRFS array, and decided that instead of recovering the system, I’d rather copy over the relevant data and reinstall Arch from scratch. In doing so, I’ve shed the majority of AUR packages that my old system had. Of the handful of AUR packages on my new system, none were attacked.




  • It seems like the problem you ran into began when EJB left the table and began to act separately from the game.

    Personally, I would never let players create a character who is a 1:1 match for a person in the real world. Now you have that player “my guy’ing” about real world events instead of letting the story and other characters impact what they would do. At that point, why don’t we just read that real person’s biography or journal or whatever and skip the game entirely?

    Another complication: would this 1:1 IRL person even be comfortable with being in the game at all? If my friends told me they were playing a game and I was a character, I’d ask them to stop. My question, as someone who is not at all familiar with headmates: Why would T/EJB want to be in the game at all, with someone else controlling them? And if T/EJB plays herself, then she’s already getting ejected from my game for misogyny.

    I’ve never had to deal with a case where the 1:1 real world person came to exist because of the game, but I probably would ask the player to create a new character at that point. I understand the argument that off-table events can be considered fan fiction, but when there’s a feedback cycle between play and real-life, I don’t think such events can be easily separated.







  • Vivado is software for designing hardware on an FPGA. AMD bought out Xilinx, one of the big FPGA manufacturers, a few years back. FPGAs are basically programmable digital circuits: you configure a series of internal logic gates to represent the function of a circuit with memory, data busses, registers, gates, etc. In this fashion, an FPGA could be programmed to function like a CPU, a radio, a video encoder, or nearly any other piece of digital hardware. Very useful for hobbyists and prototyping.

    The thing with FPGA software is that there are no open source alternatives. FPGAs have so many complicated blobs and signing keys and proprietary IP blocks that your only choice is to use the manufacturer’s offering.



  • Based on your systemd output, it looks like the system is taking a long while to decrypt your drive. Is it a spinning disk, or an SSD?

    I’m not sure if the PC repair shop specifically checked your drive, but it might be worth swapping out for another. Or maybe run some speed tests and/or diagnostics to see if there’s something funky going on.

    You could also try an unencrypted install to see if the problem persists.



  • I set up a very straightforward Godot dev environment yesterday using toolbox which is built on top of rootless Podman.

    • Create a new fedora toolbox
    • Enter toolbox
    • Install DotNet dependencies, git, etc with dnf
    • Install Godot binary from release page
    • Turns out there were other dependencies I needed
    • Godot wanted a few Wayland libs on the container, so I installed Weston (maybe overkill)
    • Godot wanted libxrandr so I added that too
    • Godot just works ™

    The nice thing about toolbox is that it uses my native host Wayland compositor. So whatever I have running in the toolbox can be interacted normally through sway (my host WM).

    You can either distribute a container image with your given toolbox configured, or just document the setup steps.