Viewing profile — mrtracy
mrtracy
HN member- Joined
- Wed, Sep 02, 2015, 9:46 PM UTC
- HN karma
- 222
- Public activity
- 29 items
- HN profile
- View on Hacker News ↗
About mrtracy
No profile information was provided.
Recent public activity
-
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…
-
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 …
-
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: …
-
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…
-
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…
-
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 …
-
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…
-
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…
-
comment
Comment #40876748
It appears that Show HN has special algorithmic handling, which is why you would expect stricter rules.
-
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…
-
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…
-
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…
-
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…
-
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…
-
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 …
-
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 …
-
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…
-
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 -…
-
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…
-
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…
-
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 …
-
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…
-
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 …
-
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…
-
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…