Reddit Programming
211 subscribers
1.22K photos
124K links
I will send you newest post from subreddit /r/programming
Download Telegram
Why Large Language Models Won’t Replace Engineers Anytime Soon
https://www.reddit.com/r/programming/comments/1objb52/why_large_language_models_wont_replace_engineers/

<!-- SC_OFF -->Insight into the mathematical and cognitive limitations that prevent large language models from achieving true human-like engineering intelligence <!-- SC_ON --> submitted by /u/gamunu (https://www.reddit.com/user/gamunu)
[link] (https://fastcode.io/2025/10/20/why-large-language-models-wont-replace-engineers-anytime-soon/) [comments] (https://www.reddit.com/r/programming/comments/1objb52/why_large_language_models_wont_replace_engineers/)
Some Advice for First Time Job Seekers
https://www.reddit.com/r/programming/comments/1obwba5/some_advice_for_first_time_job_seekers/

<!-- SC_OFF -->This is based on my experiences finding work throughout my career. I had to find new positions much more often that I would have liked to and this informs the video. There is no silver bullet here, just some straightforward advice and analysis of the current job environment. <!-- SC_ON --> submitted by /u/stumblingtowards (https://www.reddit.com/user/stumblingtowards)
[link] (https://youtu.be/BAfs7UOmyl0) [comments] (https://www.reddit.com/r/programming/comments/1obwba5/some_advice_for_first_time_job_seekers/)
LogMod: What if C had a logging framework with modern semantics?
https://www.reddit.com/r/programming/comments/1oc2h8k/logmod_what_if_c_had_a_logging_framework_with/

<!-- SC_OFF -->In my own experience when looking into C logging libraries, I found that they either rely on hidden global state or quietly calls malloc behind the scenes. In environments where you need deterministic memory usage and explicit control over resources, that’s problematic. I wanted to see if it was possible to bring more “modern” logging semantics - things like configurable contexts, custom labels, colour coding, callbacks and thread‐safety - into plain ANSI C without using dynamic memory or preprocessor magic. (it is possible!) LogMod is the result. It’s a single‑header library that lets you initialise a logging context with a fixed table of loggers, pass that context around instead of using globals, define your own severity levels and colours, hook in custom callbacks, and even make it thread‑safe with a user‑supplied lock. It avoids malloc entirely. The challenge was fitting all of this into a few hundred lines of portable code and retaining C’s “zero-overhead” philosophy. <!-- SC_ON --> submitted by /u/LucasMull (https://www.reddit.com/user/LucasMull)
[link] (https://github.com/lcsmuller/logmod) [comments] (https://www.reddit.com/r/programming/comments/1oc2h8k/logmod_what_if_c_had_a_logging_framework_with/)