Live data from Hacker News

Viewing profile — Holo314

Holo314

HN member
Joined
Tue, Mar 21, 2023, 10:42 PM UTC
HN karma
3
Public activity
3 items

About Holo314

No profile information was provided.

Recent public activity

  1. comment
    Comment #35254342

    Java is built upon it's community :), look no further: https://github.com/Randgalt/record-builder , although hiding the constructor behind the builder is not something I am sure su…

  2. comment
    Comment #35254154

    Virtual threads are designed for light, IO-bound, tasks, if your task is heavy/CPU-bound tasks then you won't necessarily want to switch to virtual threads with ScopedValue.

  3. comment
    Comment #35253984

    - ScopedValue doesn't have a direct equivalent in Kotlin, but CoroutineContext.Element and ThreadContextElement inside of CoroutineContext serve the same purpose. I really think Ko…