Viewing profile — lang4d
lang4d
HN member- Joined
- Thu, Dec 22, 2022, 5:17 AM UTC
- HN karma
- 34
- Public activity
- 21 items
- HN profile
- View on Hacker News ↗
About lang4d
No profile information was provided.
Recent public activity
-
comment
Comment #48921744
https://news.ycombinator.com/item?id=48915709 one of the Connection Machines is in Jurassic Park. Really neat article!
-
comment
Comment #47481433
Kalshi currently has the chances at 13% for full republican control of congress
-
comment
Comment #46576508
clang-tidy has a check for this case
-
comment
Comment #46098735
I'd be surprised if some combination of ASAN and UBSAN wouldn't catch this and similar dangling references
-
comment
Comment #45268281
My go to for formatting would be clang-format, and for testing gtest. For more extensive formatting (that involves the compiler) clang-tidy goes a long way
-
comment
Comment #43279923
Do you save photos and messages somewhere?
-
comment
Comment #43275812
Should this be 18446744073709551615.org? Is it common to use signed integers for timestamps?
-
comment
Comment #42663262
Maybe just semantics, but I think I would call that prediction. Even if you have perfect perception (measuring the current state of the world perfectly), it's nontrivial to predict…
-
comment
Comment #42384706
Waymo is also in competition with non AV ride sharing companies. They'll need to make it more cost effective and/or (continue to) deliver higher quality rides
-
comment
Comment #42360614
That would be one way to silence an unused variable warning
-
comment
Comment #42156626
`git bisect run ...` Has been really nice for me when trying to find which which commit broke long running commands. It'll run atomically using the return code for good/bad determi…
-
comment
Comment #41460431
Why is it slower compared to a normal list?
-
comment
Comment #41223956
The near vacuum on the moon would be tough to construct elsewhere
-
comment
Comment #40148121
Hopefully they have a few local benches to iterate on for testing.
-
comment
Comment #37797718
I’d imagine contracts with record companies are expensive or difficult to get at a large scale.
-
comment
Comment #37581825
I love these sort of debugging stories! It sounds like that timeout would be based on the round trip travel time to the remote host rather than the one way distance, wouldn’t that …
- comment
-
comment
Comment #37567227
> The paper has not been peer-reviewed or published yet. But you can read a preprint version on arXiv, submitted on August 28. Is it common to see these sorts of review articles pu…
-
comment
Comment #36644910
The main content of the paper is trying to minimize the number of “russian peasant” multiplications that need to be performed. I would say those are the interesting parts. Section …
-
comment
Comment #36185207
There are a few companies around the world working on that sort of solution to the public transit problem (called autonomous Personal Rapid Transit), and one or two systems similar…
-
comment
Comment #35829989
From Part 3, does malloc(PAGE_SIZE) actually guarantee a single full page is allocated or would the allocation be positioned arbitrarily and stretch across two pages?