Viewing profile — halter73
halter73
HN member- Joined
- Thu, Nov 17, 2011, 10:13 PM UTC
- HN karma
- 447
- Public activity
- 161 items
- HN profile
- View on Hacker News ↗
About halter73
No profile information was provided.
Recent public activity
-
comment
Comment #48047607
Not that I defend all of Valve’s business practices, but last I heard, you’re only prevented from sell games cheaper on other platforms if the thing you’re selling is Steam keys. A…
-
comment
Comment #47913546
> 6. People who realize the game theory optimal strategy is to announce you're pressing blue and convince everyone else to press blue, but privately press red. A lot of this analys…
-
comment
Comment #47892450
I think this conflates two different eras/layers. NT 4 famously moved the window manager/GDI/graphics subsystem into kernel mode, so that’s probably the “opposite direction” histor…
-
comment
Comment #47669892
No, but they chose to include it. Presumably there were a lot less apt references they chose not to include.
- comment
-
comment
Comment #44331530
There's a link at the top of the README to https://0x00eb.itch.io/tux-racer where you can play it without needing to host it yourself.
-
comment
Comment #43989697
I'm not sure this is old enough, but could you be referencing https://neal.fun/infinite-craft/ from https://news.ycombinator.com/item?id=39205020 ?
-
comment
Comment #43949288
> Each request will hit a new random worker, but your response is supposed to go on some other long-running SSE stream. It seems your knowledge is a little out of date. The big dif…
-
comment
Comment #43873557
That github issue is closed because it's been mostly completed. As of https://github.com/modelcontextprotocol/modelcontextprotocol... , the latest draft specification does not requ…
-
comment
Comment #43587617
It really depends on if you're dealing with an async stream or a single async result as the input to the next function. If a is an access token needed to access resource b, you can…
-
comment
Comment #43563717
It probably depends on your lists. My uBlock Origin config had a global CSS rule blocking any elements with a #mc_embed_signup id.
- comment
-
comment
Comment #41832566
Can you provide a citation for this? I’ve read older RFCs that "recommend" recipients allow single LFs to terminate headers for robustness. I’ve also read newer RFCs that weaken th…
-
comment
Comment #41831706
> I'm hoping this is satire. Me too. It's one thing to accept single LFs in protocols that expect CRLF, but sending single LFs is a bridge to far in my opinion. I'm really surprise…
-
comment
Comment #41339498
> Our browsers could have been exploiting things behind NAT this entire time. Smart TVs, Smart watches, phones, anything pingable on your LAN. Maybe if they’re running an HTTP serv…
-
comment
Comment #41122528
> The fact that most programming languages don’t give enough semantic information for their compiler to do a good job doesn’t mean it necessary has to be so. Functional programmers…
-
comment
Comment #40653133
You need to resize the output grid to 6x6.
-
comment
Comment #40314566
AFAIK, all Linux distros plus Windows and macOS have TCP keepalives off by default as mandated by the RFC 1122. Even when they are optionally turned on using SO_KEEPALIVE, the inte…
-
comment
Comment #37908271
ASP.NET Core can easily route "/hello" to HelloController.Index(), but it's not exactly automatic. The controller library adds routes to the routing middleware in a call to MapCont…
-
comment
Comment #37414241
The iframe's sandbox attribute is doing a lot of work. I tried to change the parent window location to remove the footer, but the sandbox thwarted me since it didn't include "allow…
-
comment
Comment #36703311
The lack of server ALPN support on macOS is probably the extra friction you're referring to. This made accepting HTTP/2 connections with TLS impossible. Fortunately, support will b…
-
comment
Comment #36514058
They claimed they did support price caps the HN launch thread referenced in this new press release. They got a lot of praise for it in the comments back then. > Max monthly spend: …
-
comment
Comment #33615115
`git reset HEAD~` doesn't feel like that much of a contortion to me. It's the destructive change that requires more contortion (`--hard`) which feels fair. Maybe this is stockholm …
- comment
-
comment
Comment #32987743
As mentioned elsewhere in this thread, with turn-based rotation units, this relationship can be simplified to avoid transcendental numbers entirely: > (-1)^(2x) = cos(x) + i sin(x)…