Live data from Hacker News

Viewing profile — pwdisswordfishz

pwdisswordfishz

HN member
Joined
Sun, Jun 09, 2024, 11:26 AM UTC
HN karma
535
Public activity
254 items

About pwdisswordfishz

    const links = Array.from(document.querySelectorAll(':link[href^="vote"][id^="up"]:not(.nosee)'));
    const timer = setInterval(() => {
      const link = links.pop();
      if (!link.matches('.nosee'))
        setTimeout(() => link.click(), Math.random() * 2000);
      if (links.length === 0)
        clearInterval(timer);
    }, 16000);

Recent public activity

  1. comment
    Comment #45435266

    I don't understand why people insist on simulating a poor substitute for RAII with a feature that is itself almost decent RAII. > If malloc fails and returns NULL, the cleanup func…

  2. comment
    Comment #45429090

    No, they are not two em-dash options.

  3. comment
    Comment #45429052

    AI makes typoes all the same.

  4. comment
    Comment #45410918

    That's a hyphen, not a minus sign, silly.

  5. comment
    Comment #45395318

    There are other problems besides access. The big one being that the people that you'll find on Discord are the kinds of people that you'll find on Discord.

  6. comment
    Comment #45394665

    So why would I care what some racist Twitter rando thinks?

  7. comment
    Comment #45393485

    [flagged]

  8. comment
    Comment #45370628

    Why did I expect a terminal emulator

  9. comment
    Comment #45357129

    Medium post just to embed a YouTube video... did you forget a wooden table? The video is hilarious, though: https://youtube.com/watch?v=VBj80rx_iBc

  10. comment
    Comment #45336420

    > display images inline like Reddit does That's a relatively new development. The cultural aspects that you're describing were already in place (entrenched) well before Reddit inte…

  11. comment
    Comment #45333517

    You could replace specialized terms with nonsense words in anything. This is completely non-actionable critique. In the end, there is no Royal Road to learning. You have to create …

  12. comment
    Comment #45322215

    And C/C++.

  13. comment
    Comment #45288307

    Take N screenshots, XOR them pairwise, OR the results, then perform normal OCR.

  14. comment
    Comment #45249499

    Same typewriters that didn't bother having dedicated "0" and "1" keys?

  15. comment
    Comment #45221211

    It wasn't, but that is not why.

  16. comment
    Comment #45182760

    How does it prevent security vulnerabilities when instead of being undefined entirely, the behaviour is defined to be wrong? This is the "chug along at all costs" mentality that PH…

  17. comment
    Comment #45182610

    Yeah, except this one is much more arbitrary in its choice of groupings and arrangement. Why is the boolean and Unicode scalar type in the same column as floating-point types? Why …

  18. comment
    Comment #45177964

    If I am allowed not to look at the screen when an advert is playing, then I should be allowed not to play it in the first place. There is no moral obligation on the part of the vie…

  19. comment
    Comment #45167616

    Companies shipped the Semantic Web? When?

  20. comment
    Comment #45164488

    > A C argument declaration is made up of modifiers (register, const), a data type (char *), and a name (from). Now explain a declaration like "char *argv[]"... > We’ve also re-set …

  21. comment
    Comment #45164468

    That's why you grep for a syntactic structure, not undifferentiated text.

  22. comment
    Comment #45164382

    Or just …

  23. comment
    Comment #45157973

    The distinction between #3 and #4 does not matter in practice: "I have learned to use variable initializers, that's why there isn't one present". As soon as you make it reliable, p…

  24. comment
    Comment #45157474

    Gram-metres?

  25. comment
    Comment #45157351

    Why bother with this category? The code exercising it is buggy either way, regardless of whether the behaviour is specified or not, and having a fixed definition may constrain impl…