Debian has proprietary software via opt-in through the non-free repository. However the Nvidia driver is horribly outdated so I had to install them directly. But now it works decently well. But my 1070TI is on borrowed time now no matter the OS 🥲
AudaciousArmadillo
- 0 Posts
- 10 Comments
AudaciousArmadillo@piefed.blahaj.zoneto
Programmer Humor@programming.dev•OOP at home:English
23·1 month agoIt works great for technical constructs. E.g. A Button is a UI element. But for anything business logic related, yeah it’ll suck.
AudaciousArmadillo@piefed.blahaj.zoneto
Programmer Humor@programming.dev•Python vs. JavaEnglish
17·1 month agoBeyond that, in reality you would write
logger.info()in both 99% of the time.
AudaciousArmadillo@piefed.blahaj.zoneto
No Stupid Questions@lemmy.world•What actually happens in a DDOS attack?English
21·1 month agoOthers mentioned good points but don’t really capture the scale or techniques. A high volume DDoS may even overwhelm the network equipment, so simply saturating the network with garbage traffic. On the smaller scale, a server has limited resources to handle connections. So in the most extreme case, you simple run out of memory to store all the incoming requests. More likely you exhaust a thread pool or run out of connection handles. This “breaks” the server as it may not have resources left to recover to a working state even after the attack has stopped.
As for techniques, DDoS don’t just spam genuine requests. Usually the requests are malformed to have the worst impact on the servers. For example you only send the connection request without completing the full handshake. Now the server has to wait until the connection times out which consumes resources for a potentially long time.
AudaciousArmadillo@piefed.blahaj.zoneto
No Stupid Questions@lemmy.world•If a Space Elevator became a reality, wouldn't the cable act as a kind of wick for all of the unfiltered radiation from outside our atmosphere?English
1·2 months agoA recent Scott Manly video about radiation in space https://m.youtube.com/watch?v=DJcbevbBzsc.
AudaciousArmadillo@piefed.blahaj.zoneto
linuxmemes@lemmy.world•Guys, what's the best Linux distro to install on my PC?English
8·2 months agoDebian is what you get if “dad getting off the couch noise” was a Linux distro.
https://socially.drinkingatmy.computer/objects/4df5b6b4-102f-4854-8721-480d56380e0c
Hm TIL, fair enough. Thanks.
But chaining still seems harder than
CommandA | ForEach-Object { DoSomethingWith $_ } | CommandB
I take PowerShell ForEach-Object any day over the unholy contraptions of awk, xargs and friends in bash.
AudaciousArmadillo@piefed.blahaj.zoneto
Lemmy Shitpost@lemmy.world•What do you do with dent corn?English
2·3 months agoSanest lew lew clip
I think with flatpak it’s fine nowadays. So I have the stable base Debian, but most applications are flatpak and for dev work I use containers or nix anyways.