惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

博客园 - 司徒正美
月光博客
月光博客
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
美团技术团队
WordPress大学
WordPress大学
罗磊的独立博客
Last Week in AI
Last Week in AI
人人都是产品经理
人人都是产品经理
爱范儿
爱范儿
MongoDB | Blog
MongoDB | Blog
J
Java Code Geeks
H
Hackread – Cybersecurity News, Data Breaches, AI and More
H
Help Net Security
S
SegmentFault 最新的问题
C
Check Point Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
腾讯CDC
Engineering at Meta
Engineering at Meta
The GitHub Blog
The GitHub Blog
F
Fortinet All Blogs
D
DataBreaches.Net
雷峰网
雷峰网
GbyAI
GbyAI
宝玉的分享
宝玉的分享

Hacker News - Newest: "AI"

AI can't read an investor deck AI as an attorney? Student uses ChatGPT, Gemini to sue UW over alleged racial discrimination Hacking MCP Servers in AI Systems – The Rug Pull: Tool Changes After Approval GitHub - MeepCastana/KubeezCut: Free Web based video editor Can AI judge journalism? A Thiel-backed startup says yes, even if it risks chilling whistleblowers Coming soon: 10 Things That Matter in AI Right Now DARPA built an AI to fact-check enemy weapons claims What explains heterogeneity in AI adoption? When AI Meets Muscle: Context-Aware Electrical Stimulation Promises a New Way to Guide Human Movements - Department of Computer Science AI Changed How We Build. It Did Not Change What Matters. Linux rules on using AI-generated code - Copilot is OK, but humans must take 'full responsibility for the… Meta spins up AI version of Mark Zuckerberg to engage with employees Code Mode: Let Your AI Write Programs, Not Just Call Tools | TanStack Blog GitHub - Delavalom/graft: Go framework for building AI agents. Type-safe tools, multi-provider (OpenAI, Anthropic, Gemini, Bedrock), zero vendor SDKs. India's TCS tops estimates, says new AI models did not dent services demand Gen Z's fading AI hype Strong feeling: we are in a folded AI reality GitHub - machinarii/total-recall-catalog: A reference catalog of latest knowledge retrieval, memory & RAG systems GitHub - mensfeld/code-on-incus: Give each AI agent its own isolated machine with root, Docker, and systemd. Active defense detects and stops threats automatically.. Quantization, LoRA, and the 8% Problem: Benchmarking Local LLMs for Production AI Iran war: We spoke to the man making Lego-style AI videos that experts say are powerful propaganda Powell, Bessent discussed Anthropic's Mythos AI cyber threat with major U.S. banks GitHub - immartian/bellamem: Persistent belief-graph memory for AI agents. Retrieves decisive context by importance — not recency, not RAG, not /compact. recursive-mode: The Repo-Native Operating System for AI Engineering After the attack on Sam Altman's home, will AI CEO's go on the offensive? The biggest advance in AI since the LLM Opus 4.6 vs GPT 5.4 One Prompt Unity World Generation Test “AI polls” are fake polls Client Challenge Can AI be a 'child of God'? Inside Anthropic's meeting with Christian leaders
Notes and Learnings about AI
unstacked · 2026-05-04 · via Hacker News - Newest: "AI"

Everyone is talking about how LLMs will replace software developers these days, but so far it has not yet happened. Here is what I learned and think about AI in Computer Science.

Fake Productivity

I believe that LLMs are great at doing simple and tedious tasks. However, for more complex ones, the use of AI is showing quick and easy progress, while it hides the actual time-intensive tasks (maintaining and debugging), resulting in the use of AI being not as effective as it seems at first glance.

Very often I hear from people that they created X in just a day or implemented Y in under 10 minutes using modern AI programming tools. But what this is not capturing is the time it will take to fix inevitable bugs or feature changes once this code is included in production. In the end, this means that writing by hand takes longer and might seem tedious, but it actually saves time in the long run, since the implementation is actually understood by a human and can be more easily understood by other humans than a typical LLM code. What I mean by that is that there is and always will be a certain style of coding from an AI, just like it is also obvious if a text is written by a real human or an AI. The same applies to code here. To conclude, I believe that every codebase that needs to be maintained and extended will be better off in the long run with pure human (or at least just extremely light AI-assisted) development.

