Live data from Hacker News

Viewing profile — ozars

ozars

HN member
Joined
Fri, Apr 16, 2021, 12:05 AM UTC
HN karma
-1
Public activity
3 items

About ozars

No profile information was provided.

Recent public activity

  1. comment
    Comment #45090627

    huh. I had no idea. Fair.

  2. comment
    Comment #45090603

    Shared mutability can cause race conditions in single-threaded environments as well, if you need asynchronous contexts where mutations can be interleaved between suspension points.…

  3. comment
    Comment #45088930

    Rust has Arc and Weak that can be used for solving it in a similar way C++ does. The primary difference is forcing usage of Mutex to avoid a large class of data race issues IMHO, a…