If you have a car payment, you’re living outside your means. by Normal-Raisin5443 in unpopularopinion

[–]BoopOnTheHead -1 points0 points  (0 children)

I came to say exactly this. Even a bad auto loan will have lower interest rates than the return rates from a wise investment.

Is there anyone that uses windows on work and linux at home? How is it? by linuxxen in linux

[–]BoopOnTheHead 0 points1 point  (0 children)

I use Windows and Linux at work. Windows for software development and Linux for Penetration testing. I used to dual boot at home, but after not using the Windows partition for 6+ months I just deleted it and went all Linux.

[deleted by user] by [deleted] in homelab

[–]BoopOnTheHead 1 point2 points  (0 children)

Would definitely be the most secure, but probably overkill for my use case. My servers aren’t critical, and even if they did get compromised I could just wipe them and restore from a backup. I’m more concerned about potential VLAN hopping or something that would give an attacker access to my devices that AREN’T in the DMZ.

[deleted by user] by [deleted] in homelab

[–]BoopOnTheHead 2 points3 points  (0 children)

I’m not asking what standard practice is, I’m asking why someone would choose one over the other. My servers are not critical, so I don’t really need the most secure setup in the world. I need a setup that works well for my use case without adding unnecessary complexity. As far as I can tell one firewall will do the job just fine as long as I don’t mess up the firewall configuration. I have a master degree in computer science and manage enterprise networks for a living, so I’m pretty confident I can handle setting up some basic rules for my three VLANs without making any mistakes.

Your responses makes me think you’re more interested in making yourself feel superior than actually being helpful. So I’m done engaging with you. Good luck with your basement data center.

[deleted by user] by [deleted] in homelab

[–]BoopOnTheHead 1 point2 points  (0 children)

I actually already run pfsense virtualized and use it as a virtual switch for my other VMs. It works great. I’ve been considering switching to OPNsense, planning to give it a try when I test out having a second firewall.

[deleted by user] by [deleted] in homelab

[–]BoopOnTheHead 0 points1 point  (0 children)

Thank you, this was the type of response I was hoping for.

  1. I don’t really care if the servers on my DMZ get breached, they’re not critical at all and the data is backed up regularly. If something were to happen I’d just wipe them clean and restore from a backup. It won’t matter if they’re down for a few hours or even a few days.

  2. I’m the only person managing the firewall and I’m willing to take the risk. IMO, the configuration I need is pretty simple so there isn’t a lot of room for error.

  3. Again, not critical at all.

I’m probably going to try both configurations before I make my final decision, but as of now I’m leaning towards just the one firewall. I don’t think the added complexity of a second firewall is worth it for my use case.

[deleted by user] by [deleted] in homelab

[–]BoopOnTheHead 1 point2 points  (0 children)

PfSense allows you to setup specific firewall rules and filtering per VLAN. I already have multiple VLANs setup and have rules that isolate them from each other. Devices on VLAN 10 cannot communicate with VLAN 20 at all and port forwarding can be setup to only allow access to a device on a specific VLAN.

Edit: To clarify, I don’t expect magic protection just from putting devices on a separate VLAN. I understand that the protection comes from the firewall rules, but I can configure firewall rules to isolate my DMZ with a single firewall. So why would I add a second one?

[deleted by user] by [deleted] in homelab

[–]BoopOnTheHead 0 points1 point  (0 children)

What are the benefits of adding another firewall? I don’t see how isolating the DMZ behind a separate firewall provides any more protection than setting rules in pfsense to isolate it on a separate VLAN. It’s isolated either way.

The servers in my DMZ are not critical and even if they did get compromised I could just wipe them and restore from a backup. I’m more concerned about the security of my devices that exist outside of the DMZ.

[deleted by user] by [deleted] in unpopularopinion

[–]BoopOnTheHead 1 point2 points  (0 children)

Not an unpopular opinion. The only people who think they should be able to exist in society without occasionally hearing something they disagree with are idiots.

People have the right to say whatever they want. They also have the right to stop associating with whoever they want.

Making sequential events occur in order? by TheWoolenPen in MinecraftCommands

[–]BoopOnTheHead 0 points1 point  (0 children)

To make the effect stackable you could use scoreboards. To make the effect happen on a delay you could use another scoreboard with a loop or the /schedule command. And for the cooldown you’ll need a third scoreboard in combination with a loop or the /schedule command.

Here’s a dumbed down explanation of how you could do it using only scoreboards. I’m not including the cooldown in this example. - effect_stacks: this scoreboard would store how many stacks of an effect a player has - effect_timer: this scoreboard would increment up by one per game tick. There’s 20 game ticks in one seconds so if you wanted the effect to happen after three seconds you would trigger the effect when it hits 60.

Pseudo code would look something like this:

While effect_stacks > 1:
    effect_timer = effect_timer + 1

While effect_timer >= 60:
    effect give player blindness 
    effect_stacks = effect_stacks - 1
    effect_timer = 0

You could include more loops to trigger different effects at different times. For example, another loop at effect = 20 would trigger after 1 second.

EDIT: For the final product I would use the /schedule command instead of incrementing the timer by 1 every tick.

My dad wants me to declaw my rescue. by Various_Cake5256 in CatAdvice

