![](/static/c15a0eb1/assets/icons/icon-96x96.png)
![](https://lemmy.ml/pictrs/image/f4a8a699-27b5-406c-a15c-aa96a0acf5a9.webp)
I will cross that road when there is a good reason to do that. I simply won’t switch just because of someone’s opinions that don’t affect me. I don’t have time for that shit.
I will cross that road when there is a good reason to do that. I simply won’t switch just because of someone’s opinions that don’t affect me. I don’t have time for that shit.
Yeah, the Docker desktop license is crazy. Pretty sure it was changed recently too.
Ah alright. I personally don’t care that much about the CEOs political opinions as long as that isn’t reflected in the business itself.
I had to look for more information on the IP logging thing since I didn’t know much about it. https://arstechnica.com/information-technology/2021/09/privacy-focused-protonmail-provided-a-users-ip-address-to-authorities/
Personally I don’t think it’s that bad. It was absolutely misleading but not a lie.
I mostly care about no logging policies when it comes to VPN and as long as the content of the emails are encrypted/not logged, I don’t mind that much.
What’s wrong with proton? It works pretty well for me.
Don’t use passwords for ssh. Use keys and disable password authentication.
What teo windows admin do in 30 minutes I do in 30 seconds
You know that pretty much everything in Windows can be done with powershell, right? Just a few and very specific things need to be done using older command line tools, or extremely rarely using a GUI.
It’s trivial to write a script that changes the DNS configuration on every server for example. It’s even easy to parallelize it.
You pretty much only need something like this.
$Servers = “server01”, “server02”, “server03”
$Servers | ForEach-Object { Invoke-Command -Computername $_ -Scriptblock { Set-DnsClientServerAddress -InterfaceIndex 12 -ServerAddresses (“10.0.0.1”,“10.0.0.2”) }}
I can’t guarantee that it will run, since I wrote it on my phone (hence formatting), but it wouldn’t be far off. You could also do it without pipes using something like ‘foreach $server in $servers’ but that’s harder to type on a phone and I prefer pipes.
Are you confident those are the same users?