Live data from Hacker News

Viewing profile — lang4d

lang4d

HN member
Joined
Thu, Dec 22, 2022, 5:17 AM UTC
HN karma
34
Public activity
21 items

About lang4d

No profile information was provided.

Recent public activity

  1. comment
    Comment #48921744

    https://news.ycombinator.com/item?id=48915709 one of the Connection Machines is in Jurassic Park. Really neat article!

  2. comment
    Comment #47481433

    Kalshi currently has the chances at 13% for full republican control of congress

  3. comment
    Comment #46576508

    clang-tidy has a check for this case

  4. comment
    Comment #46098735

    I'd be surprised if some combination of ASAN and UBSAN wouldn't catch this and similar dangling references

  5. 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

  6. comment
    Comment #43279923

    Do you save photos and messages somewhere?

  7. comment
    Comment #43275812

    Should this be 18446744073709551615.org? Is it common to use signed integers for timestamps?

  8. 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…

  9. 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

  10. comment
    Comment #42360614

    That would be one way to silence an unused variable warning

  11. 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…

  12. comment
    Comment #41460431

    Why is it slower compared to a normal list?

  13. comment
    Comment #41223956

    The near vacuum on the moon would be tough to construct elsewhere

  14. comment
    Comment #40148121

    Hopefully they have a few local benches to iterate on for testing.

  15. comment
    Comment #37797718

    I’d imagine contracts with record companies are expensive or difficult to get at a large scale.

  16. 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 …

  17. comment
  18. 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…

  19. 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 …

  20. 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…

  21. 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?