Live data from Hacker News

Viewing profile — oguz-ismail

oguz-ismail

HN member
Joined
Mon, Jun 17, 2024, 7:44 AM UTC
HN karma
-8
Public activity
327 items

About oguz-ismail

No profile information was provided.

Recent public activity

  1. comment
  2. comment
  3. comment
  4. comment
  5. comment
  6. comment
    Comment #45789088

    [flagged]

  7. comment
    Comment #45708312

    > rust is widely used by a lot of people it's used for rewriting CLI utilities with more color by five or so people

  8. comment
    Comment #45603289

    [flagged]

  9. comment
    Comment #45588259

    > How is anyone still arguing for C for new projects? It just works

  10. comment
    Comment #45568266

    find . -name '.*?' -prune -o -name '*.foo' -exec grep bar /dev/null {} + This is the POSIX way. You'd probably put it in a function in .bashrc

  11. comment
    Comment #45522788

    [flagged]

  12. comment
    Comment #45488733

    What about them?

  13. comment
  14. comment
    Comment #45487843

    > These are subsets of their respective languages, but Pretty much every language has such a subset. Nothing new then, sigh...

  15. comment
    Comment #45487720

    Nor is any other dime-a-dozen LLVM frontend with basically the same bullshit syntax. What is your point?

  16. comment
    Comment #45487710

    > Its that there are languages with additional features which make it easier to have a high confidence. If you can remove entire classes of bugs automatically, why not do so? Which…

  17. comment
    Comment #45478962

    [flagged]

  18. comment
    Comment #45478642

    > learn it Waste of time. Have some "AI" write it for you

  19. comment
    Comment #45470545

    Any big projects that doesn't compile without C23 support?

  20. comment
    Comment #45385688

    > 24.04 LTS Beta It's almost 2026. Yeesh

  21. comment
    Comment #45341877

    > I’d have liked to see some benchmarking of the new core utils against the old, Are they compatible enough yet? Last time I checked uutils wasn't honoring user locales at all.

  22. comment
    Comment #45330108

    How is ssize_t any better? It's not part of standard C and is only guaranteed to be capable of holding values between -1 and SSIZE_MAX (minimum 32767, no relation to SIZE_MAX).

  23. comment
    Comment #45330039

    It's more than 400 lines

  24. comment
    Comment #45328578

    r->depth would have been initialized to zero here https://github.com/rxi/sj.h/blob/5cb5df45c8c37fd8c2322026a11...

  25. comment
    Comment #45326243

    diff --git a/sj.h b/sj.h index 60bea9e..25f6438 100644 --- a/sj.h +++ b/sj.h @@ -85,6 +85,7 @@ top: return res; case '{': case '[': + if (r->depth > 999) { r->error = "can't go dee…