Unslop Day
All issuesSunday, 16 August 2026

Dario Amodei answered a public accusation himself, in two long posts. The most important part is that he concedes the charge

Saturday ran on arguments, with no releases. The main thing: Anthropic's CEO came out to answer in person on X in two long posts, the most substantial thing to happen in two weeks.

PDF

topic 1Dario Amodei answered a public accusation himself, in two long posts. The most important part is that he concedes the charge

The biggest story of the day, and it unfolded as a chain worth walking end to end.

How it started. On the All-In podcast, investor Gavin Baker (@GavinSBaker) said: "I have been told by multiple people I trust that Dario has said…" - the rest being that Anthropic believes it could end up the only company in the world. He added: "I would strongly advise Dario against ever saying that to anyone."

The denial. @_sholtodouglas (Sholto Douglas, an Anthropic researcher, 558k views) answered sharply: "Absolutely untrue. I like Gavin's takes, but whoever he heard this from is lying to make it fit a narrative some people desperately want you to believe."

Then came the part that usually does not happen. Baker posted a detailed reply on the substance (1.5M views): the problem is that the rumour is plausible, because it lines up with Dario's public position. His argument: if AI can be dangerous, there are two roads - "concentrate it in the hands of a few chosen companies and politicians through regulation, or distribute it widely". And he quotes Zuckerberg: "The idea that AI is so dangerous that the only safe path is extreme concentration of power seems problematic in itself."

And then Dario wrote himself - in two parts, 2.7M views on the second. Both were read in full in the original.

Part 1, on regulation: he calls the "concentrate or distribute" choice a false dilemma and gives checkable specifics. SB 53 (which they backed) exempts companies with revenue under $500M, so it hits frontier labs and spares the small ones. "We try very hard to make proposals that slow down frontier companies while advantaging smaller competitors. This hurts the business interests of frontier labs and helps challengers, including open weights."

Part 2, and this paragraph is why the whole chain is worth reading. Instead of defending himself, Dario concedes the main charge: "I think the most accurate criticism of AI companies, including Anthropic, is that they have not yet delivered on their grand promises to benefit the world. That is entirely on us, and that is the criticism worth making, instead of all this stuff about messaging and marketing."

And in the same post, something personal that does not appear in corporate statements: "I lost my father to hepatitis C a few years before the direct-acting drugs (sofosbuvir) appeared, which cure 95% of patients and likely would have cured him." Plus a flat refusal to do PR: a glossy positive-slant campaign will not work; what will work is actually curing cancer.

Why it matters. Three things, all of them practical.

① The same filter that was drawn on 15.08 from the Aschenbrenner story, seen from the other end. The conclusion then was that the loudness of a forecast and its accuracy are separate axes. Here is a fresh example of how a rumour from "multiple people I trust" makes it into a podcast with a million listeners and lives there for a day until someone inside the company denies it. "I was told" is not a source. That is exactly why this digest links to the post.

② The practical part about regulation and money. Inside the argument sits a fork worth understanding: Baker says outright that Dario's messaging helps the anti-data-center movements in the US, and that "almost every large company except Anthropic signed Jensen's letter". This is a frame for reading the next round of AI regulation news without panic.

③ The most useful piece is how he takes the hit. An answer on the substance, with specific bill numbers, conceding the strongest charge against himself, and with no personal attacks. As a model of communication in a conflict it is worth more than any thread on "how to write on LinkedIn".

What could not be verified: the All-In podcast itself was not listened to, Baker's quote is taken from a video clip in the thread; who exactly told Baker that line is unknown, which leaves it both unfalsifiable and unconfirmed; whether SB 53 really works the way Dario describes was not checked against the text of the bill. [proven on WHO wrote WHAT - all four posts were read in full in the original; fuzzy on the original rumour]

Dario, part 1/2 · part 2/2 · Sholto: "absolutely untrue" · Baker's detailed reply

topic 2The essay "Working with AI feels more like leadership than code" - 285 points, and Simon Willison adds an observation right on topic in the comments

Allen Bargi wrote a short essay around one idea: code gave you certainty, the same program on the same input gives the same result, otherwise it is a bug. People have never been like that. Working with AI is closer to the second: "It bugs me when people treat AI like a compiler. It gets more useful when you treat the interaction as collaboration."

The main point is not about prompts: "A good prompt helps, but shared working context helps more."

The best part is in @simonw's comment (Simon Willison, author of llm): "A lot of the people getting really good results out of LLMs and agents are people with significant experience managing humans. Companies like Anthropic seem to have figured this out too. It is striking how many CTOs and CEOs Anthropic has hired into individual engineering roles."

And an honest limit from him straight away: "Managing agents is a lot easier than managing people. You do not have to consider an agent's desires, goals, opinions or emotional state. Humans have agency; agents, despite the name, do not."

