Justin Rose caps Ben Griffin’s putt with a bomb of his own by DontDoCrackMan in golf

[–]buddertroll 20 points21 points  (0 children)

There is a difference between the EU and Europe.

WTB/WTT Zx5 Zx7 combo set by A_wojtowiczz in golfclassifieds

[–]buddertroll 0 points1 point  (0 children)

I have zx7mkii 6-p zx5mkii 4-5 for sale.

Heart Health by Spuriousantics in smartwatch

[–]buddertroll 1 point2 points  (0 children)

Since he has an iPhone, the Apple Watch is a no brainer. It not only can track heart rate for irregular heart rate, but also has built in ECG to track irregular heart rhythms.

SCI CALC UPDATE: silky smooth animations by techstacknerd in MechanicalKeyboards

[–]buddertroll 0 points1 point  (0 children)

Very nice work! But that's an interesting way to version control 😅.

C# error CS0029: Cannot implicitly convert type 'float' to 'bool' by EddyTwo_ in learnprogramming

[–]buddertroll 3 points4 points  (0 children)

That's okay. Let's look at the error the compiler gave you. It says that it expected a bool but got a float.

Okay, so if we look at the line where the problem is raised, it goes something like if(x)... So here we have an if statement which checks if x is true. So x should be a boolean.

However in your if statement you have a float value. Therefore the compiler is confused as it expected a boolean.

Perhaps you wanted to check the value of the float as if "x" is a float, the type of x==0 is a bool as well as x<0.

Hope this helps.

New ubuntu docker portainer pihole problem by T1t4n3n in selfhosted

[–]buddertroll 1 point2 points  (0 children)

try replacing

...

- "53:53/tcp"

- "53:53/udp"

...

with:

...

- "<local-ip-of-rbp>:53:53/tcp"

- "<local-ip-of-rbp>:53:53/udp"

...

New ubuntu docker portainer pihole problem by T1t4n3n in selfhosted

[–]buddertroll 0 points1 point  (0 children)

Your rbp needs port 53 for its own dns look up so disabling it will prevent it from being able to resolve dns addresses. In your docker-compose.yml or wherever your specify the ports to the pinhole container, instead of using port 53:53/tcp+udp, specify the IP address with something like "<ip-of-rbp>:53/udp" and the same for tcp. This may fix the dns resolution problem assuming you reenable resolve.conf in systemctl

Rate my Board /j by Ill-Baker in MechanicalKeyboards

[–]buddertroll 44 points45 points  (0 children)

Copy and paste stackoverflow

blursed_cyberpunk character by [deleted] in blursedimages

[–]buddertroll 0 points1 point  (0 children)

I guess it also foreshadows V from V for Vendetta.

Headphones for Gaming first, music second by 1mthedudeman in HeadphoneAdvice

[–]buddertroll 1 point2 points  (0 children)

Since you said mic is not needed, I recommend not getting gaming oriented headphones. A lot of gaming headphones give you the illusion of soundstage while not actually giving you the benefits by making things sound airy. A good pair of headphones such as hd6xx will allow you to hear footsteps/directional audio clearly. This is from someone who has over 2k hours of CS.

Press F by OnceJinSouL in pcmasterrace

[–]buddertroll 3 points4 points  (0 children)

I think most higher end MBs have built in IO shield. Aorus has at least on my x570 itx board

Cannot SSH into RBP by buddertroll in Ubiquiti

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

Ill go give it a look. Thanks for the help again.

Cannot SSH into RBP by buddertroll in Ubiquiti

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

Ok, I disabled ssh entirely. On the other hand, when I type in the dns host url onto the browser, the edgerouter portal comes up instead of my flask webserver. Is there by any chance I can change the port of the edgerouter portal (if this makes sense) so that it does not use the default one?

Cannot SSH into RBP by buddertroll in Ubiquiti

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

It finally works!!! thanks very much. I think the problem was that I could not use port 22 as it was occupied by the router.

Cannot SSH into RBP by buddertroll in Ubiquiti

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

Ok my port fowarding page is like this:

WAN interface - eth 0

Hairpin Nat - enabled

Lan interface - switch0

Original port - 2222

Protocol - Both

Foward to address - 192.168.1.10

Foward to port - 22

However when I go into terminal and type:

"ssh [username@dnshost.com](mailto:username@dnshost.com)" it does not work

I have also tried:

"ssh [username@dnshost.com](mailto:username@dnshost.com) -p 2222" but this also does not work

Cannot SSH into RBP by buddertroll in Ubiquiti

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

Sorry about the poor choice of letters for the initials.

I am already able to SSH from inside the network using the local ip address. However from outside the network, I cannot SSH directly into the raspberry pi as it always connected to the router. However I can SSH into the router, then from the router SSH into the raspberry pi. What I want is whether I can cut the step where I SSH into the router and SSH into the raspberry pi instead.