Skip Navigation
InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)TH
Posts
0
Comments
323
Joined
2 yr. ago
  • When Albert says he knows Bernard doesn't know, he is saying that in Albert's row, every single ball has a ball below/above it. This eliminates rows A and B because if Bernard had heard 5 or six, Bernard would immediately know the exact location of the ball (but Albert is 100% sure that Bernard is confused).

    This elimination of A and B is new knowledge for Bernard. He confirms that he was confused, but now he isn't. This means it's not 1 because he recently discovered that it has to be C or D, but there are balls in both C1 and D1 which means he would still be confused if that were the case.

    With all this knowledge, all that's left is a row with one ball, and a row with two balls. Albert says he is not confused anymore, so it has to be the row with one ball.

  • The story has changed a couple times, but I thought it was always about an employee or a customer calling it in because they recognized him, or he was acting shady. Then the cops come and he gives them a fake ID that matches the one of the hostel person.

  • Permanently Deleted

  • If in the moment you're replying to your own interpretation, you're fine. But the second you overthink about their intentions, you will be freaking out, and that's what the machine sees. One technique for bypassing lie detectors is to raise the baseline by flexing your butthole but there's techniques to catch that, too.

  • People with no game blame "society" for "training" women to act as if sex is something to be withheld, thereby creating an economy where women don't need to put in effort to get laid, thereby creating situations where shitty men blame women for their own failures, where in reality if you touch grass, wear deodorant, and have a shred of empathy there is no shortage of people you can meet that will gladly fuck you even though you're fat and ugly.

    But I know you know this and are simply being Socratic, so carry on!

  • Do you know what a memory stack and assembly are?

    If you want code that does assembly operations A, B, and then C, you might be able to accomplish it by scanning loaded memory (or its corresponding binary) for bits that, when translated into assembly, do:

    A

    D

    return

    This set of three instructions is a gadget. In practice, it's a location in memory.

    And then you find another gadget.

    B

    C

    return

    Then, if you don't care about D, or D does something irrelevant that won't screw up what you're trying to do, or won't crash the program, you can replace the stack with the addresses of gadgets one and two. When gadget one returns, the stack is popped and then gadget two executes.

    Since the computer did ADBC and D was irrelevant, the system executed your ABC malware and now you win.

    Is finding gadgets that execute actual malware hard? Surprisingly not!