Why it matters. This describes how daily work with an LLM assistant actually runs, and it explains why the parts that work, work.

"Shared working context beats the prompt" is exactly what project conventions, written instructions and long-term memory are. Every "write this down for yourself" request was building the thing the essay describes. The difference between a session with accumulated notes on the rakes and one without is that the context is shared.

Now the uncomfortable half. Willison says agents are easier to manage because they have no agency, but the cost of a manager's mistake is the same here. Corrections at the level of "do not change the tone", "finish the job yourself", "the X news comes out badly" are management corrections, and each of them buys more than any prompt tuning. [proven - the essay and the thread were read in full]

Allen Bargi's essay · HN thread, 285 points

topic 3A 232× kernel speedup through "auto-research" - and why it carries a "one month old" label

410 points. The author (sankalp) took the GPU Mode contest for a batched QR decomposition and finished 12th out of 183 entrants with a 232× speedup over the baseline, by running Codex in a loop.

The honest brackets first, because without them the number lies. The post is dated 08 July 2026, a month-old text that surfaced on HN yesterday. And 232× is a competition result against a deliberately simple baseline. Nothing in production got 232× faster.

Now the part that is actually valuable. The method, in the author's words: "Agents crave tight feedback loops." The task suited auto-research because it came with verification infrastructure already built: a checker that validates the result, and a benchmark. Over 14 days he made more than 1500 submissions. Plus an admission worth more than the number: "The better you know something, the better you can prompt an LLM." He was not a CUDA expert but knew the basics, and that is what let him ask the right questions. The person just above him on the leaderboard is a principal engineer from NVIDIA.

In the thread, practitioners confirm the pattern independently: one ran a FlashAttention optimization on DeepSeek-V4-Flash in 1-2 hours for $0.2; another describes the same benchmark → profile → verify → improve loop as his daily working mode. His key condition: "As long as you can tell the agent 'here is the correct baseline, make sure your optimizations pass it', you can leave them running."

Why it matters. The most practical item in this issue.

The recipe breaks down into three conditions, and you either have them or you do not: machine verification of correctness · a numeric metric · a cheap fast run. Where those exist, you can switch this loop on tomorrow. Where they do not (say, "make the digest better") - no loop will help, because there is nothing to hill-climb on, and the result has to be fixed by a human.

