Live data from Hacker News

Viewing profile — bringbart

bringbart

HN member
Joined
Fri, Oct 10, 2025, 8:52 AM UTC
HN karma
6
Public activity
2 items

About bringbart

No profile information was provided.

Recent public activity

  1. comment
    Comment #45536862

    unsigned is easier: 'if(index >= max)' and has fewer edge cases because you don't need to worry about undefined behavior when computing index.

  2. comment
    Comment #45536661

    >while unsigned wraparound leads to bugs which are basically impossible to find. What? unsigned sizes are way easier to check, you just need one invariant: if(x Always works, regar…