Live data from Hacker News

Viewing profile — ot

ot

HN member
Joined
Tue, Sep 28, 2010, 8:29 PM UTC
HN karma
18,870
Public activity
1,669 items

About ot

Giuseppe Ottaviano

  - Twitter: @ot_y
  - LinkedIn: www.linkedin.com/in/giuseppe-ottaviano-497b7b3

Recent public activity

  1. story
  2. story
  3. comment
    Comment #49195695

    Subscription plans share data by default (it is possible to opt out though)

  4. story
  5. story
  6. story
  7. story
  8. 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…

  9. comment
    Comment #48823709

    In Linux everything is XOrCrash, since allocations never fail but the OOM killer can get you later.

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

  11. comment
    Comment #48586493

    > GNU deadline I think you mean readline?

  12. story
  13. 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…

  14. story
  15. story
  16. story
  17. story
  18. 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 …

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

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

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

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

  23. story
  24. story
  25. 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…