[-] MutatedBass@beehaw.org 1 points 6 hours ago

I'm using a Thrustmaster Eswap X Pro. The joystick and dpad modules are hot swappable and can be put in any orientation you prefer. They sell replacement joystick modules for $20, which is nice because you don't have to replace the whole controller if one gets stick drift.

[-] MutatedBass@beehaw.org 6 points 5 months ago

Sounds better than my current setup. I have Swiss on a SD card plugged in with a memory card adapter, my roms on a micro SD card in the serial port using an SD2SP2. To boot into Swiss I have to use an Action Replay disc. It works but it's a pain.

[-] MutatedBass@beehaw.org 21 points 8 months ago

I watched the whole video trying to keep an open mind, but what they showed off just looks so generic. Quick time events, very basic looking fps mechanics, flight looks like War Thunder arcade battles. At least the gfx and animations looked pretty cool, although imo this is the least important factor of a good video game. Will probably be a skip for me, if it ever releases that is.

[-] MutatedBass@beehaw.org 23 points 8 months ago

Smells like lobbyists in here.

[-] MutatedBass@beehaw.org 5 points 9 months ago* (last edited 9 months ago)

I pronounce it "say-tuh"

[-] MutatedBass@beehaw.org 11 points 9 months ago* (last edited 9 months ago)

Glad to finally see translation without the need for an extension. I need to translate pages semi regularly but I try not to install many extensions to avoid fingerprinting.

[-] MutatedBass@beehaw.org 10 points 9 months ago

If I owned an EV I would be too worried about battery degradation caused by the extra charge cycles to participate in anything like this.

[-] MutatedBass@beehaw.org 4 points 9 months ago

Here's a script from GPT4:

#!/bin/bash

# Create a temporary file for storing file checksums
tempfile=$(mktemp)

# Generate MD5 checksums for all files in the current directory and its sub-directories
find . -type f -exec md5sum '{}' \; | sort > $tempfile

# Detect and delete duplicates
awk 'BEGIN {
    lasthash = "";
    lastfile = "";
}
{
    if ($1 == lasthash) {
        print "Deleting duplicate file: " $2;
        system("rm -f \""$2"\"");
    } else {
        lasthash = $1;
        lastfile = $2;
    }
}' $tempfile

# Clean up
rm -f $tempfile

This script can be run with Termux from the root of your internal storage. Usually /sdcard or /storage/emulated/0. Do not confuse this with running from root if you are rooted.

Before using a script that interacts with your files you should backup anything that is important just in case.

Furthermore, if you comment out:

system("rm -f \""$2"\"");

By adding a # in front of it like this:

# system("rm -f \""$2"\"");

You can run the script and see what files the script would delete without actually deleting them. I would recommend doing this as I have not tested this script.

[-] MutatedBass@beehaw.org 3 points 9 months ago

It isn't open source, though.

[-] MutatedBass@beehaw.org 12 points 10 months ago* (last edited 10 months ago)

I hope most developers stay away from Denuvo on Switch. Devs already have to squeeze the thing for every fps they can get out of it, it really doesn't need anything else bogging it down.

[-] MutatedBass@beehaw.org 21 points 11 months ago

Wow! A port of a 13 year old game will soon run on 10 year old hardware? Keep on innovating R*!

view more: next ›

MutatedBass

joined 1 year ago