Viewing profile — C-programmer
C-programmer
HN member- Joined
- Fri, Oct 11, 2024, 9:36 PM UTC
- HN karma
- 35
- Public activity
- 9 items
- HN profile
- View on Hacker News ↗
About C-programmer
No profile information was provided.
Recent public activity
-
comment
Comment #42936189
It's interesting to compare this series to the actual source code of sqlite. For example, sqlite uses a LALR parser generator: https://github.com/sqlite/sqlite/blob/master/src/pars…
- story
-
comment
Comment #42570043
Inspect element on https://web.archive.org/web/20240827031455/https://ottertune... For more context: > I'm to sad to announce that @OtterTuneAI is officially dead. Our service is s…
-
comment
Comment #42517977
`write` can format your disk if a trickster sets LD_PRELOAD to a malicious shared object.
-
comment
Comment #42511905
The quintessential project for programming newbies. I implemented it when studying Haskell. https://github.com/vladov3000/boids-hs
-
comment
Comment #42421531
Yes, and I've seen them in production. Once you learn the rules, you can parse them reasonably well in your head but it is still really confusing at a glance.
-
comment
Comment #42421521
> I genuinely believe Groq is a fraud. There is no way their private inference cloud has positive gross margins. > Llama 3.1 405B can currently replace junior engineers I'd like mo…
-
comment
Comment #42418835
Genuinely, why? - For new code, all of the functions [here]( https://libc.llvm.org/gpu/support.html#libc-gpu-support ) you can do without just fine. - For old code: * Your project …
-
comment
Comment #42031362
ffmpeg has libraries. Why are you forking a separate process to call a single function? This is a very common problem I see in high level languages with poor C interoperability. Al…