Live data from Hacker News

Viewing profile — qzzi

qzzi

HN member
Joined
Tue, Dec 12, 2023, 2:45 AM UTC
HN karma
49
Public activity
18 items

About qzzi

No profile information was provided.

Recent public activity

  1. comment
    Comment #49145161

    I clicked on 2 links on the main page in the Learn F* section...

  2. comment
    Comment #47475060

    1.1.1.1 is simply a free DNS, 1.1.1.2 blocks malware, and 1.1.1.3 blocks both malware and adult content. It's a service that does exactly what it's supposed to do.

  3. comment
    Comment #47313677

    Simply removing the GIL and running 10,000 threads seems very unlikely.

  4. comment
    Comment #45949135

    I've been hacking professionally for 30 years and I know what to look for. Anthropic's report is garbage. Period.

  5. comment
    Comment #45782735

    Compared to what? What gives you all that, and what prevents you from having it with tables?

  6. comment
    Comment #44913188

    I'm pretty sure they're talking about reference counting that depends on the arguments, not about optional arguments or invalid argument combinations.

  7. comment
  8. comment
    Comment #44860048

    C and Python automatically concatenate string literals, and Rust has the concat! macro. There's no problem just writing it in a way that works correctly with any indentation. No ne…

  9. comment
    Comment #43893511

    They aren't comparing those crimes. You don't get to pick and choose where laws should matter based on whether you personally like the item being banned. Your "bad guys will do it …

  10. comment
    Comment #42998410

    The point is obviously that the counter is centralized, and it relates to the previous example where is no concurrency. The need for synchronization when sharing data across thread…

  11. comment
    Comment #42998398

    In the right place, but maybe at the wrong time. You can expect +1 and always be right, when the value should be +10.

  12. comment
    Comment #42830034

    No, the debugger does not get involved in preprocessing. When you write "a = __LINE__;", it expands to "a = 10;" (or whatever number) and is compiled, and the debugger has no knowl…

  13. comment
    Comment #42823769

    The __LINE__ macro, like all other macros, is expanded during the preprocessing of the source code and is not handed to the debugger in any way.

  14. comment
    Comment #42521417

    This is the place where the listening socket is initialized, and you can see that if the port is 0, it doesn't do anything. Are you observing different behavior?

  15. comment
    Comment #39831830

    It is a commercial product and it is their goodwill to offer licenses for free. They don't have to do it at all, Mr. Entitled.

  16. comment
    Comment #39683679

    > you know any actual tab character in the input is a field separator, and then you can go through the fields to put back the escaped ones The "\t" in "split" is not a "slash-tee" …

  17. comment
  18. comment
    Comment #38608796

    I don't know how they define `MAX`, but I'm guessing it's a typical "a>b?a:b". In function `elf_read_pintable` the `npins` is defined as signed int and `sysno` as unsigned int. So …