• 0 Posts
  • 9 Comments
Joined 1 year ago
cake
Cake day: June 13th, 2024

help-circle

  • I was once responsible for a student house (we don’t have dorms in the US sense, this is the closest we have) and I have similar experiences but less extreme. My favourite was when I had forgotten to configure DHCP filtering and someone plugged in a router the wrong way so it started offering DHCP (that didn’t work) to everyone in the building, in a race with our upstream ISP.



  • I think it sure can enhance the bad things that are already there. Money usually gives you power and influence and often (if you have enough) brings with it a bunch of sycophants that concern whatever you’re saying which would tend to enhance your worst impulses.

    It also enhances any existing tendencies to view other people as instrumental to your own goals, because in some sense they are.

    What Musk is clearly doing here is seeing his children as extensions and in some sense property of himself, and that means he needs to control them. Their autonomy is a direct threat to what he sees as his existence. That’s not the kind of delusion you’re born with, that’s taught.



  • Sleepwear is definitely a hack, I used that a lot early in my transition too as a low stakes method of affirmation.

    With respect to dysphoria I’ve frankly reached a point where it’s not so prevalent in my day to day life, ca 5 years into my social transition. It crops up of course but it’s much less pronounced, to the point where I was technically misgendered by a colleague (who did the right thing and immediately and discretely corrected himself), and that didn’t even feel bad at all.

    This also applies to euphoria though.



  • The comments on this one really surprised me. I thought the kinds of people who hang out on XDA-developers were developers. I assumed that developers had a much better understanding of computer architecture than the people commenting (who of course may not be representative of all readers).

    I also get the idea that the writer is being vague not to simplify but because they genuinely don’t know the details, which feels even worse.


  • Lots of bad answers here. Obviously the kernel should schedule the UI to be responsive even under high load. That’s doable; just prioritise running those over batch jobs. That’s a perfectly valid demand to have on your system.

    This is one of the cases where Linux shows its history as a large shared unix system and its focus as a server OS; if the desktop is just a program like any other, who’s to say it should have more priority than Rust?

    I’ve also run into this problem. I never found a solution for this, but I think one of those fancy new schedulers might work, or at least is worth a shot. I’d appreciate hearing about it if it does work for you!

    Hopefully in a while there are separate desktop-oriented schedulers for the desktop distros (and ideally also better OOM handlers), but that seems to be a few years away maybe.

    In the short term you may have some success in adjusting the priority of Rust with nice, an incomprehensibly named tool to adjust the priority of your processes. High numbers = low priority (the task is “nicer” to the system). You run it like this: nice -n5 cargo build.