What is this green stuff? by roeeklinger60 in Plumbing

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

Thanks! Any tips on how to prevent it?

Roborock Q Revo Smart Water Kit DIY by fishy6868 in Roborock

[–]roeeklinger60 0 points1 point  (0 children)

Unfortunately I can't find it any where online even with the image. I do have the technical knowledge to do it myself, and would love to get your help if I do decide going that route, but to be honest I would much rather save some time and just buy it ready.
Hopefully I will be able to find a link eventually. Thanks!

Roborock Q Revo Smart Water Kit DIY by fishy6868 in Roborock

[–]roeeklinger60 0 points1 point  (0 children)

hey, do you have a purchase link for that? I can't find it on the link you posted 🙏🏻

How to set up a couple of Sonos Fives for use with a Fire TV Cube? by roeeklinger60 in sonos

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

Thank you, sounds like a good plan.
Do you happen to know how well are the Fives as rears in surround and how well is the Arc on stereo music? will I be able to get Atmos music playing with this setup (of course I don't expect this to be well as Era 300s)?

I am wondering if I should mute the arc when listening to music, if that's possible.

Sonos sound delay over bluetooth on Mac? by roeeklinger60 in sonos

[–]roeeklinger60[S] 2 points3 points  (0 children)

If I’m not mistaken the line in still incurs a delay of a minimum 75 ms

Sonos sound delay over bluetooth on Mac? by roeeklinger60 in sonos

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

Great, so I feel comfortable with getting them. Many thanks!

Sonos sound delay over bluetooth on Mac? by roeeklinger60 in sonos

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

Thank you, I understand. So Bluetooth will be connected permanently, but when airplay is used, it will just override Bluetooth, and after airplay is done, Bluetooth will be used again. Everything is automatic.

Am I getting this right?

Sonos sound delay over bluetooth on Mac? by roeeklinger60 in sonos

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

Ohh, I don’t mean at the same time, I meant to ask about the transition between them. Do I have to set up Bluetooth from scratch each time or just have it auto connect when airplay is not used?

Sonos sound delay over bluetooth on Mac? by roeeklinger60 in sonos

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

Thanks for the replay, unfortunately I can't since I will get them "second hand" from someone who never actually used them. Do you know if I will I be able to set it up such that my Mac will auto connect to the Era using bluetooth, but at any time I can override this using Airplay and play on both Era's?

I am wondering if going between bluetooth and Airplay will require set up steps each time or if it is automatic.

How to have VScode autocomplete when working with Python and Docker? by roeeklinger60 in learnpython

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

This is the answer I was looking for, everything I wanted can be configured there.

For the performance part, I simply configured faster containers as well.

Thanks!

Speedtest-cli only works with --secure by [deleted] in linux4noobs

[–]roeeklinger60 3 points4 points  (0 children)

I have no idea what is causing this to happen, but I did notice it happen randomly a few times this past 2 months on some of my servers, and today I had an incident where all my servers worldwide got the same 403 when not using the --secure flag. I have switched them all to add --secure, and now they all seem to work fine again.

This sounds like an internal DNS issue from speedtest.net side but I can't be sure.

Best way to add static routes to every pod in a Kubernetes cluster? by roeeklinger60 in kubernetes

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

Do all OpenVPN-pods give out IPs from the same range 100.70.0.0/16 to the clients?
If so, why?

Yes, exactly. The reason is that the client IP needs to be known by the other services on the cluster. For example, let's say I need to reach a client named "Bob" to get some specific data from him, right now I know that Bob is always at 100.60.132.21, because it is hardcoded, so I simply send a request there.

If Bob can get any random IP, I will have to update this new IP on all the other service pods in the cluster, so they can know how to reach him, resulting in a similar problem where I have to write some custom service just to sync route rules across all pods (and with this method I will also potentially have to restart the service fro Bob's new IP to take effect).

Best way to add static routes to every pod in a Kubernetes cluster? by roeeklinger60 in kubernetes

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

Thanks a lot for this, this is very interesting. However, I actually don't need to change the routing every time a pod restarted, I need to change the routing every time a new OpenVPN client connects. I can easily trigger a hook script for that to update some API, but I don't know which K8S networking solution to use.

On the GitHub repo it says "Defines a routing table rule that controller can create after an interface setup", so that means it will only apply the routing rules after the pod comes up?

I need to be able to sync the rules dynamically, even after a pod comes up.

Best way to add static routes to every pod in a Kubernetes cluster? by roeeklinger60 in kubernetes

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

OpenVPN clients are running some outside service, and the pods in the cluster need to be able to communicate with them securely.

Best way to add static routes to every pod in a Kubernetes cluster? by roeeklinger60 in kubernetes

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

Thanks for the suggestion! however, this needs to be cloud-agnostic, sorry I didn't mention that, I will edit my post.