Viewing profile — oguz-ismail
oguz-ismail
HN member- Joined
- Mon, Jun 17, 2024, 7:44 AM UTC
- HN karma
- -8
- Public activity
- 327 items
- HN profile
- View on Hacker News ↗
About oguz-ismail
No profile information was provided.
Recent public activity
-
comment
Comment #46033995
[dead]
-
comment
Comment #46003607
[dead]
-
comment
Comment #45862352
[dead]
-
comment
Comment #45814484
[dead]
-
comment
Comment #45814364
[dead]
-
comment
Comment #45789088
[flagged]
-
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
-
comment
Comment #45603289
[flagged]
-
comment
Comment #45588259
> How is anyone still arguing for C for new projects? It just works
-
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
-
comment
Comment #45522788
[flagged]
-
comment
Comment #45488733
What about them?
- comment
-
comment
Comment #45487843
> These are subsets of their respective languages, but Pretty much every language has such a subset. Nothing new then, sigh...
-
comment
Comment #45487720
Nor is any other dime-a-dozen LLVM frontend with basically the same bullshit syntax. What is your point?
-
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…
-
comment
Comment #45478962
[flagged]
-
comment
Comment #45478642
> learn it Waste of time. Have some "AI" write it for you
-
comment
Comment #45470545
Any big projects that doesn't compile without C23 support?
-
comment
Comment #45385688
> 24.04 LTS Beta It's almost 2026. Yeesh
-
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.
-
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).
-
comment
Comment #45330039
It's more than 400 lines
-
comment
Comment #45328578
r->depth would have been initialized to zero here https://github.com/rxi/sj.h/blob/5cb5df45c8c37fd8c2322026a11...
-
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…