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

推荐订阅源

WordPress大学
WordPress大学
Vercel News
Vercel News
博客园_首页
Y
Y Combinator Blog
美团技术团队
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
阮一峰的网络日志
阮一峰的网络日志
aimingoo的专栏
aimingoo的专栏
H
Hackread – Cybersecurity News, Data Breaches, AI and More
MyScale Blog
MyScale Blog
GbyAI
GbyAI
人人都是产品经理
人人都是产品经理
T
Tailwind CSS Blog
MongoDB | Blog
MongoDB | Blog
D
DataBreaches.Net
博客园 - Franky
Engineering at Meta
Engineering at Meta
量子位
The GitHub Blog
The GitHub Blog
F
Fortinet All Blogs
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
酷 壳 – CoolShell
酷 壳 – CoolShell
N
Netflix TechBlog - Medium

The Register - Special Features

Troops’ phones gave away location data to foreign adversaries Qualcomm picks bad time to pitch a $300 laptop platform AI agents get their own phone directory built atop DNS Carnival confirms ShinyHunters cruised off with 6M customer records after April breach Google engineer accused of turning Year in Search secrets into Polymarket payday Are we human? India's cyber agency sets clock at 12 hours to tackle exploited bugs as AI turns up the heat Broadcom gets early start on WiFi 8 with next-gen wireless routing kit Are we human? Microsoft Excel champ proves he still has the formula Anthropic co-founder hallucinates ghost in the machine Anthropic co-founder hallucinates ghost in the machine NASA plans Moon Base buildout with rovers, drones, cargo landers MyPillow must decide whether to be firm or soft as ransomware crims demand pay Starship shows it can deploy satellites, but Moon mission clock still ticks Huawei's chip law looks less like Moore and more like marketing Experts pour cold borscht on Farage's Russian hack claim Logitech unveils a cushioned mouse for all-day use AI eyes scanning for bugs create a worrisome Linux security trend A Russian speaker and jailbroken Gemini went on a hacking spree and emptied at least one MAGA victim's crypto wallets AI datacenter boom collides with US grid reality Media giant settles for $930k amid user-snooping allegations AT&T sues to ditch Cali copper phone lines to save billions FBI warns of Kali365 as device code phishing soars Techie claims Trump Mobile website was leaking thousands of people's data BOFH: Vibe-coded solutions arrive for problems nobody has Dems slam Trump for making cybersecurity hold out the tin cup while splurging on ballroom and Jan. 6 'slush fund' Google explains how it will infuse ads into AI answers AI is getting pricey, but relief is coming, but not for you Deus ex machina: Half of US Christians trust AI's spiritual advice
Zig creator seeks 'uncompromising perfection' before bles...
Tim Anderson Tim Anderson · 2026-05-28 · via The Register - Special Features

Software

Andrew Kelley interview describes paying monthly for cloud-powered AI coding as an 'insane proposition'

Andrew Kelley, inventor and BDFL (benevolent dictator for life) of the Zig programming language, was interviewed by Vitaly Bragilevsky, head of the Rust ecosystem at tool vendor JetBrains. 

Zig is a general-purpose language that aims to be as performant as C but with "fewer footguns," in Kelley's words. It is a niche language, at 82 on the latest RedMonk Programming Language Rankings, but well-liked by its users; last year's Stack Overflow survey has Zig as the fourth most admired language, defined as Zig developers who want to continue using the language.

We found the interview disjointed, perhaps because of the way it was edited, but nevertheless it touches on many of the key questions developers face today, including AI, GitHub reliability problems, and programming language choices.

Kelley describes why he created Zig, when other options including C, C++, Rust, and Go already exist. He said he set out to develop a digital audio workstation. He tried Go, but found interoperability with C libraries difficult, and said the garbage collector caused audio delays. He tried C++, or coding C-style using a C++ compiler, but found that small mistakes led to memory corruption bugs that took weeks to fix. He tried Rust but "really struggled to write code that would satisfy Rust's rules," and spent a month trying to make font rendering work.

Kelley's solution was to go in a different direction and create a new programming language. Zig, he said, "does not give up any of the power that C offers, while improving the flaws and weaknesses that C has."

As far as we can tell, the digital audio project remains in its early stages.

The Zig project is known for its no-AI policy, set out in the code of conduct. The reason, he said, is that AI contributions are "invariably garbage" and consume code review time that the team believes is better spent on human contributions. His view on AI, though, is more nuanced than these first remarks suggest. One of his objections to AI is that it is unteachable, whereas the team values mentoring contributors so that they may later become better contributors or even part of the core team. 

Another negative for AI tooling is that it is non-deterministic and therefore its output always needs review, even for something as simple as refactoring the name of a function. Kelley prefers deterministic tools in which he can have full confidence.

Regarding vibe coding – delegating all coding to AI – Kelley said it is interesting but he does not wish to use technology "controlled by four companies." He also said: "I'm not going to go from using my own computer and my own electricity, in order to use closed-source programming on someone else's computer through the network, that I have to pay for monthly. To me, that is an insane proposition."

"I'm always hearing people say that AI code works surprisingly well. But to me, that is not the bar that I want to hold software to. The bar that I want to hold software to is uncompromising perfection."

This perfectionist attitude is also evident in the progress of Zig, which after 11 years has reached version 0.16 and releases are sometimes characterized by major breaking changes. "When we tag 1.0 it will be a true, uncompromising labor of love," he said. It will also be a backward-compatibility promise, he said, whereas in pre-release the team can continue to improve the language without that constraint. The aim, he said, is to create a language for the next 50 years.

Why did Zig move from GitHub? "GitHub simply stopped working for us," he said. "We're here to write software. If our continuous integration server doesn't work, we need to find one that does."

Zig migrated to Codeberg, which Kelley said was "essentially a clone of GitHub, so it was an easy transition to make." He also likes that Codeberg is a German nonprofit, on the grounds that "I find nonprofits to be a more stable business than startups or corporations." Zig itself is funded by the Zig Software Foundation, which is a US 501(c)(3) nonprofit.

A contentious aspect of Zig is a decision three years ago to "fully eliminate LLVM, Clang, and LLD libraries from the Zig project," though the Clang compiler will remain. According to Kelley, "you want to avoid a dependency for your core product. We have done this with LLVM, so we're in the process of rectifying this mistake."

If JetBrains was hoping for endorsement of its tools, it was disappointed. "I have never used the JetBrains products because it's closed source," said Kelley. He uses a terminal and Vim (Vi improved) for coding, he said. 

One thing we did not learn is when to expect Zig 1.0. According to the release notes, though, "the 0.17.0 release cycle will be short." ®