Live data from Hacker News

Viewing profile — torrent

torrent

HN member
Joined
Wed, Oct 23, 2013, 7:10 PM UTC
HN karma
2
Public activity
11 items

About torrent

No profile information was provided.

Recent public activity

  1. comment
    Comment #39014364

    Seems to be a similiar problem field as writing blocking functions that call async functions in C# and co-existence of synchronous and asynchronous code. There are numerous recomme…

  2. comment
    Comment #35986387

    Sad perspective for C programmers who need to wait 10+ years until they get half-backen versions of some useful C++ features.

  3. comment
    Comment #33578265

    > why people literally do not and cannot get it right 100% of the time. Thinking so is pure hubris. Sure we all don't get it right 100% on the first write. For this reason we test …

  4. comment
    Comment #33577950

    I think it would be more constructive to propose a constrained subset, get rid of legacy, propose default behaviours for parts that are undefined and so on. Stuff that does not bel…

  5. comment
    Comment #33577749

    Syntax is mostly a matter of taste. Preference of taste and style changes with time and trends. Why should "let name : type" be preferred to "type name"? Just because others do it?…

  6. comment
    Comment #33577656

    > I mean, the almost-simplest abstraction possible the std::vector has potential UB right in its [] operator. It's your responsibility to pass the allowed range of value to a funct…

  7. comment
    Comment #27201001

    having segfault is the best you can have: it tells you explicitly that something is wrong with your program. in other languages the same kind of error may result in stale data and …

  8. comment
    Comment #27200895

    After your battle with the compiler is over and it compiles it does not mean your program is correct! If you now what you you have no issues with C++. It's not the language. It's t…

  9. comment
    Comment #26943790

    The typical, well known blog pattern for writing against C++: Show some buggy code an then conclude that C++ is wrong. Instead of asking: Who is wrong, the programmer trying to spe…

  10. comment
    Comment #6619848

    Hateing the idea of array of arraya is like hating recursivity.

  11. comment
    Comment #6600941

    I dont know which operations you are going to do with the arrays but what about just use a array of arrays or matrices of matrices of matrices of...?