Live data from Hacker News

Viewing profile — tnh

tnh

HN member
Joined
Sun, Oct 23, 2022, 7:02 PM UTC
HN karma
47
Public activity
10 items

About tnh

No profile information was provided.

Recent public activity

  1. comment
    Comment #44619202

    In C++, the signature of a function template doesn't necessarily tell you what types you can successfully call it with, nor what the return type is. Much analysis is delayed until …

  2. comment
    Comment #43855781

    There are alternate histories where the web stagnated as an app development platform in favor of other ecosystems. MS development slowed around IE6 after winning browser war agains…

  3. comment
    Comment #41641007

    You can Zeno's-paradox-away the distinction between a bathtub and a kitchen sink, but that doesn't make them the same thing. This sort of argument change how people understand word…

  4. comment
    Comment #41086627

    Google has been using ML for years to optimize cooling in data centers. (I agree with gp though)

  5. comment
    Comment #41019974

    To each his own, but epsilon-delta is my go-to example of formalizing an intuitive concept ("gets closer and closer"), which is a high-level mathematical skill. The intuition and t…

  6. comment
    Comment #40302929

    Yes (at least approximately, I'm fuzzy on the details). These days it supports both. (IIRC the default is legacy/nonstandard, you select the standard behavior with /fpermission-, a…

  7. comment
    Comment #40302863

    Yeah, that trade-off makes a lot of sense. It's the logical conclusion of the "templates are textual" model. But C++ loves to have its cake and eat it regardless of the complexity,…

  8. comment
    Comment #40280306

    Things within the node are fine because errors propagate upwards. The problem is things like: Foo getFoo(int); getFoo().???; // want code completion! `getFoo()` is missing an argum…

  9. comment
    Comment #40280115

    > Surrounding expressions that consume that type will see the error type and suppress any other type errors they might otherwise produce. We added a slightly-cursed version of this…

  10. comment
    Comment #33309424

    Agree this difficulty is the biggest obstacle to PGO's success. A language/ecosystem that works out how to integrate this as smoothly as testing would have a sizeable performance b…