Live data from Hacker News

Viewing profile — davery22

davery22

HN member
Joined
Mon, Nov 21, 2022, 10:37 PM UTC
HN karma
40
Public activity
11 items

About davery22

No profile information was provided.

Recent public activity

  1. comment
    Comment #47849999

    A few extra from my own notes- - Shirky Principle: Institutions will try to preserve the problem to which they are the solution - Chesterton's Fence: Changes should not be made unt…

  2. comment
    Comment #44284296

    related: McSherry's preceding blog post was all about demonstrating how binary joins can achieve worst-case optimal runtime, given suitable adjustments to the query plan. - https:/…

  3. comment
    Comment #44078861

    Algebraic effects are in delimited continuation territory, operating on the program stack. No amount of monad shenanigans is going to allow you to immediately jump to an effect han…

  4. comment
    Comment #44018645

    I think the article was getting at this at the end - different use cases naturally call for either a point-in-time snapshot (optimally serviced by pull) or a live-updating view (op…

  5. story
  6. comment
    Comment #42888772

    I made this "expert-friendly" doc, to orient all who find themselves probing the Java Streams source code in despair. It culminates in the "Stream planner" - a little tool I made t…

  7. story
  8. comment
    Comment #41693339

    So: A channel with buffer size 1, so long as it is only written to once and read from once, feels a lot like a Promise.

  9. comment
    Comment #41035375

    If I could ask independently of the sentiment of this thread - I am genuinely curious: Why is marking the difference good? (sorry this is only tangential to the article)

  10. comment
    Comment #39283933

    Cool use case. They're just called "non equi-joins" - because the join condition is an inequality. In general a join produces a row in the output table for each (left, right) pair …

  11. story
    Show HN: Vinyl: Relational Streams for Java

    Vinyl extends Java Streams with relational operations. I wanted to try a different approach than what I'd found in the wild, to get at a solution that feels good. Vinyl offers type…