Viewing profile — tnh
tnh
HN member- Joined
- Sun, Oct 23, 2022, 7:02 PM UTC
- HN karma
- 47
- Public activity
- 10 items
- HN profile
- View on Hacker News ↗
About tnh
No profile information was provided.
Recent public activity
-
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 …
-
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…
-
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…
-
comment
Comment #41086627
Google has been using ML for years to optimize cooling in data centers. (I agree with gp though)
-
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…
-
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…
-
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,…
-
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…
-
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…
-
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…