humanoidchaos

joined 1 week ago
[–] humanoidchaos@lemmy.cif.su 1 points 12 minutes ago* (last edited 10 minutes ago)

Free streaming sites aren't building empires by ripping off useful idiots. They simply make less money.

So why do you think they set all of that up for you to freely stream torrents? What is in it for them?

This is part of your conditioning to be skeptical of whenever you see a better deal. Rather than admitting that you've been taken for a ride, you get angry at everyone else who has higher standards.

Keep wasting your money on things you could be getting for free while not thinking you're a tool. It's the consumerist way.

[–] humanoidchaos@lemmy.cif.su 0 points 4 hours ago

Ignorance is bliss, I tell ya h'wat.

[–] humanoidchaos@lemmy.cif.su 1 points 5 hours ago

Tell them to use a free streaming site. Here's one of the best: https://hydrahd.io/

Stop working harder for the businesses taking your money.

[–] humanoidchaos@lemmy.cif.su 0 points 5 hours ago (4 children)

Free streaming sites are awful.

No they aren't, lol. But whatever floats your boat.

I'll be over here enjoying more things for a cheaper price and helping others do the same.

[–] humanoidchaos@lemmy.cif.su 2 points 6 hours ago* (last edited 6 hours ago)

Not just the poors, but it's usually the meatheads that get sent to war. On both sides, you'll find some of the most deplorable people are the most entrenched in war culture. They don't value their lives and see themselves as having no better options.

I hope one day we understand some of the philosophy behind war, and whether or not it's necessary when there are "too many soldiers."

[–] humanoidchaos@lemmy.cif.su 0 points 6 hours ago (1 children)

We've already seen mercenaries from the West get killed by Russians.

You believe a lot of bullshit.

[–] humanoidchaos@lemmy.cif.su 1 points 6 hours ago (6 children)

Instead of using those, you could be using a free streaming site. You'll get more content and it's easier to set up.

Just type in the URL, and search for what you want.

Here's one of the best sites I've found: https://hydrahd.io/ I guarantee they have significantly more offerings than either apple tv or your plex.

[–] humanoidchaos@lemmy.cif.su 1 points 6 hours ago

They're better than most.

I'd trust them more than CNN or Fox.

[–] humanoidchaos@lemmy.cif.su 4 points 6 hours ago* (last edited 6 hours ago)

Just don't do that? The same argument could be made for their phones.

I think you're talking out of your ass.

[–] humanoidchaos@lemmy.cif.su 1 points 6 hours ago* (last edited 9 minutes ago)

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

I find it hard to believe that 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 6 hours 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 6 hours 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.

85
How to selfhost with a VPN (95.181.238.34:40152)
submitted 5 days ago* (last edited 15 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.

 

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.

view more: next ›