Live data from Hacker News

Viewing profile — mrtracy

mrtracy

HN member
Joined
Wed, Sep 02, 2015, 9:46 PM UTC
HN karma
222
Public activity
29 items

About mrtracy

No profile information was provided.

Recent public activity

  1. comment
    Comment #46579649

    How big are the commitments here? I’m having trouble finding actual dollar amounts. Does this actually represent an infusion of money into these SMR efforts, or are these “commitme…

  2. comment
    Comment #45097623

    Many of the levels in that game take place on tiny planetoids with spherical surfaces and central gravity. "Spherical" sells it short, there were some truly wild topologies around …

  3. comment
    Comment #45095641

    It's an elegant rendering trick, but if their worlds are represented as a torus, then I expect this would make rotation on a spherical globe view unintuitive. One example of this: …

  4. comment
    Comment #45093326

    Wonderful write-up of attempting to tackle this problem. I believe there must be a significant number of people who have played both Minecraft and Super Mario Galaxy, and had somet…

  5. comment
    Comment #45041898

    Rust uses the traits “Send” and “Sync” to encode this information, there is a lot of special tooling in the compiler around these. A type is “Send” if it can be moved from one thre…

  6. comment
    Comment #43106932

    There are tantalizing ways to create fusion which don’t require these precise conditions. For example, a simple farnsworth fusor device gets fusion reactions just by causing atoms …

  7. comment
    Comment #42992730

    This would work very well for medicine/procedures which are known to work very well, to both doctors and consumers. This includes medicine which is already OTC (pain relievers), bu…

  8. comment
    Comment #42753130

    I work with this algorithm quite a bit in a personal project. (I've changed from calling it WFC to Model Synthesis; Paul Merrell earned the naming rights, unless we discover an eve…

  9. comment
    Comment #40876748

    It appears that Show HN has special algorithmic handling, which is why you would expect stricter rules.

  10. comment
    Comment #40876678

    This release has Observer and Hooks which in my opinion really elevate the ability to express complex, reusable structures in the ECS. For example, one of the well-known challenges…

  11. comment
    Comment #40828248

    I think there’s some possibly good investment advice to extract here, if you’re able and willing to invest in fusion startups: based on the need to compete with renewables alone, c…

  12. comment
    Comment #40691613

    Peaker plants are considerably less efficient than base load gas energy, because the constantly running plants use a combined cycle . In both types of plants, the fuel is burned in…

  13. comment
    Comment #40265512

    The C++ smart pointers dont prevent multiple threads from mutating the pointed-to data at the same time; multiple threads can both access a unique_ptr at the same time and mutate i…

  14. comment
    Comment #40252795

    Nuclear actually is safe by pure incident metrics, even when counting higher casualty estimates for Chernobyl. The safety, of course, is not intrinsic: nuclear material is obviousl…

  15. comment
    Comment #38207068

    I recently learned that Godot forbids auto in its core C++ codebase, their rationale was based on code review: > Keep in mind hover documentation often isn't readily available for …

  16. comment
    Comment #36579216

    I think that the SQL-on-top, and optimistic model, are definitely things that can have a workflow-dependent performance impact and are relevant. All databases do suffer under some …

  17. comment
    Comment #36577250

    They absolutely were, yes. There are very valuable application profiles where FoundationDB's design is excellent, and you can see that from its internal usage at large companies li…

  18. comment
    Comment #36575333

    FoundationDB has, in my experience, always been well regarded in DB development circles; I think their test architecture - developed to easily reproduce rare concurrency failures -…

  19. comment
    Comment #34904501

    Co-routines can be a great structured-programming tool for implementing state machines. A good article which explains this idea explicitly: https://eli.thegreenplace.net/2009/08/29…

  20. comment
    Comment #34904349

    Co-routines (when used as an async primitive) are an an alternative to callbacks . Callbacks exist to avoid the overhead of marshalling async results back to the original calling t…

  21. comment
    Comment #15054816

    As someone who has been maintaining a growing React/Redux app for a while now, this one has kept me up at night. The main arguments in favor of Vue.js revolve around the idea that …

  22. comment
    Comment #11636824

    (author) This is a good insight; Live Lock was one of the things that kept me up at night, although my fellow contributors have allayed my concerns considerably. In a write-heavy w…

  23. comment
    Comment #11633340

    CockroachDB is optimistically concurrent, so there is not locking. However, your use case is definitely possible. The transaction would: 1. Read the current document (i'm assuming …

  24. comment
    Comment #11632245

    (blog author here) Interestingly, clock drift does not affect the serializability of the transaction history; this system guarantees that the history is serializable, regardless of…

  25. comment
    Comment #10173437

    Post Author here! Your understanding of this particular issue is correct: the system described in this post would not be able to provide repeatable reads. However, as you've allude…