Where I found the use of AI a great choice is for all the small temporary scripts that, e.g., visualize data at hand or plot an analysis. Stuff that does not need to live in production helps me better understand the problem at hand. Seeing it this way, there comes a new skill I myself am still learning: differentiating tasks where LLMs are a good use and those where it seems like the LLM can help a lot, but in the long run, it just makes the project more complex and harder to work with. I see this as AI literacy. Just like society is slowly learning the bad effects of social media and learns to turn away from those services, computer scientists have to learn to resist the urge to just prompt their problems away (and get a dopamine rush) instead of putting in the effort.

Another sign that the current LLM productivity is fake is also the fact that companies are still hiring new engineers (trueup). This means that although many companies enforce the use of LLMs, they still need the manpower to actually steer those agents. This is a sign that the actual logic is still coming from humans, while the LLM is doing an ok job at implementing what will need even more time to be fixed later down the road. Franksworld has also summarized this pretty well.

This is also supported by benchmarks like ARC, which show how far AI is from matching human reasoning levels.

Wrong Architecture

I do believe that LLMs are genuinely helpful and good at some tasks. For example, for everything where a strict machine-readable interface cannot be used or is not as efficient. Because this is where LLMs shine: at natural language. Software development is not natural human language; it's a human abstraction to better understand logic and algorithms. It's the computer's way of thinking pressed into a human-understandable way. So I do believe that help desk hotlines, personalized web search, teaching, and similar can very much be replaced by AI in the near future. But AI should not be used or forced onto any other task that over some translation or gap can also be described using language. The loss during that translation is bigger than the gain from using the LLM. One example is Cheminformatics. This is a field in the crossover of Chemistry and Computer Science, where molecules and reactions are described by a context-free grammar language. This is often used in LLMs to predict or model properties and reactions of these compounds. It's a new field in chemistry, but it lacks physical knowledge and constraints and furthermore is limited by the added complexity of its context-free grammar representation of molecules. Meanwhile, there is a way better geometric and more accurate representation that humans have used for years to get the same job done more intuitively. Also, note that the only groundbreaking model of this field (AlphaFold) did not use this human language but actually the accurate 3D geometry meshes.

To conclude this, I believe that the right representation of data matters the most when it comes to a model's capabilities. As long as our current AI models can only communicate and think in human ways (images, audio, text), they will not get any smarter or better at the tasks at hand than the human already is. Perhaps the natural language we use is the same thing that is holding us back from being more intelligent, just as it will be for LLMs.

This idea that current AI is inherently limited is beautifully described in "The bitter lesson" by Richard Sutton and this fantastic video by "Welch Labs".

Another recent phenomenon I came across is "cavemen": the idea to interact with the LLM in caveman-like language to reduce tokens while preserving performance. In my opinion, this is a sign of reduced human thinking too. It's just too tempting to describe the tasks at hand in short, incomplete sentences and let the AI infer the details and actual task to be done. But this is the critical point where the AI does not have human intuition or the same intelligence. At this stage is where bugs are introduced or code is generated that is hard to integrate into existing human-made architecture.

Another example I want to make for natural language as the wrong representation of reasoning and logic is the current evolution in robotics.

In this video by Welch Labs at about minute 13, he compares two ideas of model communication (in this case, between a vision and an action model). One is using an LLM and tokenized language to first understand the task and its environment. Then, this planning is given to the action model in text form, which generates the optimal robot arm movement from that. The second architecture discussed is doing a similar thing, but instead of using human language, it communicates using embeddings. It turned out that this second method worked much better.

Edit - 04.05.2026:

I highly recommend reading Yann LeCun's Position Paper on this topic.