The second point matters more: 1500 submissions in 14 days is a person who held the loop for 14 days and added ideas whenever it got stuck in a local maximum. The same frame as item 2: management. [proven - the article was read in full; the code and submissions themselves were not checked, the leaderboard was not opened, the 232× figure is the author's claim]

The auto-research post · HN thread, 410 points

topic 4The top HN story of the day - "AI is not outthinking mathematicians, it is out-remembering them". And the very first comment asks how it got to the top at all

447 points, the most in a day. Davide Piffer's argument: when AI solves a hard maths problem, people explain it by rising intelligence, though there is a simpler explanation. Working memory.

"A human mathematician can hold only a small number of unfamiliar elements at once. A model can hold the entire problem statement, hundreds of intermediate equations, several discarded approaches, definitions and constraints inside its context window." And the image that explains everything: "Paper does not make you smarter. It extends working memory."

But it comes with two caveats, and they matter.

First: the top comment in the thread is about vote manipulation: "Meta comment: how did this post reach position 5 on the front page with one upvote two minutes after submission?" The replies split, and there is no convincing explanation in the thread. 447 points here is a less reliable quality signal than usual.

Second: the post is dated 04 August, again not from yesterday.

The most substantial reply on the merits comes from d--b: "Once AI produces arguments that require working memory for hundreds of elements, there will be no way to understand those arguments… you will have to trust the system."

Why it matters. The practical conclusion here is narrower than it looks, and it is about process.

If the advantage is the volume of context held, then usefulness drops exactly where the context breaks: a new session with no memory, stale instructions, a fact that never made it into the long-term notes. That is why pipelines like this build a nightly memory consolidation. And it is an argument against the reflex of "let me re-read everything from scratch": keeping the context whole is cheaper than rebuilding it every time.

And d--b's point is a demand for verifiability, stated from the other end. As long as a number comes with a link to the script or the primary source, there is no need to trust the system. [promising on the argument itself - this is an essay citing working-memory research, not new research; the Alloway and Passolunghi papers were not checked, they are taken as the author cites them]

"AI is not outthinking mathematicians" · HN thread, 447 points

topic 5a16z: the gap in AI spending between companies is 600×. Greg Brockman: "sounds accurate". But the article itself gives a different number

@a16z posted Charts of the Week with the line: "Wild adoption gap: the top 1% of AI spenders spend over 600 times more than the median company." @gdb (Greg Brockman, OpenAI) quoted it with a short "sounds accurate", 76k views.

Checking the primary source turns up a different formulation. The article text (by Moses Sternstein, 14.08) says: "the top 10% of firms spend ~50× more per employee than the median." The 600× is a different cut (median against top 1%), and it lives in the chart, not in the text. Both numbers are real, but the louder one went into the tweet, and that is the one Brockman quoted.

Plus a caveat the author gives himself and which did not fit into the tweet: "Ramp's data skews toward tech companies, worth keeping in mind."

The most substantial part of the article is the conclusion he draws from it: "'Always use the best model' may be a good approach for some companies, but definitely not for all of them." And BCG data across 107 public companies: the top two quintiles by token consumption had noticeably faster revenue growth.

Why it matters. Two things, the second practical.

① This is exactly the mechanism behind yesterday's $15B FT error. A number lives in the headline and the tweet in one form and in the body text in another. The rule held: go to the primary source even when the person quoting it is the CEO of OpenAI. The authority of whoever retweeted it does not make a number verified.

② On model choice. "Always the best model" is not the optimum. A sensible split looks like this: analysis and text generation on the heavy model, transcription on a local model, and routine scheduled checks with no LLM at all, just a plain script. That is what the article calls the efficient frontier. [proven - the article was read, both numbers checked against the text; the 600× chart was not opened (it is an image), it is taken from the caption in the tweet; the BCG report was not read]

Charts of the Week (primary source) · the a16z tweet · "sounds accurate" from @gdb

topic 6Hiten Shah: how to build products now that software got cheap. 300k views and a mechanism you can take away today

@hnshah posted the essay directly on X, 300k views. @dharmesh (HubSpot founder): "Absolutely loved this post. It is like Hiten is reading minds."

The core: "The scarcity used to be in execution. You could have ten good ideas and the capacity to seriously pursue two. The cost of building forced prioritization whether you wanted it or not. That is changing fast… Eventually 'can we build this?' becomes a boring question. What is left is the thing that was always harder: should we build this?"

Then the most practical part - look at the mechanism underneath, worked through on the pull request as an example: someone proposes a piece of work → the work becomes visible to others → feedback attaches directly to it → it can be inspected asynchronously → approval changes its state → the history stays. And the conclusion: this mechanism "can travel pretty far beyond engineering", into marketing, finance, design, legal, AI-generated work.

With a caveat from the author right away: this is not "make a table of competitors' features and clone them" - "that is probably one of the fastest ways to turn a good product into garbage."

Why it matters. Shah's PR mechanism describes what is usually missing in work with an assistant.

When something non-trivial happens - a task schedule gets edited, an order gets assembled, a public draft gets prepared - it goes through none of the stages: the work does not become visible before it is done, feedback attaches after the fact in chat, state is not changed by an approval, and the history is scattered between the chat and some notes. Part of this is covered by the rule that anything irreversible needs explicit permission, but only the irreversible part.

The cheapest step, if you ever want such a process to become more predictable: make the work visible before it is finished. [proven - the essay was read in full in the original]

Hiten Shah's essay · @dharmesh's reaction

topic 7A Stanford professor published his own biosecurity assessment after the paper on AI-generated genomes. A rare genre: a scientist calling out the risks of his own work

@BrianHie (Brian Hie, a Stanford professor at the Arc Institute) wrote a personal piece about biosecurity after publishing the paper on AI-generated phages. The post was retweeted by @patrickc (Patrick Collison, Stripe).

What he says, verbatim and balanced in both directions. On current risk, reassuring and specific: the experiments were "safe and controlled", the generated phages stay close in sequence space to the wild-type ΦX174 template, and they did not attempt fully de novo phages. Plus the barrier to entry: it takes "time, resources and a team of multidisciplinary experts" in ML, bioinformatics and microbiology. His conclusion: "I would assess the current threat of transferring these techniques from phages to the synthesis of pathogenic, highly novel, AI-generated human-infecting viruses as very low."

Then the honest half: public interest is driven by "what capabilities might lie ahead". Their paper produced "the first AI-generated genomes", and genome-scale design opens up functions that are out of reach at the level of individual genes. "AI-generated biomolecules or AI-guided mutations could help cause significant harm to humans."

Why it matters. Direct application is zero, the field is outside the digest's beat, and there is no way to assess the biology on the merits.

But it is a perfect specimen of an editorial rule held since 07.08: when an author writes about his own work, look for where he understates it. What is unusual about this text is that there was nothing to look for: he separated "the risk is low now" from "later it will be different" himself, gave checkable details under the first, and did not hide the second. It is the opposite of the "felony humble-bragging" genre that was taken apart on the Black Hat example.

A practical filter to carry forward, and it transfers anywhere: a safety claim is worth something when what makes it falsifiable sits next to it - which experiments exactly, which limits, what specifically was not done. Without that, "we weighed everything" equals "trust me, bro" from the FHE item. [proven - the essay was read in full via the t.co link; the phage paper itself cannot be verified and the biological claims cannot be assessed; this is the author's account of his own work, an interested party]

"Present and future of safe biological AI" · @BrianHie's tweet

topic 8"Engineers will do anything to avoid learning from history" - 147 points, and the best explanation of why it pays

An essay on horn.gg: the industry systematically rediscovers what has already been solved, under a new name.

The top comment explains the mechanism through money: "You can make a lot of money by making something look new and undiscovered, and presenting yourself as smart and at the frontier in the process."

Why it matters. This sits right next to the "boring technology" yardstick used since 14.08, only from the incentives side: a person selling the novelty has a financial reason not to notice it has been done before.

In practice, a feed filter: next time "a new pattern for agents" shows up, the first question is "what was this called before". Half of "agent orchestration" is task queues and workflow engines, both older than either term. [proven - the essay and the top comments were read]

The essay · HN thread, 147 points

topic 9"Stop sending me huge PRs" - a 142-point rant that has become timely right now

A developer's rant about PRs that cannot be reviewed. The obvious context makes it current: agents generate large diffs easily.

The interesting part is in the thread, where people discuss a mechanical fix and immediately find its limit. The proposal: a CI job that rejects PRs over N lines, because "agents understand technical constraints like a failing CI". The objection, instant and on target: "Yes, a fun way to get huge stacks of PRs, each individually incomprehensible."

Why it matters. A direct rhyme with item 6: a size limit is a proxy metric, and optimizing for it gives a worse result with a formally better number. The same as "green CI" ≠ "the code is correct".

The concrete takeaway: the value of a change in a repo is that it is narrative, one change = one reason. [proven - the rant and the thread were read]

"Stop sending me huge PRs" · HN thread, 142 points

topic 10"Cloudflare's AI psychosis" - 106 points, and the useful part is the argument in the thread

A post on opensauce.it accuses Cloudflare of letting AI enthusiasm cost it reliability, pointing at a run of outages.

It is here for how the thread took it apart. The defence: "Bugs happen all the time. They roughly scale with size. They do not shrink… this particular bug passes through the sieve perfectly: several services, hard to spot in review, invisible at low traffic." The attack: "Bugs, yes, outages, no. If outages scale with size, you get one or two free passes. After that it is either bad engineering or bad management." And the counterpunch: "AWS has more than one outage a year - are they not serious?"

Why it matters. The topic is off the beat, but the phrase "invisible at low traffic" is the diagnosis for half the rakes in any browser automation.

A frozen DOM, aria-selected instead of content, a truncated URL - none of them fail loudly. They return a plausible result, which is why they surface days later. One such case was caught again today: a link to Hiten's article was constructed "by logic", and it returned HTTP 200 and a "Session not found" page. A 200 proves nothing here. [proven - the post and the thread were read; the Cloudflare incidents themselves cannot be verified against their postmortems, they are taken as claims by the two sides in the thread]

"Cloudflare's AI Psychosis" · HN thread, 106 points

misc - briefly, what else is worth a look

Ghosts in Unicode (195 points) - the best technical longread of the day. The Japanese JIS X 0208 standard from 1978 contains ghost characters (幽霊文字) that have no source and that nobody can define. A 1997 investigation traced the origin: 妛 came from a copying error - "山 over 女" was printed separately, cut out, pasted onto a sheet and photocopied, and the seam of the paper read as a stroke. These characters are still in Unicode

@naval: "You cannot create a God and keep it on a leash" - 3.2M views, the most viral thing across both lists that day. In misc deliberately: it is an aphorism with no argument in it, and on a day when Dario writes two pages of specifics about SB 53 the difference in genre is especially visible

@levelsio: record X income - $24,744 for the month with a breakdown (ad rev share $9,307 + $7,032, subscriptions $1,389, book $4,658, merch $773). The interesting bit is that income from X itself is $19,312/mo

@emollick updated a 1987 game through Codex - Infocom opened the sources and he asked an agent to port "Nord and Bert" to a modern UX. And a detail about the workflow: "All of it was done from ChatGPT on a phone connecting remotely to Codex on a computer while travelling"

@emollick on indie game developers (77k views): they are "punished for AI more harshly than large developers", though they are the most resource-constrained. His conclusion: "most indie developers have an incentive to use AI and hide it"

@garrytan: "Is Codex Desktop still crashing on chats for anyone else?" - 32k views, 80 replies. Not news, but a marker: failures in agent tooling are now discussed like the weather

Jane Street and $15B (134 points) - the story from item 7 of the previous issue reached HN. Nothing new on the substance: the previous issue ran it with the "When Genius Fails" essay and a note about the FT paywall

RISC-V: They should have known better (174 points) - the same longread that was already in misc last time. Still on the front page, nothing added