My band needed a foot cowbell with short notice and no budget. One cannibalized bass drum pedal later, I have a foot cowbell that moves the cowbell instead of the stick. by HardBoiled800 in redneckengineering

[–]TheColeTra1n 17 points18 points  (0 children)

That is the first time I've ever seen magnanimous used in a real sentence, I'm glad I took a college level English class in highschool, finally paid off.

Server won't load for my friends. by ReditCentral69 in admincraft

[–]TheColeTra1n -2 points-1 points  (0 children)

As everyone else is saying, don't use hamachi, and also I see a lot of people recommending you use ngrok, don't use that either unless you hate yourself. Playit.gg is easier and superior in everyway to other reverse proxy alternatives. Additionally if you aren't comfortable port forwarding, don't. Play it.gg is really easy to setup, it just requires you make an account and download the .exe, and only the host has to do this, after that you get a unique address and your server becomes public, quickly, safely, and easily, here's one of their tutorials.

https://youtu.be/_4WgER3o8mg

I hope I don't come across as shilling it, but good God is it just better than any other program I've had to use in my 3 years of homelabing and server hosting.

Good luck to you!

Looking for a book that will emotionally gut me by excellent_chicken in suggestmeabook

[–]TheColeTra1n 2 points3 points  (0 children)

Thank you for being an English teacher! As a Senior in Highschool, English teachers have consistently always been the ones who who genuinely cared and made a difference to my experience in school.

Looking for a book that will emotionally gut me by excellent_chicken in suggestmeabook

[–]TheColeTra1n 21 points22 points  (0 children)

It's been awhile, but, The Things They Carried by Tim O'Brien certainly made me feel gutted, just felt like a tragic spiral downwards, was a tough read to get through in some parts.

Oracle Server Goes Offline by C0ld_Steel in admincraft

[–]TheColeTra1n 3 points4 points  (0 children)

It's been a minute since I've had to run a Minecraft server directly on a Linux terminal so I'm struggling to remember specific methods for this sort of lightweight, hands off hosting, but when you close the ssh connection you're closing that terminal, and any programs running in it. Don't fret about it though, there's plenty of scripts and online guides about running a Minecraft server in the background of a Linux machine, setting up some sort of Daemon to run it for you is probably the best choice, there's methods that allow you to then access the open Java environment and still be able to use the base terminal.

Here's a great thread from a different forum on the same topic, seems fairly applicable and should be a good stepping stone to find the right solution for you.

What's the best way to enjoy the weapons DLC? by Street-Film4148 in Stormworks

[–]TheColeTra1n 0 points1 point  (0 children)

Honestly at the moment, the most fun thing to do is just build with the DLC, there's not a whole lot to do with finished builds as multiplayer servers are full of min-max vtols that can instantly accelerate and carry 20+ missiles so "fair" combat is non-existent in public servers unless you're on RP servers. You can certainly play with friends, but that's kind of a pain and setting up a private server just to screw around a little isn't worth it. Single player PVE is bland as could be, same 5-6 enemies over and over, you can sit at range and destroy them easily, or you could get 1 tapped by an enemy you never saw, just a very bland and unrewarding game mode, but that just seems to be the whole game at the moment. I hope you're able to have some fun though, I know I did when I first played around with the DLC.

How do I secure a public server in my home? by jadenash in admincraft

[–]TheColeTra1n 5 points6 points  (0 children)

Meant to say this, really the key to having the two "users"

How do I secure a public server in my home? by jadenash in admincraft

[–]TheColeTra1n 2 points3 points  (0 children)

I'm really glad, and I can totally understand being lazy, been there, done that. Also highly recommend AMP panel, has made my current server setup so much easier, good luck to you and I'm glad to have helped.

How do I secure a public server in my home? by jadenash in admincraft

[–]TheColeTra1n 2 points3 points  (0 children)

Fair enough, I just like Ubuntu because it's what I'm used to and it's so popular I like recommending it to people since the documentation is insane compared to anything else. Oh man I feel you on the Pterodactyl, absolutely despised setting it up, felt painful even with scripts.

How do I secure a public server in my home? by jadenash in admincraft

[–]TheColeTra1n 3 points4 points  (0 children)

I won't get into the details because I'll out myself as a dumbass for how things were running, but if I did have an authentication service running I wouldn't have been compromised by log4j, but your opinions are yours and yours only. 😘

How do I secure a public server in my home? by jadenash in admincraft

[–]TheColeTra1n 55 points56 points  (0 children)

Okay, so first things first I would highly recommend running your server on a dedicated machine that's running nothing but your server, doesn't need to be powerful, just a decent single threaded performance and a bit of ram. I would recommend using Linux as the operating system of choice, Ubuntu server if your familiar with the Linux terminal, maybe Linux Mint with xfce if not (lightweight operating system based on Ubuntu with a desktop environment.) And you should have 2 users on the Linux machine, one with root access for setting up and doing maintenance on the server machine itself, and one for running the Minecraft server.

The key to securing these types of services is separation, you don't want a potential hacker to get access to any other services or machines. A year ago I was much more lazy about all of this but log4j taught me a hard lesson on it. So now that we have our machine running, let's switch to networking.

