

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.


Yeah, I was confused when I got hate for that.
“Trans woman is a man.”
I thought the word “trans” acted as a negation operator.


Because I am failure.
I don’t have a kitchen, and most ready to eat food is non-vegan.
I am currently living either with parents or at dorm.
Parents are hoarders, so the kitchen can be considered out of service. There’s no space, and it’s far from food-safe.
The dorm kitchen is shared between ~20 people, and I don’t do well around those, so I haven’t used it. Plus the situation with electric appliances is complicated there. I’d have to somehow haul my own fridge over there. And get it approved first, so more human contact.
I also share a room with someone, so I just try to do least of anything over there.
As I only tend to eat once a day, this is economically doable.
Our uni also has a cafeteria, but I haven’t yet been there because… I haven’t yet been there. I don’t know how it works. I tried observing others, but I see the order system is done using some touchscreen terminal, the UI of which I don’t know (I was watching from further away), and I couldn’t find any precise manual online. Actually, I couldn’t find any manual online.


fly a private jet,
Whom on Lemmy does that apply to?
Anyway, the point being made here is to make better decisions where reasonably possible. If you dive deep enough, absolutely nothing is fully ethical.
Like cleaning up your drive. You have little storage left, so you do a scan with Filelight.
Do you care about:
a) 1,000 20KiB config files
b) 40GiB pacman cache
c) 50GiB of music
You can probably just get rid of pacman cache, but with the size, you might just as well get rid of your music, no? What’s the point of removing pacman cache if your music is worse?


Where does it come from?
Are you a bus driver now?


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


I am pretty sure if we could just switch around at will, everyone but members of some religion would have tried both organs.


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.


I haven’t found anything official (research).
It might even be some different drugs, I don’t know what everything is part of HRT, but I’ve seen quite a few pictures of MtF people regrowing hair after like 1-2 years.


deleted by creator


5 hours, that oughta do it.


4 eyes?


Breath is what you TAKE
If you’re The Police.


That’s too harsh, we only remove the dominant arm for 1st offense.





If stupid people find stupid matter funny, do stupid people find themselves funny?
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.