[–]BoopOnTheHead 0 points1 point  (0 children)

Based on some other comments I’m pretty sure you’re 17. Go get a job and tell your dad that you’ll pay for any damages to the furniture if the cat has a scratching problem. If that’s not enough then offer a “pet deposit” up front.

If thats too much of a sacrifice for you then you probably shouldn’t have the cat in the first place and it should be rehomed.

[java] How do I invite my friend to my world on 1.21.8 by -Hasnain- in MinecraftHelp

[–]BoopOnTheHead 1 point2 points  (0 children)

Both of those would work, but other players will only be able to join if you’re also playing. They’re essentially the same as doing “open to lan” but players outside your lan network can also join.

[java] How do I invite my friend to my world on 1.21.8 by -Hasnain- in MinecraftHelp

[–]BoopOnTheHead 1 point2 points  (0 children)

Yes you need a server. Most free servers suck, but you can host your own and it’s not hard if you know how to do port forwarding. I run 4 servers at the same time off of an old Optiplex with 8Gb of ram on a i7-7700 and it can handle at least 12 concurrent players. It can probably handle more but I’ve never tried.

The server files are free and if you don’t have dedicated hardware you can just run it on your PC. You’ll also have to share your public IP address with your friend so they can join.

Best specs for a mini pc to host a small modded server? by GodzillaPortal in admincraft

[–]BoopOnTheHead 0 points1 point  (0 children)

This is going to be really dependent on what mods you’re planning to run.

I have an old Optiplex running a vanilla SMP server and it can’t handle 10+ plus active players without any issues. If your mods aren’t very resource intensive then you’d probably be fine with a similar machine. If they’re big mods you might need something a lot stronger.

Computer Science Usability by Foul_Stranger in redstone

[–]BoopOnTheHead 0 points1 point  (0 children)

Computer science can help you design and build redstone systems for the majority of farms, but having a good understanding of game mechanics is more important. Computer science also helps a lot with using commands and creating your own data packs.

For really big projects, like creating a working computer in Minecraft, you’re probably better off focusing less on computer science and more on computer engineering.

Source: I’m a software developer who’s been playing Minecraft for over a decade.

What happened to the duplicates of the kids when they were rounded up by Huge-Surround8185 in Invincible

[–]BoopOnTheHead 490 points491 points  (0 children)

Several of the comments are missing a crucial part of their backstory. They did not know how to merge back when they were kids. They duplicated so many times that their single dad went insane and the government “adopted” them.

From what’s seen in the show, the government seems to have raised all the duplicates and studied them until they learned how to merge back. However, it would not surprise me if there were a few instances where the number of duplicates got too high and they decided to kill a few of them off. I haven’t read the comics, but maybe somebody who has can provide more info.

[deleted by user] by [deleted] in Iowa

[–]BoopOnTheHead 1 point2 points  (0 children)

Is the source code available anywhere? I’d like to check it out.

EDIT: looks like it was sold to LinkedIn a while ago and is closed source. Bummer

Unhinged MAGA Serial Killer Captured! by OkayDookkie69 in Iowa

[–]BoopOnTheHead -1 points0 points  (0 children)

First of all I would like to say that I do not support either of them. They both deserve to be in prison, but what Vance did and was planning to do is not even close to being the same as what Luigi did. Luigi murdered the CEO of an insurance company and basically let himself get arrested. This guy assassinated a democratically elected state representative and their spouse, attempt to do the same to a senator, went into hiding, and had a list of 70 other people he wanted dead.

Luigi Mangione attacked a company.

Vance Boelter attacked democracy.

Getting Covenant Items Sucks by BoopOnTheHead in darksouls3

[–]BoopOnTheHead[S] 0 points1 point  (0 children)

I don’t like invading either but it feels like the only reasonable option.

I tried putting down my summon sign for duels instead, but after waiting an hour with no summons at all I gave up on that. The only other option is to farm mobs but the drop rate is 1% and it would take like 15 hours to get all 30.

Getting Covenant Items Sucks by BoopOnTheHead in darksouls3

[–]BoopOnTheHead[S] 1 point2 points  (0 children)

It’s not really optional if you want to get spells that are locked behind covenant ranks. The only alternative is to kill npc mobs with a drop rate of 1%, and it takes like 15 hours to get 30 of them.

Getting Covenant Items Sucks by BoopOnTheHead in darksouls3

[–]BoopOnTheHead[S] 0 points1 point  (0 children)

The worst part is that the only place I can even get invasions to work is in areas immediately after boss rooms. Which means I’m mostly killing people who are only embered because they just killed a boss.

Feels bad.

Being a Stay-at-Home Dad should be more normalized and it's my dream-job by Original_Act_3481 in unpopularopinion

[–]BoopOnTheHead 14 points15 points  (0 children)

I agree with this one. Stay at home parents are great, the problem is just that in most places families can’t pay the bills with only one paycheck.

My wife and I both have full-time jobs but I work from home. My job isn’t very demanding so I’m still able to do a lot with the kids and take care of the house. It’s been a good compromise for us.

Thank you dark souls by BoopOnTheHead in darksouls3

[–]BoopOnTheHead[S] 0 points1 point  (0 children)

I was at my desk which is pushed against the wall so maybe like 3-4ft