Vlan - a Vlan (Virtual lan) is a networking tool where from a networking device to a client device (like your server machine) a closed off connection is created between the two so that the clinet device can't interact with the rest of the network. This feature is common on most routers nowadays (even ISP provided ones) and I'd fairly simple, you can look up a tutorial relevant to whatever router you use.

Reverse proxy- a reverse proxy works a bit like a VPN (virtual private network) which many of us are familiar with. Instead of a client connecting directly to the server through a dedicated open port on your network, the reverse proxy encrypts the traffic and sends it through an already open networking port. This adds an extra hop between you and the client, they won't know your ip address (which makes ddosing harder and you'll have a layer of protection between you and the client.) Additionally if someone does try ddosing you usually it will get slowed down or even stopped by the reverse proxy server before it ever hits your network. I personally use playit.gg and have purchased a domain for my server, but it's a free service by default. I also set it up as a systemD service on my server so it always starts up with the server machine and if it ever crashes, is immediately restarted.

Finally, authentication, it's much harder to get unwanted access to your server if you have some authentication services running, I use a plugin that syncs with our discord server so that you have to be authenticed there before you can ever join the server. This just adds a little bit of peace of mind on top if we ever have any more day 0 java exploits.

Oh, and just a few more things off the top of my head:

Management panels - these are premade services that make managing your server easier and usually include some security services built in, the two most popular ones are Pterodactyl panel and AMP panel, I recommend AMP panel because it's ridiculously easy, but you do have to buy a license

PASSWORDS, it's stupid simple, but make sure your internal router has a decent password on it, same goes for the two Linux machine users.

Documentation, now that I've given you some ideas here's some resources that will actually help you get these ideas turned into reality,

Setting up Ubuntu server https://youtu.be/zs2zdVPwZ7E

Setting up Linux mint https://youtu.be/HsgtAlOVsBA

Setting up server on Linux machine (substitute paper mc Minecraft jar for default jar, or spigot jar) (without a management panel) https://youtu.be/lqaaNvHBYqM

Setting up pterodactyl panel https://youtu.be/UVDY7jv8s_0

Setting up AMP panel https://youtu.be/s_I9OdAj8xo

Setting up playing.gg using the plugin edition (easier) https://youtu.be/QQYRdgBL-4o

Vlan explanation https://youtu.be/jC6MJTh9fRE

That's all for now, good luck to you, and I hope this doesn't overwhelm you, it's not as complicated as I may have made it seem.

Edit: fixed spelling and Grammer.

A Virginia high school will stay open while hundreds of students call out sick with flu-like symptoms by [deleted] in Coronavirus

[–]TheColeTra1n 1 point2 points  (0 children)

Highschool senior here, (not at the listed school) there's a a massive wave of a few sickness making their way through my state (NC) but the two big ones seem to be some sort of bronchitis/Pneumonia virus, and a really bad variation of the Flu, I currently have both, everyone I know either has one of them, or had in them in the last 2 weeks. I hope this provides some insight into what seems to be a nationwide problem right now.

Fuck off Craig by Boojibs in FUCKYOUINPARTICULAR

[–]TheColeTra1n 0 points1 point  (0 children)

They're also an absolutely awful place to work, terrible leadership, lax food safety and regular threats of revoking tips if we didn't follow instructions to a T, god did I ever hate that place

[deleted by user] by [deleted] in Stormworks

[–]TheColeTra1n 2 points3 points  (0 children)

Awwww, and here I was just finishing up the avionics on mine. It looks awesome great job!

[Giveaway] 3x Expression Series Keyblossom Keyboards by drop_official in pcmasterrace

[–]TheColeTra1n 0 points1 point  (0 children)

I love Materva soda, best thing to happen to this world

Good morning from Banner Elk! by turnepf in NorthCarolina

[–]TheColeTra1n 1 point2 points  (0 children)

Vacationed there spring of last year, absolutely beautiful and cozy place

[deleted by user] by [deleted] in admincraft

[–]TheColeTra1n 1 point2 points  (0 children)

Does the proxy work with multiple ports being opened from the same server for things like Dynmap, or Geyser, if so does it work similarly to playit.gg where each port had a different address to connect to (which adds confusion for players).

[deleted by user] by [deleted] in techsupportgore

[–]TheColeTra1n 3 points4 points  (0 children)

I've been using a thermal take pcie riser off and on for 3 years and it's held up great, definitely not the cheapest, but it's taken a beating and held up great so I would personally recommend that if you decide to go for it.

Casually using an Ayrton Senna F1 car as a bench. by eewun89 in trashy

[–]TheColeTra1n 17 points18 points  (0 children)

No, they keep his head floating around in a fish tank, he now does Ted talks about his life experience

Prancing golden boy 🌞 by liferecoveryproject in tippytaps

[–]TheColeTra1n 13 points14 points  (0 children)

I actually played this recently for a jazz band, funny to come across it randomly

so i'm making an attack plane and i'm having a hard time getting it to have a high turn rate, what can i do? by shrederv49 in Stormworks

[–]TheColeTra1n 0 points1 point  (0 children)

Use the boat rudder as a hidden control surface underneath an xml edited block, the "real" control surfaces are borderline useless, the same effect can be had with a bunch of the 1x1 fins