Live data from Hacker News

Viewing profile — googh

googh

HN member
Joined
Wed, Sep 28, 2022, 3:42 PM UTC
HN karma
9
Public activity
16 items

About googh

No profile information was provided.

Recent public activity

  1. comment
    Comment #41798049

    I just wrote that as an observation, and I did not mean to offend the parent. Now, let me explain why I felt that way. First and foremost, the phrase "undefined behavior" only appl…

  2. comment
    Comment #41797141

    Most HN users already use languages with GC which are more memory safe than Rust. People still use C++ either because they are maintaining existing code, or they work in domains wh…

  3. comment
    Comment #41796542

    Most (if not all) of your posts here on HN boil down to "C/C++ bad, Rust good". I wonder what you are trying to achieve by this, but I assure you that this does not do Rust any fav…

  4. comment
    Comment #41519448

    Funny how the HN submission has more points than the original SE question.

  5. story
  6. comment
    Comment #41025296

    Just curious: Why didn't you email the moderators?

  7. comment
    Comment #40974218

    Can someone shed some light on why the parent comment (by varjag) is downvoted?

  8. comment
    Comment #40965913

    I think this problem can be solved using either a linter or formatter-like tool that makes naming consistent before the code gets committed.

  9. comment
    Comment #40178110

    Not parent, but take a look at these: https://news.ycombinator.com/item?id=32117148 https://news.ycombinator.com/item?id=39641552 These threads are absolutely painful to read. The …

  10. comment
    Comment #40048768

    AI is probably the only field in science where even scientists behind the thing talk like salesmen. Hinton in particular comes off as a dishonest person: he clearly knows what he s…

  11. comment
    Comment #40048589

    The thing is, these problems rarely arise for programmers who daily code in C++. People who don't use C++ love to enumerate different C++ gotchas. In reality, most C++ projects def…

  12. comment
    Comment #40041546

    Could you explain what Fedora does better than the Debian-family of distros? I find Fedora's overall performance to be worse than other distros (including Ubuntu).

  13. comment
    Comment #40009483

    > "but we don't know how often it happens!"-bollocks I am not sure why you describe that as bollocks. The most surprising part of the xz backdoor is that it was discovered by sheer…

  14. comment
    Comment #39836610

    > I would say that you want more than 32 bit pointers Fil-C uses fat pointers to retain bounds and type information to make existing C code safe (typical C is filled with pointer a…

  15. comment
    Comment #39835739

    There is hardly any difference between indices into vectors and isoheaps (ie. an allocator that reuses the same pool for the given type). Except that the latter is faster and much …

  16. comment
    Comment #39835325

    If preventing remote code execution is the goal, then C/C++/Zig can also achieve this using isoheaps (see Fil-C[1] for example). Even without isoheaps, CFI mitigations are able to …