Live data from Hacker News

Viewing profile — facturi

facturi

HN member
Joined
Tue, Jul 23, 2024, 1:40 AM UTC
HN karma
5
Public activity
11 items

About facturi

No profile information was provided.

Recent public activity

  1. comment
    Comment #41254356

    [flagged]

  2. story
  3. story
  4. comment
    Comment #41233062

    It works in MariaDB.

  5. comment
  6. comment
    Comment #41187519

    Tearing issue is mentioned in this issue https://github.com/dotnet/csharplang/issues/7016 but not in proposal

  7. comment
    Comment #41187261

    That proposal doesn't mention how the union struct handles tearing under concurrent modification. Tearing can cause memory safety issue. Variant A can have an integer field and var…

  8. story
    Ask HN: What AI-generated bugs do you encounter, and how you debugged them

    I want to know what kinds of bugs are likely to exist in AI-generated code, and how developers feel debugging AI-generated code.

  9. comment
    Comment #41098940

    In GC languages, RCU is just atomic pointer update with immutable data structure. In a language without GC, it requires delayed destruction to avoid memory safety issues. Linux ker…

  10. comment
    Comment #41077062

    This is related: Why relations are better than objects https://www.cell-lang.net/relations.html

  11. comment
    Comment #41053222

    Does the range query aggregate the elements in range? If the aggregation operation forms a group (follows associativity law, has inverse) you can use prefix sum data structures lik…