[-] humanoidchaos@lemmy.cif.su 1 points 1 hour ago

They're better than most.

I'd trust them more than CNN or Fox.

[-] humanoidchaos@lemmy.cif.su 1 points 1 hour ago

"Everything Hideo Kojima," do you mean Metal Gear Solid 5 and Death Stranding?

I find it hard to believe they you've played his other games and still have this opinion. It's much more believable that you're kind of young and only played what was released when you were around.

[-] humanoidchaos@lemmy.cif.su 1 points 1 hour ago

It seems like more reddit indie shit. It would make sense there are people who can't comprehend how others wouldn't like it.

Reddit is a bubble.

[-] humanoidchaos@lemmy.cif.su 1 points 1 hour ago

Halo was one of the few decent games xbox fans had to themselves.

Most of the top-tier developers made sure to release on PS2.

[-] humanoidchaos@lemmy.cif.su 1 points 1 hour ago

I honestly couldn't imagine beating 3 final fantasies.

The only one I've ever finished was Dirge of Cerberus.

[-] humanoidchaos@lemmy.cif.su 1 points 1 hour ago

If you don't like any of those, odds are you won't like Morrowind either.

Bethesda has been making the same game since Daggerfall. It's not for everyone.

[-] humanoidchaos@lemmy.cif.su 1 points 1 hour ago

I get super bored after a few hours

You would've beaten another game in that period of time.

[-] humanoidchaos@lemmy.cif.su 1 points 1 hour ago

If it's a son, then probably not.

[-] humanoidchaos@lemmy.cif.su 2 points 3 days ago* (last edited 3 days ago)

No problem.

The hardest part is getting a controller working. I'm not sure what OS you have, but getting a bluetooth controller working properly on Linux can be hit or miss. If you're on Windows with a USB controller or one with a dongle, it should be much easier. I'm sorry I can't give direct advice because it will depend on your setup.

Otherwise, just download emulators for the consoles you want, download the games for free at vimm.net, then you're off to the races. You may have to change some settings, but it shouldn't be too difficult if you're willing to look at them and experiment a bit as needed.

You can download the MEGAsync program and go through the process of syncing the folders that hold game saves to an online backup. It's pretty intuitive to follow the program. You will need to look up where each emulator holds its save data though, because it's not really standardized.

To get you started, these are some emulators that I recommend with large libraries and stable support:

-PCSX2 for PS2

-Dolphin for Gamecube

-Torzu for Switch

-mGBA for Gameboy Advance

-Duckstation for PS1

-PPSSPP for PSP

There are of course others for different consoles, and even multiple emulators for the same console. Don't get too hung up on doing things perfectly the first time. Try to get some experience and you'll see what works for you and what doesn't.

Start small and work your way up.

[-] humanoidchaos@lemmy.cif.su 5 points 3 days ago

Maybe it's just me, but it doesn't even look like America needs an excuse to use its military budget.

To me, it looks like Americans have been dumping money into their military because of cultural reasons. Fear, but also a sense of superiority and "America should be the best in everything."

Looking at the near $1 trillion American yearly military budget and how many conflicts the military actually engages in, and we can see how much a return Americans are getting on their investment.

[-] humanoidchaos@lemmy.cif.su 5 points 3 days ago

I'm not a developer, but I'm guessing a good start would be to try installing it on an old phone if you have one.

See what problems you come across, try to learn what's going on, share your knowledge with others.

[-] humanoidchaos@lemmy.cif.su 2 points 3 days ago

I think I've solved the problem of computer gaming.

It's emulating on a gaming laptop with save data automatically backed up to MEGA.

1
How to selfhost with a VPN (95.181.238.34:40152)
submitted 5 days ago* (last edited 10 hours ago) by humanoidchaos@lemmy.cif.su to c/selfhosted@lemmy.world

These are some quick n' dirty instructions so people can get up and running fast.

I wish I had known this was possible sooner.

Instructions:

Check that your VPN supports port forwarding and you have it enabled.

Grab your VPN's internal IP with ip a

Find the interface for your VPN. For me it's called tun0.

Open up /etc/nginx/nginx.conf

You can back it up, or comment everything out, or pick what's necessary. Here's what my file looks like.

	worker_processes  1;
	include modules.d/*.conf;

	events {
		worker_connections  1024;
	}
	http {
		server {
			listen [VPN INTERNAL IP]:[VPN FORWARDED PORT];
			server_name  localhost;
			location / {
				root '[ABSOLUTE PATH TO YOUR WEBSITE ROOT FOLDER]';
				index index.html; # Relative to your website root.
			}
		}
	}

Make sure your permissions are correct. For me, the 'other' group needs read permissions to the root folder, including where it's mounted.

Start nginx with systemctl start nginx

You can visit your website on your host machine in a browser at [VPN INTERNAL IP]:[VPN FORWADED PORT]. For me, using the internal IP is required to view the website on my host machine.

To view the website on other machines, you can use [VPN EXTERNAL IP]:[VPN FORWARDED PORT]. The only thing you need to change is the IP address.

I hope this works for you and you are inspired to selfhost and take back power from those who stole it from us.

2

I'm trying to add my instance to Fediseer at https://gui.fediseer.com/auth/claim-instance so it can federate.

When I try to send the message, I get an error saying: There was an api error: API Key PM failed

I'm not really sure how to diagnose something like this, but I tried sudo docker logs [ID of nginx container] and one of the entries says "POST /inbox HTTP/1.1" 400 86 "-" "Fediseer/0.25.1" after I try sending the message.

I'm assuming this has something to do with it, but I'm not sure if that's true or how to fix it even if it is.

Any help would be greatly appreciated.

6
view more: next ›

humanoidchaos

joined 1 week ago