Viewing profile — ot
ot
HN member- Joined
- Tue, Sep 28, 2010, 8:29 PM UTC
- HN karma
- 18,870
- Public activity
- 1,669 items
- HN profile
- View on Hacker News ↗
About ot
- Twitter: @ot_y
- LinkedIn: www.linkedin.com/in/giuseppe-ottaviano-497b7b3Recent public activity
- story
- story
-
comment
Comment #49195695
Subscription plans share data by default (it is possible to opt out though)
- story
- story
- story
- story
-
story
Muse Spark 1.1
https://ai.meta.com/static-resource/muse-spark-1-1-evaluatio... [pdf] https://developer.meta.com/ai/resources/blog/build-with-muse... https://www.bloomberg.com/news/articles/2026-0…
-
comment
Comment #48823709
In Linux everything is XOrCrash, since allocations never fail but the OOM killer can get you later.
-
comment
Comment #48819432
This is a great article but it goes into a lot of detail that can be intimidating at first. For me, the reading that made asymmetric fences "click" is this: https://pvk.ca/Blog/201…
-
comment
Comment #48586493
> GNU deadline I think you mean readline?
- story
-
comment
Comment #48357847
Yeah the number sounds a lot less impressive if you say that you only get 2^61.44 integers out of 2^64. In other words, a 4% entropy loss. Information quantities are more meaningfu…
- story
- story
- story
- story
-
comment
Comment #47409434
That's a false dichotomy: you optimize both the application and the allocator. A 0.5% improvement may not be a lot to you, but at hyperscaler scale it's well worth staffing a team …
-
comment
Comment #47409412
It's not just that zeroing got cheaper, but also we're doing a lot less of it, because jemalloc got much better. If the allocator returns a page to the kernel and then immediately …
-
comment
Comment #47318353
RSA was also not given that name by its authors, the name came later, which is usually the case. In the original paper they do not give it any name: https://people.csail.mit.edu/ri…
-
comment
Comment #47315703
Here RE2 does not fall back to the NFA, it just resets the Lazy DFA cache and starts growing it again. The latency spikes I was mentioning are due to the cost of destroying the cac…
-
comment
Comment #47303831
> are there eviction techniques to guard against this? RE2 resets the cache when it reaches a (configurable) size limit. Which I found out the hard way when I had to debug almost-p…
- story
- story
-
comment
Comment #47150745
This is drawing broad conclusions from a specific RW mutex implementation. Other implementations adopt techniques to make the readers scale linearly in the read-mostly case by usin…