• 0 Posts
  • 1.64K Comments
Joined 2 years ago
cake
Cake day: June 30th, 2023

help-circle
  • It’s even more pathetic than that. They aren’t just expressing their will to play the game, they are asking for approval despite it. It’s similar to the “nothing personal” disclaimer which is usually followed by something with significant personal disruption.

    Most honestly expressed, they’d be, “I’m doing/about to do something that impacts you negatively, please don’t retaliate against me because I don’t like it when negative things happen to me.”

    Edit: just noticed the commenter you replied to reversed the original saying and agrees with you.



  • Shit, you’re right, she’s probably some kind of doppleganger, so it’s important to act natural and pretend you’re not suspicious. And being a doctor, there’s a high probability the doppelganger will want to steal your body even if it doesn’t think its cover is blown.

    So instead of asking period questions, the best thing you could say in this situation is something like, “oh right, I told the nurse to barge in here randomly in the next 30 seconds, but this medical issue requires utmost privacy for at least 5 minutes, so I will go tell the nurse to leave us alone and make sure everyone else leaves us alone until we can properly deshoot your arm.”

    Of course, a doppleganger doesn’t need to kill you to steal your likeness, so it might be in your best interest to have an alibi for the foreseeable future and come up with codewords for your family.


  • Buddahriffic@lemmy.worldtomemes@lemmy.worldEwe
    link
    fedilink
    arrow-up
    15
    ·
    6 days ago

    RAM is a resource that works best when you have more than you need. I always want there to be some unused RAM because then my system can do anything it needs to without spending time swapping out the least recently used pages before it has any free ones to use.

    Shitty programs that take GBs of memory to do things that should only need MBs or KBs of it isn’t “getting my money’s worth out of my computer”.







  • This problem is far more difficult to solve than x64 windows apps running on x64 linux.

    While x64 and ARM are both turing complete and thus anything one can do, the other can also do, there can be subtle differences to the way they do them.

    Like one I’m aware of is the atomicity of loading memory using a co-processor register, which is required for accessing thread local storage, and introduces a subtle race condition if someone uses user mode multithreading (which can be way faster than kernel mode multithreading) without handling the case where they get preempted between moving that register’s value and doing the load, and end up running on a different kernel thread when they get back (because you need one kernel thread per core). That thread would end up with the pointer for another thread’s thread local storage, which tends to break things pretty badly.

    That’s just one that I’m aware of. There’s probably tons of other subtle differences that mean you can’t just have a map of “x in x64 means y in ARM” and use that to generate a compatible binary. It would probably run, but it would have bugs that the original doesn’t that are only seen in rare edge cases.

    Not that I want to discourage this effort, but this is a problem an order of magnitude or two more difficult than the one proton solved, which was essentially just a bunch of wrappers that convert one API or OS behaviour to another equivalent one.


  • You can emulate it by opening up your mouse and carefully ripping all of the button switches other than the left one out. Then go into your BIOS, underclock your CPU (or alternatively, go to the store you got your computer or parts from and just give them more money).

    Then get some plaster and just cover up most of the ports on the back of your computer. Don’t worry, you’ll replace them with dongles, there’s a nice selection available for purchase!

    Then uninstall proton and go around claiming that your computer is the only one that can handle making art (doesn’t matter if you’re an artist, just smugly insist this is the case).

    Oh also forget that your computer is a computer. I don’t know what you need to think it is, but only nerds use computers, you’re not a nerd, you’re cool because you’re on a mac. Or pretending to be on one.










  • Yeah, I have a curiosity about how things work and it has allowed me to acquire a broad set of skills, including the skill of learning skills. Kinda lucky living in the internet age where so many things are much easier to learn than they would otherwise be.

    I think a part of it is that when I learn something, I want to really understand it. It makes me not so great as a teacher, because I end up going into way too much detail (because those are what helped me learn), but it gives a deeper understanding that allows me to improvise on what I can do.

    It also has shown me the value of people who understand how multiple specialties can fit together, especially when I go in only knowing one and can experience the shift from “why do they want this thing that way? What a silly requirement.” to “oh, ok, that makes sense, you need that to do another important thing I didn’t even realize was necessary”. And the best is when, now that I have some understanding of both sides, I can see a better solution that accomplishes both goals and makes everyone happy.

    Actually, it’s the best for a little bit, until it’s time to present the idea to multiple teams working together, because if it’s a change, a lot of people aren’t interested, they just see the work to implement the change and not all of the other work that becomes easier or unnecessary after that’s done, so it can be frustrating.