

Won’t this cause rust?
If some python doesn’t swim there first.
This is a test account for testing out lemmy.
Bio update test: 2024-03-13


Won’t this cause rust?
If some python doesn’t swim there first.


Where does it come from?


Is there any physical reason? Otherwise it’s same as elsewhere. Non-consenual mutilation.
Make-up sex (masturbation).


How would that work though? Wouldn’t it just enter the bladder?


But that will be a problem for the next guy.


I have one that’s mostly broken, which isn’t a surprise as I took it from e-waste.
When I tried to burn a disc with it, it suddenly started accelerating out of control and I had to kill the power to it. It almost shattered the disc:

Clearly that wasn’t burning it quite well.
But there’s another interesting thing. It won’t read CDs. Except, somehow, VLC manages to get something out of it. It’s earrape, and the recording from VLC ends up corrupted, but FFMPEG can still process it as raw audio (and so can aplay).
Here’s a sample:
https://files.catbox.moe/bkwt82.flac
Audio should embed on desktop:


2 legs, 2 arms.


Not necessarily, Mullvad also has its own multi-hop. Unless you mean latency, then yeah.


Full circle to sticky notes on monitor.


The idea is they process the payments, and see your connection, and which exit node you use, but don’t see your traffic.
Mullvad doesn’t know who you are, nor where you’re connecting from, just your traffic.
You -> Obscura -> Mullvad -> Website
And each only sees past their arrow.


I am not.
That’s just what obscura does, and they use Mullvad as exit nodes.
Since they don’t have a Linux client, I just added it to Mullvad client. Well, that one config. Plus it means I can just easily use Mullvad directly.


No, that was a bit different.
login: nbusr
password: nbusr123


I’ve been using uBlock to get rid of it.
At some point the provided AI blocklist didn’t work, but element picker took care of that fairly easily.
Task sailed fuccessfully.


What’s that supposed to be?
UUUuuuuuh, I am not a programmer (you’re going to say “thank god”), but…
I sometimes even chain them. You can put yet another ternary operator in the else and keep going. You know, else-if.
So anyway, I can get ternary operators spanning 2 - 3 lines.
Oh, I also often have issues thinking of proper loops, so you’d see a few terribly used
gotostatements.Although I do remove ones that are obvious brain fart.
For example, quite obvious
void example(bool true_or_false){ if(true_or_false){ //code if true } else{ //code if false } //other code }Well, I’ve already had my brain goof up even that once or twice. “How the fuck”, you’re asking?
void example(bool true_or_false){ if(true_or_false){ goto if_true; } //code if false goto end_false_if; if_true: //code if true end_false_if: //other code }The brain-fart if-else.