Stimpunks Foundation × More Realms · What Changed, and When

Changelog

Every piece as it arrived, every substantial revision, and every fact-check — corrections included. These are living documents, and a living document should show its work.


This log is backfilled from the collection's full commit history and kept up from here. It records three kinds of change: pieces added, pieces substantially revised, and fact-check and attribution audits — including the errors we found in our own work and exactly how we fixed them. Small typo passes and styling tweaks are left out; anything that changes what a piece claims is in.

Why publish our corrections

We braid real science with ideas credited to named thinkers, so the facts and the attributions have to be right. We're human, and we've gotten things wrong — a paraphrase dressed as a Sagan quote, a Martin Luther King Jr. line credited to Baldwin, a forest-wide fungal network asserted as settled fact because it rhymed so well with mutual aid. Naming those in public is part of the method, not an embarrassment to bury.

The working guidelines and the full per-piece ledger live in FACTCHECK.md. If you spot an error, open an issue or reach us at stimpunks.org. Corrections are mutual aid.

2026 · September 13

Twenty-four style rules that were written out a thousand times, and two wrong theories about why that was safe

A colophon heading, a page counter, a byline: the same rules, copied into page after page. They now live in one place. Getting there took three attempts, because the first two moved rules that looked identical and were not interchangeable.

Site1,015 copies of 24 rules become 24 rules

Each page here carries its own stylesheet, which is what lets a zine be one file you can save and open anywhere. The cost is that genuinely shared furniture gets written out once per page — and 24 rules were byte-identical across twenty or more pages each: 1,015 copies, 94,726 characters. Changing how a colophon heading looks meant editing it in 133 files, or more realistically meant never changing it.

On download size this is close to a wash, and it is worth saying so. Compressed, the pages lose about 76 bytes each and the shared sheet gains 1,433 — which pays for itself only once a reader has opened about nineteen pages. A search engine crawling the whole site comes out ahead; someone reading three zines pays slightly more. The reason to do it is that one definition can be corrected and a thousand copies cannot.

Fact-checkTwo wrong theories, both caught by rendering all 207 pages

The first attempt moved 59 rules and changed 2,878 elements across 53 pages. The reasoning had been: a page that writes its own version of a rule overrides the shared one, so sharing is safe. That is true per property, not per rule. A page whose version set the colour but said nothing about letter-spacing kept its colour and silently inherited a letter-spacing it had never had. Forty-seven rules fail that test and stayed where they were.

The second attempt moved 27 and changed 52 elements, all on the two scroll zines. One rule — the one that shows the current spread — is more specific than a scroll zine’s own layout rule, and would win. No reader would ever see it, because nothing marks a spread “current” on a page that scrolls. But four of our own measuring tools add that mark in order to see every spread at once, so sharing the rule would have changed what those tools look at. Three rules dropped for touching state the tools inject.

What shipped: 24 rules, verified at zero change. Every computed property of every element on all 207 pages, before against after — 140,667 elements, not one difference — with the “before” copies pinned to a frozen duplicate of the shared sheet, so the comparison measured the move and not the sheet swap. Both wrong theories sounded right and neither survived being rendered.

2026 · September 13

One page-turning function instead of 107, and the security policy got a quarter smaller for free

Every paged zine carried its own copy of the code that turns the page — 107 copies in 17 slightly different versions. The only thing that varied between them was the number of spreads, which the shared file could already count. All 107 now share one implementation.

Site115,101 bytes of duplicated page-turning code, replaced by 88 lines

The zines here are paginated, and each one shipped with its own copy of the function that moves between spreads. 107 copies, drifted into 17 variants — and the variants differed in exactly one character sequence: const total = 12, or 8, or 16. The spread count. Which the shared script has always been able to count for itself, and does, for the footer controls and the deep links that were already shared.

So it was a hundred and seven copies of one function, maintaining a number that could not be wrong unless the copy was wrong too. Checked before touching anything: on all 107 pages the declared total matched the actual number of spreads exactly. The shared version reads its position from the page instead of being told, and it now also binds the arrow keys, which not every page had.

A page can still bring its own. The shared one steps aside if a page defines its own page-turner — one does, deliberately, because it does not load the shared script at all. And the two scroll zines, which have spreads but no buttons, correctly get no pager: the check is for the buttons, not for the spreads.

SiteDuplicated script is duplicated security surface

The unexpected half. This site’s content security policy works by listing a cryptographic hash of every piece of script written directly into a page — that is how a site with no server can allow its own code and nothing else. Seventeen near-identical page-turners meant seventeen separate hashes, because a hash does not care that two functions differ by one digit.

Moving the code into a file that is already allowed by name retires all seventeen. Distinct inline scripts went from 50 to 34, the elements carrying them from 163 to 58, and the policy itself from 3,061 bytes to 2,197 — sent on every request, to every reader. Nobody set out to shrink the policy; it fell out of not repeating yourself.

Fact-checkTested by driving all 107, and then again with the real policy switched on

A shared pager that loads is not a pager that pages. So every one of the 107 pages was driven in a real browser: start on spread one with the back button disabled, click forward and check the spread, the counter and both buttons, press the right-arrow key, walk to the last spread and check the forward button disables, then follow a #spread-4 link and land on spread four. 107 pages driven, none failing.

Then the same test again with the actual security policy served, because this site has learnt that a policy tested only against attacks is untested: a policy that breaks a hundred page-turners is worse than none. Pages paged, zero violations reported.

One test failure was the test’s fault and is worth naming. The page that keeps its own pager was reported as failing the deep-link check — because it has never had deep links, that feature living in the shared script it does not load. The assertion was demanding a feature the page was never offered. A test that does not know what a page is for will confidently report it broken.

2026 · September 13

A thousand style rules that styled nothing, and the two bugs in the tool that found them

Every page carries its own stylesheet, copied forward from the page before it. Over 110 zines that accumulated 1,054 rules aimed at things none of those pages contain. They are gone, and nothing on the site looks different — which is the entire claim, and it was measured rather than assumed.

Site1,054 dead selectors removed from 119 pages

This started with one zine. No. 54 was found carrying eight rules for a comparison table it has never had, and the same dead block also held the only 720-pixel layout breakpoint on the site — a number chosen for the table, left behind when the table never arrived. The bytes were harmless. The breakpoint was a decision nobody could explain, sitting in a file nobody had reason to re-read. So we looked at the other 206 pages.

What was there was almost entirely template residue: colour helpers for accents the page never uses, prose scaffolding for callouts and pull-quotes it never sets, layout rules for a second column it does not have. Crucially, no other page had No. 54’s defect — we checked specifically for a whole block of dead rules carrying a breakpoint, and there were none. Everything else was cost without consequence.

Why it is safe to delete, stated as the argument it is. A rule can only affect a page if its selector matches something. These name classes that appear nowhere in the page, nowhere in its scripts, and nowhere in the shared script — so no click, no state, no interaction can ever produce them. A selector that can never match contributes nothing to anything. That was then checked rather than trusted: every computed property of every element on the twelve most affected pages, before and against after — 7,705 elements, not one difference.

Fact-checkThe tool was wrong twice before it was right, and one of the errors would have broken every zine

First, it did not know about the shared script. Pages get some of their classes at load time, from the one JavaScript file the whole site shares — the pager controls on every zine, among others. Those classes are not written in the page, so the first version of the audit called their styling dead: 87 live rules, on the pager of every paged zine. Acting on that run would have broken the thing readers touch most.

Second, comments were being read as part of the rule that followed them. That hid any block introduced by a comment, and — far worse — meant a comment that happened to mention a class could condemn the perfectly live rule underneath it. On a site whose stylesheets are heavily commented, that is a loaded gun. Comments are now parsed as their own thing.

And the verification was wrong before it was right, in the same direction as yesterday’s correction. The first before-and-after comparison reported 3,611 changed elements, which looked like a disaster and was an artefact: the browser lists an element’s custom properties in a different order once rules are removed, and one animated panel was sampled at two different moments of the same fade. Sorting the properties and freezing animation gave the true answer of zero. Three times in two days a measurement has been wrong in a way that looked like a finding.

SiteThe audit is kept, and deliberately not made a gate

The checker lives in the tools directory and is run on demand, like the one that verifies video embeds. It is not a tenth gate. Every gate here answers a question about something a reader meets — a colour, a position, a broken link, a page that prints blank. Dead CSS costs bytes and costs the reader nothing, and a gate that fires on it would be noise in front of the nine that matter. The one time it did matter, the cost was a stray breakpoint, and that is now fixed and written down.

2026 · September 13

We said the cover artwork lay across the subtitle on 93 covers. It was 23, and we made the exact mistake our own checker was built to avoid

Yesterday’s cover-collision entry carried four numbers measured the wrong way. The headline finding stands; three of the four figures under it do not. Found while Ryan asked an unrelated question about one zine’s stylesheet.

CorrectionA drawing’s box is not a drawing

What we said, yesterday, on this page and in two working files. That the cover artwork lay across cover type on “every one of the 98 covers that carry any: over the title on 95, the issue line on 94, the subtitle on 93.”

Those came from the artwork’s bounding box, not the artwork. A cover motif is an SVG, and the drawing rarely fills its own frame — the median motif here inks about 30% of the box it sits in. So a box can sit squarely on a paragraph while every visible mark clears it by a wide margin. Re-measured by ink — the union of the shapes and labels actually painted — at the same phone width, on the same pre-fix state: 98 of 99 covers, with the issue line crossed on 90, the title on 84, the subtitle on 23 and a byline on one. The subtitle figure was wrong by seventy pages.

The error has a precise shape and we had it written down already. Our collision checker measures where the letters are, and its own notes explain why at length: an early throwaway version compared bounding boxes and, in its author’s words, drowned in false positives. That tool did not make this mistake yesterday and does not make it now. A one-off probe written beside it did — and the subtitle claim happened to be true on the one cover we checked by eye, so a real observation on a single page got generalised across ninety-eight by a method that could not support it.

What still stands, stated plainly so the correction is not read as wider than it is. The count of covers affected is unchanged at 105 of 108. The text-on-text figures — 313 collisions across 103 pages — came from the checker’s own ink measurement, not the bad probe, and are unaffected. The fix shipped yesterday is correct and is verified at zero findings on both measured widths. Only the artwork figures were wrong, and only because of how they were counted.

SiteOne zine had a breakpoint tuned for a table it never had

The question that turned all this up. Yesterday’s entry ended by flagging No. 54 as the one page whose layout switches at 720 pixels rather than the 600 every other page uses, and warning of a gap between the two. Ryan asked why it was different.

It was a fossil. The block at 720 was written for a layout this page does not have: a two-column spread to collapse — but every spread here is set to stack at all widths anyway, so that rule did nothing — and a comparison table to shrink, when no table has ever existed on the page in any version of it. Two of its rules styled furniture that was never there. The breakpoint number was chosen for content that never arrived.

And the gap we warned about was not real either. It was measured the same box-shaped way as the figures above. Looking at the page at that width shows the motif — a small accretion disc with a caption, high in a mostly empty frame — sitting well clear of the words. The page is now on the house 600, the dead rules are gone, and it was measured at eight widths from 375 to 1280 before and after: no artwork on type, no text on text, at any of them.

2026 · September 12

A byline has one field and contribution has fourteen — the constructive half of the credit run

Zine No. 110 joins Star Stuff, which now holds forty-three. It is the practice piece: not who was wronged, but what the format underneath all of it can and cannot record, and what to do instead at any scale.

NewFourteen Kinds of Doing — Zine No. 110, 12 spreads

Take the byline seriously as engineering and it is a data structure with exactly one shape: an ordered list of names, with no field for what anybody did. Position is made to stand in for it, which is why the conventions differ by discipline and nobody outside a field can read them. In May 2015 that structure was pushed to its limit — the ATLAS and CMS collaborations published a combined Higgs mass measurement with 5,154 authors, and of its thirty-three pages only the first nine carried the research and the references. The other twenty-four were names and institutions. The zine refuses the easy reading: the absurdity is not how many people it took, because five thousand people really did make that measurement. It is the format, which could record that honesty only by printing twenty-four pages of names and still saying nothing about any one of them.

What got built instead is CRediT — fourteen roles, ANSI/NISO Z39.104-2022 — and the interesting half is reading the list rather than citing it. Data curation. Software. Validation. Visualization. Resources. Somebody cleaned the data, wrote the code, checked whether it was true, made it legible, kept the instrument running. All of it is work; none of it has ever had anywhere to go. Which gives the argument without anything being bolted on: a recognition system with one field reliably recognises the people whose contribution fits that field, and reliably misses everyone else — with nobody intending it, and with none of the missed work any less real. The fix was never a better kind of contributor. It was another field.

Fact-checkA paper we could not read, and a figure two sources disagree about

The zine will not end on the standard as a happy conclusion, and the source for the reason is one we could not open. Once contributions became recordable they became countable, and Larivière, Pontille and Sugimoto used contributorship statements to measure how scientific labour actually divides. The citation is confirmed at Crossref; the publisher returned 403 and we did not read the paper. A search summary offered us specific percentages, and a search summary is not a citation — so the spread states the direction of the finding and quotes no figure at all, and the colophon asks anyone who can reach it to send the numbers. A vocabulary makes work visible; it does not make it valued.

And the headline figure has two versions. Nature’s report gives 5,154 authors; another source gives 5,153. We did not count the list ourselves. Rather than average them or pick one quietly, the zine prints Nature’s figure and states the discrepancy. The two-column arrangement of the fourteen roles is also ours rather than the standard’s, which publishes one flat alphabetical list and ranks nothing — and the spread says so on its face, because presenting an editorial reading as a published norm would be self-refuting in a zine about attribution.

One link came out before shipping. A draft linked the repository’s fact-check ledger as a reader-facing document. Nothing on the site links it, it is not in the sitemap, and it is raw markdown with no navigation — making a zine the first public door to a maintenance file is an editorial decision rather than a citation, so the sentence now describes the ledger and links the changelog instead.

Fact-checkUpdate, same day: we got the paper, and it was better than our hedge

The zine shipped with one source unread and said so; hours later Ryan put the PDF in front of us and spread seven was rewritten from it. The hedged version is gone and the figures are on the page: 30,054 PLOS papers across 2017 and 2018; 57 per cent of women contributed to investigation against 49 per cent of men, with a similar gap for data curation; men 30 per cent likelier on funding acquisition and supervision.

And the paper contains a result that argues this zine’s case better than the zine did. The older, coarser scheme PLOS used had a single category for writing, and under it men appeared to dominate. CRediT splits writing into original draft and review & editing — and the picture inverts: women are 6 per cent likelier to have written the original draft, men 8 per cent likelier to review and edit it. The authors call the inversion striking and attribute the earlier finding to how ubiquitous the reviewing half is. So a coarse vocabulary did not merely fail to record something; it produced a false picture that a finer one corrected — which is the zine’s whole thesis arriving as a measured result rather than a claim.

The method’s limit went on the page with the finding, because the finding rests on it: gender was assigned by algorithm rather than self-report, reaching 82.2 per cent of authorships and reported as 98.3 per cent precise for men and 86.7 per cent for women. A measurement less accurate for the group a finding is about is worth stating out loud. It does not overturn a gap that size; it sets the resolution.

RevisedWhat the zine says about this site, which is not flattering

Spread nine shows our own practice at the point where it is checkable rather than where it looks good, and then names a failure that is real and current: credit here is well kept for sources and poorly kept for labour. Every quotation on this site carries its route — read at full text, from secondary accounts, or not read. The person who built a diagram or rewrote a paragraph mostly appears nowhere. That is the same one-field problem the zine is describing, in our own house, only partly fixed. The refusals say so outright, because a piece about attribution that overstated its own would come apart in a single move.

2026 · September 12

A catalogue of missing names, including the two stories we had to correct against ourselves

Field Guide No. 25 joins Field Guides, which now holds twenty-four. It sorts eleven pieces of work not by how famous the person was but by how the name came off — and two of its entries exist to correct the popular telling in the direction that costs the argument something.

NewA Field Guide to Missing Names — Field Guide No. 25, 11 entries

“She was not given credit” is not one event. The guide argues it is at least five mechanisms, that they leave different evidence, and that they need different things done about them. The work split and only one half counted — Lise Meitner supplied the physical interpretation of a chemical result, and the prize was in chemistry; Chien-Shiung Wu ran the experiment that decided a prediction, and the prize was for the prediction. Credit ran uphill by default, with nobody deciding anything: a simultaneous discovery attributed to the better-known of two people, and a laboratory’s work attributed to whoever runs the laboratory. The material moved and the name stayed behind — Marthe Gautier’s slides, lent to a lab that had a camera; Alice Ball’s method, republished under someone else’s name after she died at twenty-four. The story dropped a name the document carries. And the correction arrived, decades late.

Why the sort is the finding. By discipline you get physics, genetics and chemistry, which tells you nothing. By how badly wronged, the guide is being asked to award damages. The mechanism is the useful sort, because a reader who can tell an authorship rule from a stolen slide from a degraded retelling can see it happening rather than reading about it afterwards — and because no single rule guards against all five. You cannot fix a default with a policy about theft.

Fact-checkTwo entries that correct the story against our own argument

Jocelyn Bell is on the paper. Second of five, Nature 217, 709–713. The claim that she was left off it circulates constantly, it is false, and it is checkable in ten seconds — so anyone hostile to the subject can knock it over in one line and take the genuine complaint down with it. The card puts that in its first row rather than quietly omitting it. Sharpening a true grievance with a false detail is the same offence as the grievance.

And Hedy Lamarr did not invent Wi-Fi. This is the most repeated story in the genre and it does not survive the patent record. Frequency hopping has prior art in Tesla’s patent applied for in 1901 and in Zenneck’s 1908 book, which notes Telefunken had already tried it; Ellison Purington filed a year before she did. BLADES, the first frequency-hopping system actually deployed, cites neither her nor Antheil — nor does the field’s first textbook across nearly two thousand references. And 802.11 Wi-Fi does not generally use frequency hopping at all. What is true is quieter and still worth saying: the patent is real, it is US 2,292,387, and it is filed under Hedy Kiesler Markey — a name she is not known by, which makes the document itself a missing name. A props culture that overclaims is not a props culture.

Three cards carry no reframe table, following the rule FG 10 set and FG 18 followed. Henrietta Lacks is one: tissue taken without consent in 1951 is not an attribution dispute, and describing it as one proposes a remedy — add her name to the papers — that addresses none of the injury. Her card’s diagram is the only one in the guide built out of no name-slots at all. Ada Lovelace is another, because the historiography is genuinely contested in both directions and the flattering reading is the tempting one. And the third is the survivorship problem: every case here was recovered by somebody doing the work of recovering it, so eleven is not a sample.

RevisedField Guides — counts re-derived, and a stale figure in our own notes

The collection now reads twenty-four guides, 308 entries, 332 cards. Derived rather than incremented, by two independent routes that agree: 318 cards plus this guide’s 14 is 332, and 21 withheld cards plus its 3 is 24, so 332 − 24 = 308 — which also equals the old 297 plus 11. The internal working notes turned out to be the stale copy, carrying a withheld-card figure of 19 when the collection page’s own colophon had the correct 21. That is the usual direction of this rot reversed: the reader-facing page was right and the maintenance file was wrong, because nobody reads the maintenance file for pleasure.

2026 · September 12

105 of our 108 zine covers were broken on a phone, and the gate that would have caught it had written down in advance that it would not

Found while building No. 109. On a 375px screen the ghosted issue number printed through the issue line or the title on 103 pages, and the cover artwork lay across the words on every cover that has any. It had been like that since the first cover in July. Fixed in one shared rule; the checker now measures two screen widths instead of one.

SiteCover ornaments now flow on a phone instead of being pinned to a corner that is not there

Measured at 375×812 across all 205 pages, and it is two faults rather than one. Text printed on text: 313 collisions on 103 pages, every one on the cover. The big translucent issue number crossed the issue line on 96 covers and the title on 50; the collection label crossed the title on 65; a label inside the artwork crossed the type on 30. Nine covers had all four — not most of them, which is what a hand-checked sample of ten had suggested before the full sweep was run. And separately, the artwork itself lay across the words on every one of the 98 covers that carry any: over the title on 95, the issue line on 94, the subtitle on 93. Between them, 105 of our 108 covers were affected.

On a desktop all of this sits in the empty margin beside a short title. On a phone the title wraps to three lines and the margin does not exist, so the ornaments printed on the words.

The cause is duller than the effect, and it is one line of thinking repeated a hundred times. Each cover carries its own small-screen block, and ninety-eight of them do: they shrink the artwork and shrink the title. Not one of them ever moved the number, which stayed pinned to a top-right corner at four and a half times the body type while the title grew taller underneath it. We had applied the convention ninety-eight times and got the load-bearing half wrong ninety-eight times.

So this one moved out of the pages and into the shared stylesheet. Below 600px the number and the artwork stop being pinned and simply take their turn in the reading order: artwork, number, issue line, title, subtitle. The desktop composition is untouched — it is placed per page by measurement, and it was always correct. Every cover made from here gets the phone behaviour without anyone remembering to ask for it.

And that last sentence got tested before it shipped, by accident. No. 110 was written while this fix was being built, by someone who knew nothing about it, and landed first. Measured afterwards: six collisions on its cover at 375px without the shared rule, and none with it. A cover that did not exist when the rule was written was already fixed by it — which is the argument for the shared sheet making itself, on a page nobody chose as evidence.

SiteThe collision checker had said, in its own file, exactly what it was going to miss

We have a tool whose whole job is finding text printed on other text. It has run green over these covers since August. It was not wrong: it measured one screen width, 1280 pixels, and at 1280 the covers are fine. Its own header said so in advance — “a collision that only happens at 380px is real and this will not see it.”

It also only ever saw half of this fault, and that half is still out of scope on purpose. The checker measures where the letters are. Artwork lying across a paragraph is a judgement about a drawing, which its own notes have always said it declines to make and leaves to a person looking at the page. So the 98 covers whose art sat on the type were counted by a one-off measurement and by eye, not by the gate — and the gate has not quietly grown an opinion about it now.

That sentence was accurate, sat in the right file, and bought nothing. It is the same finding this site already had on the books from a different direction: the zine that prompted the checker's existence carried a comment in its own source warning where its artwork would land, and the artwork landed there anyway. A note is not a control — and a limitation a tool documents is still a limitation. The checker now loads every page fresh at 375×812 as well as 1280×900, and reports the two widths separately, so a fault can never again be hidden by a number that averages a working width with a broken one. What is still unmeasured is narrower rather than absent: a collision that only appears at 768px will still get through.

Fact-checkThe first phone run reported 256 problems that were not problems, on twelve of our own pages

Same run, opposite error, and worth publishing because it is the more dangerous of the two. Alongside the real collisions the checker reported 256 pieces of text as cut off — sliced by the edge of the page with no way to reach them — across twelve pages of working notes. Every one was a wide table on a narrow screen, and every one of those tables sits in a wrapper you can swipe sideways. Nothing was cut off. The reader reaches all of it.

The tool was looking for a container that hides overflow and walking straight past containers that scroll it, then blaming a rule much higher up the page that exists to contain the starfield. It now stops at whichever container takes responsibility for the overflow first, and answers differently depending on which kind it is. It also prints how many pieces of text it declined to report for that reason — because that is precisely the number it used to get wrong, and a silence nobody counts is a silence nobody questions.

Both halves were tested by breaking them. With the cover fix removed the checker reports the collisions again on the phone width and stays clean on the desktop one; with it restored, both are clean. A page that genuinely cuts text off still fails; the same page with a scrollable wrapper passes. A green gate is only evidence if you have watched it go red.

2026 · September 12

The primary source contradicted the zine we set out to write, so we wrote the one it supports

Zine No. 109 joins Young Readers, which now holds fourteen. It is a read-aloud about who gets named — and two things it was going to say were cut, both because the discoverer’s own account says otherwise.

NewA Bit of Scruff — Zine No. 109, read-aloud, ages 4–8

In 1967 Jocelyn Bell spent two years helping build a radio telescope across four and a half acres — “an area that would accomodate 57 tennis courts”, a thousand posts, 120 miles of cable — and then read what it drew. It had no screen. It had pens: “between them they produced 96 feet of chart paper every day. The charts were analyzed by hand—by me.” They had decided against computerising the analysis for a reason the zine turns on: “a human can recognize signals of different character whereas it is difficult to program a computer to do so.” Six or eight weeks in there was “a bit of ‘scruff’” that was neither a star nor interference, and she did not throw it away. Three months of failure later it resolved into pulses one and a third seconds apart — the first pulsar.

Then the half the zine is actually about. Five names went on the Nature paper and hers is second. A few years later a Nobel went to her supervisor and her name was not on it. The zine draws the reason as a rule rather than a villain: Nobel Foundation statute §4 caps a prize at three people, and five people wrote the paper.

Fact-checkTwo things we were going to print, cut against the primary

We had the famous image and it is not in the source. The line everybody repeats — a quarter of an inch of scruff in 400 feet of paper — was to be the spine of the whole zine. Her own 1977 account gives no such figure; what it gives is 96 feet a day and “the 3½ miles of chart recordings from the radio telescope that I analyzed.” Those two agree with each other, and they are hers. The quarter-inch is gone, and the zine says on its own face that it was cut and why. A secondary source had also given us 98 feet a day; the primary says 96.

And the argument itself was wrong. This piece was proposed as she was robbed, and it was unfair. In the same speech she declines that reading in print, with four reasons, ending “Finally, I am not myself upset about it—after all, I am in good company, am I not!” A zine asserting her grievance would have contradicted its own cited source on the page. So the credit argument was rerouted through what she does record as absurd: the press, who on discovering a woman was involved “descended even faster”, photographed her “examining bogus records”, and asked “how many boyfriends did I have at a time?” The child gets the harder and truer distinction instead — being kind about something is not the same as the something being fair — and is told she may reach her own verdict. So, arguably, did Bell Burnell: in 2018 she gave away the entire £2.3 million of a later prize to fund students who get left out, disabled students named among them.

One more we are keeping on the page rather than quietly fixing. The circulating story in which she was left off the paper is false — she is second author — and the zine insists on her by-line rather than dropping it to sharpen the grievance. Sharpening a true complaint with a false detail is the same offence as the complaint.

RevisedYoung Readers — a count that stopped adding up two zines ago

Adding a piece made us re-derive the collection’s sets instead of incrementing them, and the increment would have been wrong. The page said eight of the pieces hand the child something to do and that four hand them nothing at all. Eight plus four is twelve, and the collection held thirteen — No. 107 had joined the second set without being counted into it. It is now nine of fourteen with something to do, and the five that hand the child nothing are named rather than counted. No gate on this site can read a number written out in a sentence, which is why the members are written out instead.

2026 · September 12

Four letters, and the half of the 1953 paper nobody quotes — plus the finding that prompted this zine and is not in it

Zine No. 105 joins Young Readers, which now holds eleven. It is a read-aloud about the genetic alphabet, a subject this site had never touched: before this week no page here contained base pair, adenine, guanine or genetic alphabet.

NewThe Same Four Letters — Zine No. 105, read-aloud, ages 4–8

Everybody quotes one half of the Watson and Crick paper. The zine is built on the other half. The famous half is the constraint: “These pairs are: adenine (purine) with thymine (pyrimidine), and guanine (purine) with cytosine (pyrimidine)” — fixed, and fixed by size, since one of any pair has to be the larger ring and the other the smaller. A few lines later, in the same paper, comes the sentence this piece turns on: “The sequence of bases on a single chain does not appear to be restricted in any way.”

Every constraint in the system runs across the two strands, and none runs along one. The pairing is fixed; the order is free, for everything alive, and always was. That is not a gap somebody will tidy up later — it is the property that lets DNA carry information at all, because a sequence permitted only one arrangement could carry none. The alphabet is shared. The sentence is not.

The demonstration hands a child the paper’s closing inference. Paper and a pencil: write a row of A, T, G and C in any order, write each letter’s partner underneath, cover the top row, put it back. It comes back exactly, and it could not have come back any other way — which is what the authors meant by “It has not escaped our notice that the specific pairing we have postulated immediately suggests a possible copying mechanism for the genetic material.” It is the first demonstration in this collection where the child performs a piece of reasoning rather than observing an effect.

And the exception lives in a pond rather than a laboratory. Cyanophage S-2L swaps every adenine in its genome for 2-aminoadenine — reported in Nature in 1977, and not explained until 2021. A virus is not a cellular organism, so “everything alive uses the same four” survives, barely; the zine hands that caveat to the reader on its own spread rather than ruling for the convenient answer.

Fact-checkThe finding that prompted this zine is deliberately absent from it — on our own wire’s advice

This piece started somewhere else entirely. Last week’s Glimmer Wire graded a September 2026 result in which an ordinary bacterial enzyme transcribed a synthetic eight-letter alphabet as readily as the natural four. Ryan read it and asked for a Young Readers primer on the genetic alphabet.

The wire’s own filing note said not to build a zine on it — that the argument needs the biology to stay in the test tube, and a zine would want it out. That judgement was followed rather than argued with. The synthetic alphabet appears nowhere in the finished piece. A read-aloud ending on scientists made new letters sits one small mishearing away from scientists made new creatures, and the 1977 pond virus carries the same four is a habit, not a law claim without ever leaving the water.

One source is declared unread on the page itself. Kirnos, Khudyakov, Alexandrushkina and Vanyushin (Nature 270, 1977) is behind an authentication redirect; the substitution and its completeness are taken from the 2021 literature citing it, read at full text, and marked as such on the spread and in the colophon rather than carried as the 1977 paper’s. And one number is deliberately not quoted at all: the 2021 papers disagree about how many Z-genome phages are now known, and an unreconciled figure is worse than none.

The Franklin acknowledgement is quoted in full and left uncommented. Watson and Crick recorded being “stimulated by a knowledge of the general nature of the unpublished experimental results and ideas of Dr. M. H. F. Wilkins, Dr. R. E. Franklin and their co-workers at King’s College, London.” How thin that sentence is, is the point, so the grown-up layer reproduces it exactly rather than characterising it. The child layer names nobody.

Two claims the zine refuses to make, both named on its own refusals spread. The pond virus is an exception in chemistry and is not an argument about people — reading it as one is the naturalistic fallacy with a nice feeling attached. And the piece declines the obvious ending, nobody else has your order: it is not quite true for identical twins, and worth that rests on being rare is worth that somebody similar can take away.

2026 · September 12 · latest

The man who coined the genetic code wrote the correction four lines later. It took the rest of us eighty years

Zine No. 108 joins How We Got Here as its seventeenth chain: twelve links, nine documented, two contested, one leap. It is the adult companion to yesterday’s read-aloud, and it goes all the way to 2025.

NewToo Narrow — Zine No. 108, a chain in twelve links

In 1944 Erwin Schrödinger proposed that a chromosome carries a code-script. That sentence went round the world and is still going. This chain is about the one immediately after it: “But the term code-script is, of course, too narrow. The chromosome structures are at the same time instrumental in bringing about the development they foreshadow. They are law-code and executive power — or, to use another simile, they are architect’s plan and builder’s craft — in one.”

Not a plan that something else carries out — the plan and the carrying out, the same object. He did not have to be argued into it; he wrote it in the same breath, on the same page. And Watson, Crick and Wilkins all credited that book, with Crick writing to him in August 1953 to say so. The qualifier was not lost in transit. It was on the page the carriers were reading.

The chain’s account of why it fell off anyway is the opposite of a conspiracy. One half became testable within a decade and the other did not. Base pairing gave a copying mechanism, then the code itself, then tables and prizes and a three-billion-dollar project. How a sequence becomes a body gave almost nothing measurable for fifty years. A qualifier survives only if something can be done with it. The Modern Synthesis duly filed development as an “incidental blackbox”, blueprint became the ordinary word, and in June 2000 the genome was announced from the White House as “our own instruction book, previously known only to God”.

Then the prediction failed twice, on evidence from inside. A gene count estimated at up to 100,000 came in near 20,000. An onion turned out to carry five times more DNA than a person, and onions vary among themselves more than they differ from us. In 2010 a Royal Society review declared the metaphor “not only woefully inadequate but positively misleading” and proposed developmental encoding instead — which is Schrödinger’s sentence, reached again from the other end, sixty-six years later.

Fact-checkOne leap, marked and then declined — and a joint graded contested because we could not source it

The last three links go where this house lives, and the fairness in them is structural rather than decorative. In 2018 the retired metaphor was the title of Robert Plomin’s Blueprint. The objection the chain quotes is Kathryn Paige Harden’s, a working behaviour geneticist — “Insisting that DNA matters is scientifically accurate; insisting that it is the only thing that matters is scientifically outlandish” — chosen precisely so the chain cannot be read as an argument against heritability, which it is not. The spread also records that others defend the book as misread, and that we do not adjudicate.

Link 11 is the one we are inside, and it is deliberately not a villain story. Spectrum 10K opened in August 2021 to collect DNA from ten thousand Autistic people, was paused within weeks after our objections, consulted on for years, and closed in 2025 with Wellcome’s support. Proposed, objected to, consulted on, ended — that sequence is the thing working, not failing. The chain asks only why the objection had to be that loud.

And the last link is a leap we refuse to cross. The tempting sentence is the blueprint metaphor caused the gene-hunts. We cannot show that. Did the picture make the search thinkable, or did people who wanted to search reach for a picture that suited them? Both fit every fact in the chain. What the zine will say without hedging is narrower: the picture is wrong — on the gene count, on the onion, on the 2010 review, and on the testimony of the man who coined it.

Two things declared rather than hidden. Link 5 is graded contested because we could not source a first use of “genetic blueprint” — a grade given for our own sourcing failure rather than a live dispute, which the spread says outright while asking readers to correct it. And Plomin’s book was not read; its thesis and the responses to it come from reviews and reference summaries, which is the weakest sourcing in the zine and is labelled as such on the page.

2026 · September 12

An onion has five times more DNA than you do, so whatever it is, it is not a plan of anybody

Zine No. 107 joins Young Readers, which now holds thirteen, and closes a three-part arc: No. 105 gave the alphabet, No. 106 the code that reads it, and this one asks what the whole thing is. It exists to pay a debt — No. 106 cited a paper as a lead it had not read, and this zine read it.

NewThe Onion Has More Than You — Zine No. 107, read-aloud, ages 4–8

Grown-ups say DNA is the plan for you, and blueprint is an old word for a drawing of a house made before the house. The zine takes that seriously enough to test it. A plan of a bigger, more complicated thing is a bigger plan — a hut fits on one sheet and a castle does not. That is a prediction, and it can be checked.

It fails twice. An ordinary kitchen onion carries about 16,400 million bases against a human 3,200 million — five times more. And counting instructions rather than letters does not save it: before anyone had counted, human gene estimates ran to 100,000, and the answer came in near 20,000 — about the same as a nematode a millimetre long with 959 body cells, whose entire genome is thirty-two times smaller than ours.

The objection is handed to the child before it is answered. Spread five gives away that counting letters is unfair, because at least 95 per cent of the onion’s genome is repeated sequence — and then counts instructions instead, which is worse for the idea rather than better. Then the strongest version, which needs no definition of complexity at all: within the onion genus alone, genome size varies about four and a half fold. Onions disagree with other onions by more than onions disagree with us.

And what replaces the metaphor turns out to be older than the metaphor. Schrödinger introduced code-script in 1944 — the book Watson, Crick and Wilkins all credited — and then wrote, in the very same paragraph, that the term is “of course, too narrow,” because chromosomes are “law-code and executive power — or, to use another simile, they are architect’s plan and builder’s craft — in one.” The man who coined it flagged the limit on the spot, and the limit is what got dropped. The plan and the building are the same thing, and there is no finished you in there to be a drawing of.

Fact-checkA lead we published as unread, now read — and what the zine declines to do with it

No. 106 shipped naming Pigliucci’s 2010 paper as a lead it had not read. It has now been read at full text, and this zine is what came of it. Its verdict is blunter than ours: the blueprint and programme metaphors are “not only woefully inadequate but positively misleading.” The zine tests one of the four failures he names and lists the other three for the adult.

Three of four sources read directly; one figure marked second-hand on the page. The onion assembly, the worm genome and Schrödinger were read; the Allium genome-size range of roughly 7 to 31.5 picograms was not traced back to the measurement papers and says so where it is used.

What it refuses. No position on whether non-coding DNA has function — that argument is live, the onion comparison comes out of it, and the zine needs only that raw length is the wrong ruler. No swap to recipe, which keeps a dish somebody is working towards. And no argument about people anywhere in the child’s layer: every measurement is about a plant, a worm and a gene count, because a fact about an onion licenses nothing about anybody.

The half that is missing is deliberate, and it is the better piece. How a qualifier falls off between a 1944 founding text and an ordinary sentence about a child is a chain with graded joints, and it belongs in How We Got Here rather than in a read-aloud. It is planned. One refusal points at it: a plan is the kind of thing that can have a mistake in it, and that is what made the word useful to people who wanted to search a human being for the error.

2026 · September 12

We said a 1961 paper could not be read. It could, and our own working notes already said how

Zine No. 106 shipped this morning saying that Nirenberg and Matthaei’s 1961 paper — the experiment that read the very first codon — was held only as scanned page images, and that a spread on it had been cut for that reason. The paper is readable. The claim has been corrected on the zine and here.

Fact-checkOne blocked route is not unreachable

What is true: PubMed Central’s web reader does serve that article as page images, and our fetcher could not read them. What we then said, and should not have: that the paper was therefore unreadable.

The PDF has a text layer. Fetched from Europe PMC, the fifteen pages come out as searchable text — imperfect OCR, but plainly legible — and the result the zine would have used is two lines of it: “the addition of 10 µg of polyuridylic acid per ml of reaction mixture resulted in a remarkable stimulation of C¹⁴-L-phenylalanine incorporation… no other polynucleotide tested could replace polyuridylic acid.” A tube of nothing but one letter, producing a chain of nothing but one bead.

The failure is not the blocked route, it is stopping at it. Our own working notes name Europe PMC as one of the metadata-and-full-text routes to try when a publisher or a repository refuses, and that note was written after a previous paper hunt. It was not applied. “We could not read it” is a claim about the world, and it needs the same standard as any other claim on these pages — which is that you try the routes you already know about before writing it down.

The spread stays cut, and now for an honest reason. Twelve spreads is the right length for that zine and its argument does not need the history — so it is cut by choice rather than by a wall that was never there. The colophon now says so, quotes the result, and records that we got this wrong.

2026 · September 12

One number was doing two jobs, so it came apart three times — twice at our own hands

The Young Readers page has a line saying how many of its pieces hand the child something to do. It has been wrong, in one direction or another, since before either of this week’s zines. The figure is now eight of the twelve, and the eight are named on the page so it cannot drift again.

Fact-check“Something to do” and “a demonstration” are different sets, and one number was counting both

The page said seven of the ten for weeks. Adding Zine No. 105 on 12 September, we could not reconstruct that seven from the page’s own named sets, re-derived it as six of the eleven, and shipped that. Adding No. 106 hours later we carried it to seven of the twelve. Both of those were ours and both were wrong.

The cause is not carelessness, and it is worth naming because it will happen again elsewhere. Two different sets were being described by one number. Something to do is wider than a demonstration: No. 102 has no demonstration — you cannot do a whole autumn on a table — and it still hands a child a method to carry out, which is to mark one leaf and look at it every day. It belongs in one set and not the other. The two lists differ by exactly that piece, and a count that does not say which set it means has nowhere to stand.

The original seven does reconstruct, and only on a reading the page argues against. It works if No. 95 is counted — and that zine’s “push on the bone, the bone answers” is the one case the page keeps deliberately on the far side of the line, because the same zine says the current is “not enough to feel.” So the figure and the boundary paragraph beneath it could never both have been right. That inconsistency predates this week; our two corrections inherited the ambiguity rather than the error.

What changed, beyond the number. The eight are now written out by name rather than counted, the paragraph says out loud why the two sets differ, and the list below it now reads “no demonstration” rather than implying the same four pieces hand the child nothing. No gate can see a number written out in a sentence — this site’s oldest standing lesson, and the reason the fix is to name members rather than to correct a digit.

2026 · September 12

Sixty-four words, twenty beads — and the promise No. 105 made on its own face, kept

Zine No. 106 joins Young Readers, which now holds twelve. Yesterday’s zine said in its grown-up layer that the genetic code “is not in this zine at all.” This is that promise being kept, and it goes somewhere the first one could not.

NewMore Than One Way to Spell It — Zine No. 106, read-aloud, ages 4–8

The letters are read three at a time, and each three names one bead. The zine builds a protein as what it actually is — a long string of beads, twenty kinds — and a codon as what it actually says, which is put a glycine on next. Not make a nose. One bead, and then the next word says the next bead.

Then the arithmetic does the arguing. Four letters read in threes give sixty-four possible words. There are twenty beads to name, and three words are spent saying stop. So there are far more words than things to say — and what gives is that nearly every bead has more than one correct spelling. Glycine has four. Leucine, serine and arginine have six each. Only methionine and tryptophan get one. Sixty-one naming codons falling into five fourfold sets, nine twofold, three sixfold, one threefold and two single ones — which sums to exactly twenty, every amino acid once.

The demonstration is a pencil and six rows of the real table. Write GGU, look it up: glycine. Change the last letter to anything at all and look again — glycine, every time. Put it back and change the first letter, and it is serine. The last letter often does not matter; the first nearly always does. A child finds that pattern themselves, and the grown-up box says plainly that a child who tests a different word and finds the third letter mattering has found a real thing rather than made a mistake.

And this time the exception is inside the reader. The code is not universal — thirty-three translation tables are catalogued — and you are using two of them right now. Your mitochondria read UGA as tryptophan where the rest of you reads it as stop. That is the sharpest evidence going for what No. 7 argued about a bacterium that moved in and never quite stopped being itself.

Fact-checkNothing written from memory, two papers declared unread, and a famous result kept with its criticism attached

Every codon on the page was checked against NCBI’s own translation tables rather than recalled, because this zine is the first here whose demonstration fails if a single row is wrong. A child following spread seven with one bad row gets the wrong answer and learns that the book lies.

Two sources are declared unread on the page itself. Freeland and Hurst’s 1998 result that the standard code is extraordinarily good at limiting the damage of errors is carried at second hand — PubMed refused us — and Crick’s 1968 paper is quoted from the same open-access review. A third, Nirenberg and Matthaei 1961, the experiment that read the very first codon, had a spread outlined and then cut because we believed PubMed Central held it only as scanned page images. That reason was wrong and is corrected below.

The famous result is not allowed to travel without the half that usually falls off. The same review that gave us the figure puts the code “halfway from an average random code to the summit,” notes that billions of alternative codes would do better, and finds Crick’s rival account — that the code is a frozen accident, arbitrary and stuck because any change now would be lethal — essentially unfalsified. So the zine does not say the code was arranged kindly, or arranged at all. It says the checkable thing: there is more than one right spelling, so a great many changes change nothing. Why that is so is an open argument, and the page does not borrow its warmth.

One departure from its companion, made deliberately. No. 105 stayed safe by never saying what DNA does. No. 106 cannot, because the code is what it does — so spread ten corrects the popular meaning of “genetic code” in the child’s own layer, in plain type: it says which bead comes next, and holds no entry for what anybody will be good at, or love, or be like. And one overclaim was caught during the build: synonymous does not always mean no difference, since codon usage can affect how a chain is built and folds. The child layer claims only what the table says, and the grown-up box states the limit.

2026 · September 12

We said no page here contacts Google for fonts. One still did, and it was the one no sweep could reach

On 9 September the four typeface families were self-hosted and every font <link> and preconnect was removed site-wide. Our privacy page has said so since. It was true of 200 pages and false of one.

Fact-checkwhats-new.html carried two preconnects and a Google Fonts stylesheet for three days

Anyone who opened What’s New handed their IP address to Google before a word rendered — exactly the thing the self-hosting pass existed to stop, and exactly the thing the privacy page says no longer happens. The page is otherwise unremarkable; the reason it survived is the interesting part.

A generated page does not conflict. It reverts. whats-new.html is written from a template inside tools/build-derived.mjs, so the 9 September sweep edited the file, and the next routine rebuild quietly wrote the Google links back — with the tool reporting a clean, successful build. This site already had that failure on record. The same tool did the same thing to this page’s skip link on 9 September, and the lesson written down then was that a repo-wide sweep owes the template the same edit. The sweep that followed did not pay it.

Found while reading a diff for something else, which is the honest account: no gate looks for a third-party font request, and none of the nine can. The two other pages that match a search for those hostnames — this changelog and the privacy page — only mention them in prose, which is the difference between a thing and a sentence about the thing, and is why a raw-text search would have called all three guilty.

The template no longer carries them, and the lines have been replaced with a comment saying why, so a future copy does not restore them. Verified by loading the rebuilt page and watching the four self-hosted woff2 files arrive from this site — not by reading the stylesheet, since both families are installed on the machine that builds this and a silent fallback would have looked identical.

2026 · September 11

A read-aloud about the Goldilocks Zone — and a correction, from the reader who proposed it, that made the zine better

Zine No. 104 joins Young Readers, which now holds ten. The fairy tale says one bowl is right and two are wrong. The science that borrowed its nickname says nearly the opposite, and this piece follows that until it arrives somewhere the collection has never been.

NewJust Right For Whom? — Zine No. 104, read-aloud, ages 4–8

Earth is not in the middle of its own habitable zone. The zine takes the figures from Kopparapu and colleagues (2013), read at full text: the conservative limits for our system are 0.99 and 1.70 astronomical units, and the paper draws the consequence in its own abstract — this suggests “the present Earth lies near the inner edge.” Earth sits about 1.4 per cent of the way across a band 0.71 wide. Not the just-right bowl; the one that only just fits.

And we did not get there by moving. The young Sun was roughly a third dimmer, and a dimmer star holds a smaller, closer band. The band has been sliding outwards past a planet that stayed exactly where it was. Earth did not move. The band did. Then the zine goes to TRAPPIST-1e, which completes a year in 6.1 days at 0.02925 astronomical units because its star is small and cool — more than thirty times nearer in than ours, and nothing has gone wrong there. Every star gets its own band, computed from its own output, and nobody has ever called a dim star defective for having a close one.

Which is the turn. A band of conditions in which a living thing can persist is its niche, in Hutchinson’s 1957 sense. A tulip bulb needs twelve to sixteen weeks of proper cold or the flower never leaves the bulb — not fussiness, a location. There is no standard band, so “just right” is never just right on its own: it is always just right for somebody, and you have to say who. The answer is therefore not one room set more kindly but a place with a cave and a campfire and a watering hole in it — and this is the first piece in the collection to name a Cavendish Space, on the last spread, after the argument rather than before it.

Fact-checkThe premise the zine was proposed on was half wrong — and then our correction to it was wrong too

Ryan proposed this piece with a second claim attached: that sitting near the inner edge is part of why we are sensitive to carbon dioxide now. Checking it against Goldblatt & Watson (2012), read at full text, produced a clean refutation — “adding carbon dioxide does not increase the outgoing longwave flux, so it cannot cause a runaway greenhouse” — and on that basis the climate thread was cut from the outline entirely.

That was an over-correction, and it is worth naming plainly. It answered runaway greenhouse, which was not the claim being made. Ryan came back with astrophysicist David Kipping’s version: the zone migrates outward as the Sun brightens, so the headroom shrinks. That holds. Scaling the 2013 limits by the square root of luminosity puts Earth about 13 per cent across the band two billion years ago against 1.4 per cent now — the same planet, a ninefold smaller margin. The thread went back in, and the zine is better for it: spread seven carries the mechanism, spread eight carries the distinction and names the misapplication out loud.

Kipping is credited here as the lead that prompted the re-check and is not cited on the page. The figures there come from the papers. A video is a lead, not a citation — the same rule this site applies to aggregators, applied to a source that happened to be right.

Everything else, graded on its own face. The cloud-free hedge is printed verbatim on spread five, because Kopparapu’s own abstract says the boundaries “may extend further in both directions” and cloudy models since have argued the inner edge moves substantially inward. The band positions for two and four billion years ago are our arithmetic and are labelled as ours on the spread itself. Gough (1981) and Rushby et al. (2013) are marked cited-not-read and read-at-abstract respectively. The tulip figure is extension-service consensus rather than a primary paper, and says so. And caves, campfires and watering holes are credited to David Thornburg, with the count stated as four — the fourth, life, named in the grown-up box rather than quietly dropped.

2026 · September 11

Queering Earth introduces itself by naming this site. The front page now names it back

There is a sibling site, built by the same two organizations, working the half of the shelf this one does not. Its front page has been pointing here since it opened on 7 September; ours pointed nowhere. A reader who arrived at this end had no way of knowing the other end existed.

SiteA second paragraph on the front page, and the difference between the two sites stated rather than smoothed

Queering Earth reads art, literature, poetry, politics, people and history through a queering lens — “the stories we were handed and told not to question,” as it puts it while describing this site as the one built on science. The front page now carries the return leg, directly under the paragraph explaining what star stuff means.

It says what is different rather than presenting the two as interchangeable halves of one thing. Everything here is built on a settled, checkable fact followed until the claim about belonging is already inside it — the register test this site has applied to itself since the beginning. There, the material is a canon nobody can settle, and the site says so on its own face: “There are no hard facts here for everything. That is deliberate.” Two methods, one collaboration, and the paragraph would be doing the reader a disservice if it blurred them.

Their sentence about their own method is in quotation marks, and that is deliberate too. The first draft stated it in our voice, which would have made a characterisation of somebody else's work read as our description of it — the exact failure mode the fact-check rules exist to prevent, with the unusual feature that the somebody else is us. The phrase describing their subject matter is echoed unquoted on purpose: their paragraph echoes our own line about a universe that declines to pathologize its own variation, and an echo returned is the shape of the exchange. Every claim in the paragraph was checked against their live page rather than against a memory of it.

2026 · September 11

Glimmer Wire, edition three — the week the network answered, and a correction of ours still out on the wire

The third weekly edition of Glimmer Wire. Seven items filed, five held, and for the first time three papers read end to end rather than at one remove. Also the longest lag the page has measured, and a held item that is not a story we found thin — it is a figure this page corrected last week, still travelling unchanged.

Working paperSeven filed: a Jurassic chorus, a species that is several, a cat that was never a cheetah

Three graded verified, all three read in full in PubMed Central under CC BY. Twenty fossil wings from nine species in one Middle Jurassic forest, reconstructed into a soundscape in which no two species sang at the same pitch — and one of them already up in the ultrasound, about a hundred and ten million years before the bats that would come to listen there. A Nature paper showing that a gut bacterial species name covers several populations that have been selected into different ways of living, in at least 66 taxa across 25 families. And a bacterial enzyme reading a synthetic eight-letter genetic alphabet, the structures showing it handles the four letters it has never met exactly as it handles the four it evolved on.

Two more filed on publisher-deposited abstracts, one on the authors’ own preprint, and one graded contested. The extinct American “cheetah” turns out to be sister to pumas rather than to cheetahs, with one population eating salmon in the Arctic Yukon and another hunting temperate grassland — the paper’s own closing line is that morphological convergence can obscure the true diversity of the ecosystems it describes. A framework paper on tropical insect conservation names the gap that more than 80% of insect species live where almost none of the knowledge is published. An interstellar comet carries a methanol-to-hydrogen-cyanide ratio among the highest measured anywhere, exceeded only by one comet of our own. And two papers in the same volume of the same journal, published a day apart, disagree about whether the universe is accelerating; we file the disagreement and decline to referee it.

The lag axis had its most useful week. Items ran 0 to 187 days, median 14, against 36 and 40.5 in the first two editions — and the drop is not the world speeding up, it is this scan finally reaching journal feeds instead of reaching only what a search summary had already digested. The longest item was published on 6 March and carried to us on 9 September as news. And the axis stayed blind in the same way as before: two items were public as preprints far earlier than their journal dates, one of them by 834 days, which is the largest gap this page has recorded.

HeldA figure we corrected last week is still on the wire, and a 2022 paper arrived as a discovery

Five held, and the first one is about us. On 4 September this page filed the bat immunoglobulin paper, read it in full, and corrected one figure: the widely repeated more than 500 vesper bat species. The paper measures 26 species with duplicated antibody gene loci and confirms both functional in one; it gives the family no number at all. A release carrying the old figure surfaced on this week’s scan, unchanged. A correction that lives only on our own page is a correction that has not happened — so it is held and recorded rather than passed over. In fairness to that release, we went back to the paper and its other numbers check out.

Held second: a mouse study from February 2022, carried on 2 September 2026 under a headline in the present tense, crediting the discovery to Stanford when the author list is led from Shanghai Jiao Tong University. Also held: a magazine feature about a decade-long bird-cognition programme whose headline result is a 2024 paper, and which reads as a merit argument if lifted; two papers on cortical development folded into one headline, with both publishers refusing us so we could not tell which finding belonged to which; and three large observational studies reported as percentages a reader might act on, which turns a question about prescribing and access into a personal decision. That last decline is the second time this collection has made it, and declining twice is the point of keeping the list.

What we got right by checking our own sentence rather than the coverage’s. A correction had been drafted saying the cosmology summary’s “1,700+ supernovae” confused light curves with supernovae. The paper itself says 1,701 SNe Ia. The draft correction was deleted before publication, which is the discipline the second edition’s amendment pass bought us.

2026 · September 10

Yes, you may train on this — said out loud, to thirteen named crawlers

We have never stated a position on AI crawlers, which meant the answer was whatever a wildcard happened to imply. It is now written down, per agent, with the reasoning on the file's own face. Also: a page had been offering search engines nothing at all for four days, and nothing here could see it.

SiteThe decision, and the argument we did not take

Read it, quote it, index it, train on it. Thirteen crawlers named individually and every one allowed, plus a machine-readable line saying the same thing three ways: this content may be searched, may be fetched live to answer somebody's question, and may go into a training corpus.

Every other choice here already pointed that way. An open edition under CC BY-SA. An index written specifically for language models. Fifty-seven Markdown copies of the prose pages so an agent does not have to parse our HTML. A catalogue of every machine-readable thing on the origin. Refusing training after all that would have been a strange place to draw the line.

And there is a reason beyond openness. Most writing about disabled and neurodivergent people frames us as deficits. This collection is a corrective to that, and training data is how a great many people will meet the neurodiversity paradigm — through a model answering a question, never having visited this site. That reach is worth more to us than the control we would be asserting by refusing it.

The argument we considered and declined, recorded so the decision does not read as a default: our licence asks for attribution and share-alike, this site keeps a fact-check ledger and a whole skill about getting credit exactly right, and training honours neither condition. Retrieval cites you; training absorbs you. That is a real objection. We are choosing reach over it, deliberately, and it can be reversed in one file.

CorrectionThree crawler names in our reference were out of date, and one of our pages was invisible to search engines

We checked the names against each vendor rather than copying a list, which the reference we were working from explicitly tells you to do — and it was itself stale. Anthropic now publishes two crawlers that list does not mention, and OpenAI has added a third. All three are named in our file. Anthropic's own documentation has moved host, too.

Separately, and worse: Young Readers had shipped with broken structured data on 6 September and it was live for four days. The page's description quotes a caregiver asking “is that really true?” — and the straight quotation marks around it ended the machine-readable block four words in. Search engines and agents got nothing typed from that page at all. Nine automated checks passed it, and each was right to: a broken block of that kind has no appearance, so nothing about the page looks wrong.

It is the same fault as one we fixed last week — an unescaped quote cutting a value short — in a different container, which is why the check written for that one could not see this one. There is now a tenth check that parses every such block on every page, tested by restoring the real breakage rather than a synthetic one. 198 blocks, 198 parsing. A fix applied to one container is not a fix to the mechanism, which is the second time this week that sentence has been the lesson.

SiteA page for agents about how to read us without getting it wrong

There is now a short instruction file an AI agent can load before working with this site, at the standard address for such things. What it teaches is chosen entirely to head off mistakes we have actually made or watched people make: fetch the Markdown twins, and know that the other 141 pages deliberately have none because their arguments live in a thousand diagrams; a piece's number records when it was made and is never a rank; every count written out in our prose is a lead rather than a fact, because no check we own can read a number in a sentence; the fact-check status of any claim is published, and a hedge marked contested has to be carried.

And the one sentence about this site that is not its motto. “You are made of star stuff. The universe loves you for it” gets quoted at us as our masthead. It appears once here, in the colophon of Zine No. 1, immediately followed by “So do we.” The phrase is Love You Down To Your Star Stuff, and the difference is grammar doing moral work: the other version makes the universe the one doing the loving and the star stuff the reason. Down to is not because of. An agent that reads the file will not repeat the error we published about ourselves in August.

One thing the specification asked for and we did not do. It says to advertise that file in an HTTP header under a particular name. That name is not in the registry of allowed names — and we removed two unregistered ones from that exact header earlier the same day, after finding our own notes had claimed they were fine. Adding a third within the hour was not on. The standard address is the discovery mechanism anyway; the only thing lost is a tick on a validator.

2026 · September 10

Ctrl+F now reaches the field notes while they are still folded away — and the thing we said needed fixing did not

Twenty-four field guides keep their notes collapsed behind a click, and those notes are the guide. Search the page for a remembered phrase and the browser now finds it inside a closed card, opens it, and scrolls to it. Separately: we had named the wrong thing as broken, and checked before changing it.

CorrectionWe said the front page's card descriptions were unfindable. They were not

Yesterday's audit note claimed that the 401 collapsible descriptions across the front page and the collection pages were invisible to find-in-page, and listed fixing them as the next job. They were already fine. Those use the browser's own disclosure element, which has handled this for years — and the specification we were auditing against says so in as many words: prefer the native element, because it gives you find-in-page reachability with no code at all.

Checked before touching anything, which is the only reason this is a paragraph rather than 401 needless edits: the text is present in the page, three accessibility-tree nodes carry it while the card is shut, and the browser's own find call locates it. The lesson is the same one as yesterday morning — an inference about what a reader can reach is worth nothing next to a measurement of whether they can reach it.

SiteWhat was actually unreachable: the field notes

The guides hid their notes with display: none, which removes text from find-in-page and from the accessibility tree completely. That is the first item on the specification's own list of mistakes, and it applied to the substance of a quarter of the pages here — 278 entries across 24 guides, where the short brief on the card is the trailer and the notes are the film.

They now carry hidden="until-found": hidden, but walked by find-in-page and by a link that targets a phrase. Find a match inside one and the browser reveals it, and a handler in the shared script opens the card properly — chevron turned, state announced — rather than leaving a note hanging open inside a card that still claims to be shut.

Older browsers lose nothing, and that is from the standard rather than from optimism. The HTML specification makes an unrecognised value of this attribute mean plainly hidden, which is exactly what the old rule did. So a browser that has never heard of the feature behaves precisely as before. We had designed a feature-detection dance and deleted it after reading the spec text.

SiteThe trap: making text hidden a different way breaks four things that reveal it

Those notes get revealed on four separate occasions — a reader clicks the card, a link points straight at an entry, the print stylesheet opens every note because a printed guide carrying only the briefs is useless, and four of our checking tools force them open to measure them. All four worked by making the notes display: block, and that does not override the new way they are hidden. One added line in each guide fixes all four at once, which is why none of the 24 click handlers had to change.

The regression to fear was the search index, since it builds its records by forcing every note open, and a silent failure there would have quietly dropped the best writing on the site out of search. It is byte-identical: 196 pages, the 24 guides at 349 records and 771,190 characters, unchanged. Printing was checked under emulation as well — eight notes, none still hidden.

SiteThe zines are not done, and it is a question about reading rather than a checkbox

The same fault is in every paged zine, and much larger: 1,149 spreads across 101 zines, holding 2.16 million characters, and you can only search the spread you are standing on. The average zine is eleven spreads. On arrival, sitting on the cover, 98.6% of its words are beyond Ctrl+F.

The fix would work the same way and the shape is written down. It was not done today for two reasons, and the second is the real one. It touches 101 files, a thousand attributes, the shared script, the print rules and the reveal logic four tools depend on — with every zine on the site as the failure mode. And it is a decision about what reading a zine is. A zine is paginated, not folded: should searching from spread two throw you to spread fourteen? Our own search already links to a specific spread and handles it, so the gap is narrower than it looks — searching inside a zine you are already reading. That is a judgement about the artifact, so it is being asked rather than assumed.

2026 · September 10

A favicon that only worked in one place, and two link relations we said were standard and are not

Small, overdue plumbing: real icons for phones and old browsers, a manifest so the site installs properly, and a machine-readable index of everything on this origin that a program can read. The interesting part is what fell out of checking our own claims against a registry.

CorrectionTwo of the five link relations we send on every response are not registered

Every page here carries an HTTP header pointing at the things a machine might want — the index for language models, the feed, the licence. Our working notes said “every relation is IANA-registered; inventing one is a bad signal and crawlers ignore it.” We fetched the registry to add a new one and read all 236 entries. sitemap is not in it. security is not in it. Both had been going out on every response.

Why that is an error and not a nitpick. The standard for these headers permits a made-up relation only as a full web address, never as a bare word. A bare unregistered word is not a loose choice; it is invalid, and a strict reader is entitled to discard the whole header. We had written the rule down correctly and then broken it twice, in the same file, in the same line.

Nothing is lost by removing them. robots.txt has always carried the sitemap, which is where every crawler actually looks, and a security policy is found at its standard path — that is what a standard path is for. The lesson is narrower than “check your work”: sitemap reads exactly like a standard word. Plausibility is not registration, and the registry is one fetch away.

The same inconsistency is in the specification we were auditing against, which is worth saying rather than quietly working around: its example for this file keys a link as sitemap and lists it as useful, while the same page says to use only registered names. Both cannot be true. We followed the registry.

SiteThe favicon worked in a tab and nowhere else

One SVG covers a modern browser tab. It covers nothing else: /favicon.ico returned a 404 to every crawler and older browser that asks for it without being told to, iOS had no icon when someone added the site to a home screen, and Android had no launcher icon because there was no manifest to hold one. There are now five raster icons, all generated from the same SVG so the mark cannot drift between them, which is how hand-made icon sets go wrong.

The first run produced white squares and looked fine in the file listing. A browser screenshot composites onto white unless told otherwise, so every icon came out with no transparency — a dark rounded rectangle inside a white box, which would have looked broken on any dark tab strip. The generator now reads the colour type back out of each PNG and refuses to write one that is not what was asked for. Four lines, and it is the check that would have caught it first time. The one before it was a screenshot, yesterday, for the same reason.

Android's icon is a different drawing, not the same one resized. Adaptive icons get cropped to a circle or a squircle chosen by the device, and a rounded rectangle is exactly what that crop eats — corners first, leaving the star in a clipped box inside another box. That variant drops the rounded corners for a full-bleed ground with the star at 80%.

SiteIt installs, and deliberately keeps the way out

A web app manifest means Android and Chrome can install the site properly rather than falling back to a generic browser icon and a page title. It opens in minimal-ui, not standalone, and that is a decision about this site specifically: every piece here carries prev/next and a collection badge, so it is a chain you walk. Hiding the browser's own back control would strand a reader inside a reading order with no way back up it.

It is generated rather than hand-written, because the icon list and the brand colour are a second copy of things that live elsewhere, and a second copy is what goes stale. The icons are checked against the repository, and the colour is counted off the pages — 197 of 198 carry the same value and one print-first sheet carries white, which is correct for that page and must not become the answer for the whole site.

SiteOne address that lists everything here a program can read

A small standard file now names the index for language models, the feed, and the licence, so an agent makes one predictable request instead of guessing paths. The type it is served as is the entire point: the file has no extension, so a static host would call it a generic download, and a strict reader skips anything that is not the right type. It is declared explicitly, and our local development server was taught the same thing so a check run here reflects what a reader gets.

It does not list the 57 Markdown copies of pages, and that is the convention's own advice: each is announced on its own page, the language-model index covers the site, and a catalogue that lists every URL has just become a second sitemap — the exact anti-pattern we avoided when writing the first one.

The feed now declares how often to check it. Measured rather than chosen: 109 pages across 25 of the last 28 days, about four a day, and the feed holds fifty items — so a reader checking once a day has roughly a fortnight of slack and cannot miss anything. Declaring four checks a day would have asked every polite reader to fetch four times as often for nothing. A cadence is a promise, so it is derived from the log rather than picked.

2026 · September 10

If you replace our colours with your own, 4,862 diagram labels had almost no contrast — and the first thing we “found” was not real

Some readers override every site's colours with a small high-contrast palette of their own. We had not one rule for that, from the first page in July until today. Nobody reported this. We went looking because a specification asked a question we had never asked ourselves — and then spent most of the day fixing something that was never broken, which is the part of this worth reading.

SiteThe diagrams were never wrong. The ground moved out from under them

Browsers do not replace fill and stroke on an SVG. So when a forced palette turned the page white, every diagram kept the light ink it had been drawn with against our dark ground: 4,862 labels across 133 pages below the AA contrast threshold, most of them between 1.2:1 and 2:1. Under a dark forced palette the same count is 15, which is the tell — the drawings were fine, the page beneath them was not. Diagram labels now take the reader's own foreground colour.

A forced palette can be either, and that decided the fix. We measured it before writing anything: a light contrast theme reports white ground and black text, a dark one the reverse, and the link colour moves from navy to yellow. So the print stylesheet's approach — pick an ink and write it down — is wrong here. Print's ground is always paper; this one belongs to the reader, so every value we added is a system colour keyword that tracks their actual choice rather than our guess about it.

CorrectionWe reported 229 invisible headings, including our own wordmark. There were none

What we measured, and why it sounded right. A heading painted with a clipped gradient takes its colour from a fill property that beats color outright. A forced palette throws the gradient away. The fill, read back from the browser, was still fully transparent. That is precisely the mechanism by which 90 headings across 45 pages printed blank on 12 August, a fault we found and fixed — so 229 elements on 130 pages, the ★ stuff wordmark among them, read as the same thing in a medium we had not thought to emulate.

It was wrong. A browser under a forced palette paints those glyphs in the reader's own colour anyway, whatever the fill says. The proof is two screenshots of the same masthead — one with the transparent fill still winning, one without — and they are identical. Paper genuinely honours the transparent fill; this mode does not. The two are indistinguishable if you ask the browser what the fill computes to, and obvious the moment you look at the pixels.

The cost, and the reason this is a correction and not a footnote. A rule was written for it and applied to all 198 pages, where it did exactly nothing. It has been removed. Reading a property and inferring what a reader sees, instead of looking at what a reader sees, is the error this site is organised against — we have a page about it, a gate that exists because of it, and five entries below this one from a single day last week cataloguing tools of ours that mistook a description for the thing described. This is a new instrument making that exact mistake in its own first draft, and finding it took a screenshot rather than a better argument.

What the checker does now. It counts gradient-clipped headings and offers no verdict on them, with the reasoning written where a future version would be tempted to add the test back. A real check would sample the rendered pixels inside each glyph; that is a bigger instrument than this, and until somebody builds it the gap is recorded rather than papered over. A tool reporting “I cannot check this” is reporting a gap, not clearing it.

SiteTwenty-four labels are exempt, and recolouring them is what would have broken them

A label set on a shape the diagram paints for itself — the symbol on an element's coloured disc in the elements field guide, the two swatch names in Starlight — was never in trouble. It reads at about 10:1 against its own backdrop in either palette. Recolouring it is the damage: 5 such labels dropped below AA in the light palette and 19 in the dark when the blunt fix was first applied. Those 24 now carry an explicit opt-out, and two of them live in the code that generates the diagrams, so a new element or entry inherits it rather than arriving broken.

This is a mistake our contrast checker already had written on its front page, and we made it anyway: a probe that knows only the page background calls all eight of those element symbols 1.05:1, and “fixing” them erases every symbol. The note was there. We had to walk into it a second time to read it.

One page needed more than a rule or an exemption. On The Bow-ery the ground band under two labels is a dark fill at 72% opacity, and a partly transparent thing borrows whatever is behind it — over our page that reads as solid ground, over the reader's palette it lands at mid-grey. Both options failed there: 2.57:1 recoloured, 4.24:1 left alone against a 4.5 bar. The band no longer borrows the ground it sits on.

SiteA ninth gate, and the reason to trust it is that it failed first

check-forced-colors.mjs measures every page twice, once under each palette, and the baseline is zero. A clean first run would have proved nothing — a check that reports no problems is equally consistent with a stylesheet that never applied, a trap we walked into on 31 August. The evidence is the sequence: 4,862 findings, then 24, then 0, where the 24 were exactly the labels predicted to break, in exactly the palettes predicted.

Its first design had a hole shaped like the fault it exists to find. It skipped any diagram marked exempt — which would have silenced every label sitting on the page ground in a mixed diagram, the moment somebody exempted it to fix the others. Starlight is precisely that diagram: eleven labels on the page ground, four on its own colour swatches. Nothing is skipped now.

What we are not counting, and why. 3,581 shape fills fall below the non-text threshold against a white palette, and nearly all are starfield dots and glows inside the artwork — decoration, whose disappearance is the mode working correctly. Counting them made an early run report 96 problems on a page that had one. And nothing needed a restored border: we checked 198 pages for boxes whose only edge was a shadow and found zero, because everything here draws a real border. We are reporting that absence rather than adding a rule that would imply something had been wrong.

One thing we wrote and then deleted. The specification also asks after readers who want more contrast without taking over the palette. We wrote that block and removed it the same day, because nothing we own can measure it — our contrast checker emulates screen and paper and takes no such setting, so it would have shipped to 198 pages on the argument that it looked safe. Given the morning we had just had, that was not an argument worth accepting twice. It is recorded as unfinished, in the stylesheet, where the rule would have gone.

2026 · September 9

We said our sister site ships Markdown mirrors with no staleness check. It does not, and we should have looked at the gate rather than the comment

The entry below this one says Queering Earth's Markdown generator has no check behind it, so an edited page would ship a stale copy unnoticed. That is false. Its check-metadata.mjs catches exactly that, and catches a missing discovery link too. Both verified firing today. The correction matters more than most because it was a public claim that somebody else's work was deficient.

CorrectionWhat we said, what is true, and how we got it wrong

What we said, in the entry below and in our working notes: that their generator has no --check, that the check-markdown.mjs its own header names was never built, and therefore “a page edited without re-running it ships a stale mirror and nothing notices.”

The first two clauses are true and the conclusion does not follow. The check was built somewhere else and under another name: check-metadata.mjs, one of that site's seven ship gates, regenerates every derived file into memory — each Markdown sibling, the two index files, the feed — and compares. Its own error message for the case reads “a stale .md is the quiet one.” It separately asserts that every page still advertises its sibling. We tested both rather than reading them: corrupt a sibling and it exits 1; delete a discovery link and it exits 1.

How we got it wrong. We read the comment at the top of their generator, which names a file that does not exist, went looking for that file, did not find it, and concluded the coverage was missing. We did not read their list of gates — which is in their working notes, seven lines long, with the answer in it. A comment naming a file that was never written is a claim, and we repeated it. Their coverage was never the problem; their comment was, and it has been fixed.

And it is the same fault we spent the day cataloguing, turned outward. Five times today a tool of ours mistook prose for the thing the prose describes — a broken tag quoted inside a script, a comment about a deleted attribute, a changelog entry quoting a template. This is the sixth, and the only one where the prose belonged to somebody else. Reading a description instead of measuring the thing is the error this site is organised against, and we made it about a neighbour.

Their arrangement is arguably better than ours. One gate asking is every derived file current? is a cleaner shape than a --check flag on each of three generators, which is what we have.

2026 · September 9

Fifty-seven pages now have a Markdown twin at the same address — and a hundred and forty-one deliberately do not

Add .md to the address of an essay, a collection page or this changelog and you get the same words as Markdown, derived from the page itself. The zines, field guides and print sheets are left out on purpose, and the reason is the more interesting half.

SiteWhy three-quarters of the site has no Markdown copy

Because it would lie by omission. A zine's argument is not only its sentences — it is carried by the figures too, and this site has 1,021 inline diagrams holding 4,851 text labels, almost every one of them on a zine, a field guide or a print sheet. Markdown cannot represent any of it. A .md of The Lines We Drew would be its prose with the drawings quietly absent, which is a smoothed retelling of our own work — published, of all places, in a file whose entire purpose is to be trusted by a machine that cannot check.

The field guides would be worse. Their entries are built by JavaScript from data in the page, so they do not exist in the source at all; a converter reading the file would produce a guide with no animals in it.

Where something is dropped from the 57 that do have a sibling, the frontmatter says so — 105 decorative diagrams, counted per page as omitted_diagrams. Excluding the artifact pages for that exact reason and then dropping silently here would have been the same fault at a smaller scale. And the 275 song embeds on the racks became links rather than disappearing, because the song is the content.

SitePorted from Queering Earth, with the gate it was missing

Our sister site Queering Earth shipped this first and got the hard part right: derive from the page's own <main> landmark, and throw on any element the converter does not recognise rather than skipping it. A converter that shrugs is precisely how a Markdown copy starts saying less than its page.

What it does not have is a check. Its own header names a check-markdown.mjs that was never built, so a page edited without re-running the tool would ship a stale mirror and nothing would notice. We looked: that site's files happen to be current today, and nothing is keeping them so. Ours fails the build in two ways — when a sibling is out of date, and when a page in the set does not advertise its sibling from its own <head>. An unadvertised Markdown file is found only by something that already guessed the address, which is the failure the whole convention was revised to fix.

CorrectionThe fifth time in one day that a tool mistook prose for the thing it describes

This changelog was excluded from the Markdown set, and the reason was this changelog. The tool decides whether a page is a client-rendered field guide by looking for a template string; an entry published this morning quotes that template while explaining a fix to it. So the page describing the mechanism was mistaken for the mechanism, and the largest and most useful document on the site silently had no Markdown sibling. The check we had just added caught the consequence within the minute: 56 of 57 advertise their sibling.

Five tools, one day, one fault. The markup checker flagged a broken tag written inside a JavaScript string. The policy generator counted a comment about a removed attribute as a live attribute, and would have kept a weak keyword in the security policy indefinitely. Two of our own verification commands reported problems that were sentences. And now this. A regex over a whole file cannot tell a thing from a sentence about the thing — and this site writes about its own markup more than most sites ever do, which is why it keeps stepping on the same rake. The rule is now written down where the next person will find it: ask the structure, never the raw text.

One smaller one, in the same hour. The sentence in llms.txt announcing how many pages have a sibling was written with the number typed into it. It was wrong within the hour, when the misclassified page above joined the set. That is the fault the longest section of our working notes is about, committed inside a sentence whose whole job is to be accurate for a machine. It is counted from the filesystem now.

2026 · September 9

A tool called build-whats-new was building four things, only one of which is What’s New

Renamed to build-derived.mjs. It generates What’s New, the feed, llms.txt and the security.txt, and the old name described a quarter of it.

SiteWhy a name mattered enough to change

The four files are coupled on purpose and the coupling is worth keeping. All of them are derived from the same two sources that cannot drift from the site — the collection pages' own cards, and git log — and a second tool parsing those cards would be a second answer, free to disagree with the first. That is the fault this whole apparatus exists to prevent, so the tool stays one tool.

What was wrong was only the label, and a label is what somebody greps for when they need to know where a file on this site comes from. Two of today's changes were logged with a note that the name had stopped being true; leaving it that way would have been the same species of error as a stale count — a description that no longer matches the thing, sitting where a reader will trust it.

The old name survives in three places on purpose. The entries below still say build-whats-new.mjs, and so do the older rows of the fact-check ledger, because both are dated records that were true when written — the same reason Bone Song still carries the sentence we later argued against. The working notes name both, so a search for the old one lands on the explanation rather than on nothing.

One reader-visible consequence: What’s New says at its foot which tool generated it, and that line is itself generated — so the page had to be rebuilt for its own colophon to stop naming a file that no longer exists.

2026 · September 9

Two hundred and thirty-three onclick attributes are gone, and with them the one weak keyword in the security policy

The policy shipped an hour ago needed 'unsafe-hashes' to permit six strings — the handlers on every pager button, every print sheet and the search form. Those buttons are now bound in JavaScript, there are zero inline event handlers left on the site, and the keyword removed itself.

SiteThe pager still pages, which was the whole risk

This touched the primary navigation of a hundred zines, which is the most load-bearing thing on the site: the prev/next bar above every spread. 200 of the 233 attributes were the two pager buttons, and they are now bound in starstuff.js, which every one of those pages already loads. The other 33 — ten print sheets, one page with a pager and no shared script, and the search form's single onsubmit — are bound in each page's own inline script, each of which already sits after its buttons in the document.

So it was tested by clicking it. Twelve zines, forward twice and back once each, checking the spread actually changed; four print sheets, toggling side A to side B and back; the outlier pager; and the search form, confirming a submit does not navigate. Run twice — once with the security policy applied and once without — because the binding has to work either way, and because a policy that is what makes the site work is a policy nobody can safely change later.

The binding is deliberately not folded into the function beside it. starstuff.js already builds the injected per-spread footer controls, and that function returns early on a page with no spread footer. Putting the two top buttons in it would have silently skipped any page that has a pager and no footer. It also asks for changePage at click time rather than holding a reference, because on four pages the shared script loads before the page's own.

CorrectionOur own tool counted a comment as a live handler

After the last attribute was removed, the policy generator still reported one inline handler and still emitted 'unsafe-hashes' for it. The handler was a sentence. The note we had just written into search.html explaining why the onsubmit attribute had been removed contains the words of the attribute, and the tool was scanning the raw file rather than the tags — so a comment about deleting a handler was read as a handler, and would have kept the weak keyword in the policy indefinitely on the strength of a description.

This is the third time today the same mistake has appeared in a different tool, which is the part worth publishing rather than the instance. check-markup.mjs flagged a broken tag written inside a JavaScript string; the search index once indexed a page's own listing of other pages; and now this. The fix is the same each time: walk the tags, not the text. The generator now uses the same quote-aware walk the markup checker does, and skips scripts, styles and comments.

AuditAnd the test could not tell “broken” from “not applicable”

The first run reported Proportioned to the Groove as a failure: four spread ids, all undefined. Nothing was wrong with it. It is a scroll zine — every section laid out at once, no paging, so no pager buttons and no active spread, exactly as it was built. The page had not been modified at all; the test had simply clicked a button that does not exist and reported the absence as a break.

The suite now checks that a page has a pager before it tries to use one, and skips the two scroll zines by name in its output. A test that cannot distinguish a broken page from an inapplicable one files the wrong bug, and the wrong bug on a page that is working is worse than no test: it sends somebody to fix something that is correct.

2026 · September 9

This morning we said a real Content-Security-Policy was impossible here. It is not — we had stopped at two options when there are three

A full CSP now ships on every response. An inline script injected into any page on this site does not run, and that is checked by injecting one into a browser rather than asserted. The reasoning we published earlier today was sound in both its halves and wrong in its conclusion, which is a nicer way to be wrong than usual and still worth naming.

Correction“A real policy needs nonces or unsafe-inline” — both true, and it missed hashes

What we said, in the entry below this one and in _headers. That a full policy was deliberately absent because every page carries an inline <style> and many an inline <script>, so it would need either nonces — which a static site with no build step cannot produce, since a nonce must be unique per response and appear in both header and HTML — or 'unsafe-inline', which is a policy in name only. We concluded that frame-ancestors was the only half worth shipping.

Both premises hold. The conclusion does not, because there is a third option, and the specification we were reading names it in the same sentence: hashes. This site has 49 distinct inline script bodies across 157 elements and six distinct inline event handlers across 233 attributes. Forty-nine and six are small numbers. Every one of them is now hashed into script-src.

What made it look impossible was counting elements instead of distinct bodies. 157 inline scripts sounds like a hash list nobody could maintain; 49 unique ones, most of them the same pager repeated across a hundred zines, is a 3.3 KB header. The measurement that mattered took one command and we had not run it.

SiteWhat the policy actually forbids now

Beyond script: no <base> element may be injected (a base tag rewrites every relative URL on the page, and this site is built entirely out of relative URLs); no plugin embeds; no form may submit anywhere at allform-action 'none', which is simply the truth here and closes the easiest route an injection has to send data out; no frame except the two embed hosts; no connection except to this domain; and no font or image from anywhere but here, which only became sayable when the typefaces came off Google earlier today.

The 'unsafe-inline' at the end of script-src is not what it looks like, and it would be fair to assume the worst on seeing it. Under CSP Level 3 a browser that finds a hash or a nonce in a source list discards 'unsafe-inline' entirely; it is there only for browsers too old to understand hashes, which get a weak policy instead of none. We tested that rather than trusting it: a script element injected into the front page is refused, with a violation logged, in a current browser. If that ever stops being true the token has to come out — and the cost would be the pager breaking on Safari before 15.4, which is the trade written down beside it.

One concession is real and is not a technicality. style-src still permits inline CSS, because 2,290 inline style attributes carry the nav accents, the card colours and every twinkle position, and an attribute cannot be hashed without hashing all 2,290. CSS injection can deface a page and can leak some kinds of data through selectors; it cannot execute script. Said plainly because the alternative is rounding it down to nothing.

SiteGenerated, gated, and tested against the site working

A hash list is a second description of the site, so it cannot be typed by hand: it would be wrong the first time somebody ships a zine, and the failure is not cosmetic — an inline script whose hash is missing does not run, so a new zine's pager would simply be dead. So tools/build-csp.mjs computes the policy from the pages and writes it into a marked region of _headers, and --check fails when the two disagree. That gate was verified by adding a new inline script to a zine and confirming the build refused it.

And the policy was tested against the site working, not only against the attack. A CSP that breaks a hundred pagers is worse than none: the suite loads a paged zine and clicks through a spread, runs a search and counts 40 hits, loads a rack and confirms 44 embeds and the self-hosted fonts, opens a broadside, and checks the AVIF images arrive — all with the real header, and all watching the console for violations. Fifteen assertions.

Two of the first results were my own bugs and both are worth recording. The tool's --print mode emitted the policy and its inventory, so the value carried newlines, the local test server refused it as an invalid header and died — and the suite then ran every assertion against Chrome's network-error page and reported nine failures that were all mine. It reported them confidently, because the readiness loop gave up silently instead of failing. Both are fixed: --print writes only the policy, and the suite aborts rather than testing an error page. A test that can quietly measure the wrong document is not a test. And a third: the suite called eval() a failure, when an expression evaluated over the debugging protocol is exempt from the page's eval restriction — so it now asserts what is actually checkable, that the policy contains no 'unsafe-eval'.

2026 · September 9

If you find a hole in this site, there is now somewhere to send it that isn't a public issue

A security policy and an RFC 9116 security.txt, pointing at a private reporting channel that had to be switched on before it existed. The interesting part is the Expires field, which is a file that goes invalid on a date and says nothing about it — so it is gated rather than diarised.

SiteA private channel, because an issue on a public repository is a disclosure

Reports go to a draft advisory, which is private until we publish it. The obvious alternative was an issue on this repository, and that is exactly wrong: every issue here is world-readable the moment it is opened, so the ordinary route would publish a vulnerability rather than report it. Private vulnerability reporting was switched off on the repository until this change — had we just written the URL into a file, it would have pointed at nothing.

What decided it was a warning rather than a preference. RFC 9116's guidance is that an unmonitored contact is worse than no file at all — and the honest reading of our own contact arrangements is that a general form on a small nonprofit's site is that failure: Stimpunks' own contact page says we get lots of spam and sometimes miss requests in the noise. A GitHub advisory notifies the people who can actually fix it, and publishes no address to be harvested.

The policy states the scope honestly, which is the useful part for anybody reading it. This site has no application server, no database, no accounts, no session, and no form that submits anywhere — so most report categories are ruled out before anyone spends an evening on them, and the policy says which ones are still worth sending: a header or redirect misconfiguration, a way out of the JavaScript template that builds the field-guide entries, or anything that makes the site contact a third party we have not disclosed. It also says there is no money, because there isn't, and pretending otherwise wastes a researcher's time.

SiteA file that expires, on a site with a documented weakness for things that go stale

security.txt requires an Expires date and the RFC's own advice is to treat it like a certificate. That is this project's signature fault with a date attached: valid today, invalid in a year — not merely out of date, invalid — and completely silent about the transition. The longest section of our working notes is about numbers going stale because nothing can read a figure written out in prose. A hand-written expiry would have been that, on a one-year timer, on nobody's calendar.

So the date is one constant, the file is generated from it, and the build refuses to pass inside 30 days of the lapse. The countdown prints on every run — 364 days left, today. The check itself was tested in both directions before being trusted rather than assumed to work: it fails at nine days out, fails at forty days past, and passes at 364. Renewal is a one-line edit in the place that tells you it is due.

2026 · September 9

A description on this site read “The culture end of Star Stuff, where” and stopped — for a month, because of one unescaped quotation mark

The site now publishes an index for language models, generated from the same collection cards every other list here comes from. Writing it meant reading all seventeen collection descriptions, which is how we found five meta tags on three pages silently cut in half by an unescaped quote — and that fault has earned check-markup.mjs a ninth check.

CorrectionFive descriptions were truncated in every browser, and the source looked fine

What was wrong. Stars We Grew Up On described itself as “The culture end of Star Stuff, where ” — and stopped. Not a truncated sentence: the description reads “…where ‘star’ means icon rather than nucleosynthesis”, and the quotation marks around star were plain " characters inside an attribute already delimited by ". So the parser closed the attribute at the first inner quote, kept nine words, and treated the rest of the sentence as stray attributes on the same <meta> element.

It affected all three of that page's descriptionsdescription, og:description, twitter:description — so a search result, a link unfurl and a shared card all showed the same nine-word fragment. Two more pages had the same fault in one tag each: A Field Guide to Being a Shark lost everything after “a ‘living fossil’”, and Two Hundred Years after Alfie Kohn's “Better Get Used To It”. Live since 11 August in the first case, which is the day that page shipped.

Why nothing caught it. The JSON-LD on the same page carries the identical sentence correctly escaped, which is how we know the wording was never in doubt — only the attribute. And the source reads perfectly: the sentence is all there, in order, in the file. The defect exists only in the parsed document, which no gate here was looking at, and a meta description has no rendering to look wrong. Found by reading seventeen descriptions in a row while building the index below, which is the only reason it turned up at all.

SiteA ninth check, so that cannot happen quietly again

tools/check-markup.mjs now reports an attribute value cut short by an unescaped quote. This is the gate's stated bar rather than an exception to it: its job is faults where the browser silently hands a reader a different document than the source describes, and this is that, exactly.

Scoped to content, alt, title and aria-label — the attributes where prose legitimately contains quotation marks and where truncation costs something. A stray quote in a style or srcset is a different fault with a visible symptom, and widening the check would start reporting on the JavaScript inside the field guides.

It runs over the tag walk rather than over the source, and the first version did not. Scanning the file directly flagged a deliberately broken <meta> written inside a JavaScript string in the test fixture — a decoy, caught only because it had been written as one. The walker already tracks quote state exactly as a parser does and already skips scripts, styles and comments, so moving the check onto it fixed the false positive and inherited the rest. Regression-tested against all three real pages as they stood before the fix (5 findings, correct lines) and against decoys that must stay silent: escaped entities, values containing = and /, an attribute followed by more attributes, and the broken tag inside both a script string and an HTML comment.

Sitellms.txt — curated, which is the hard part

/llms.txt is a short markdown index of the site for language models. The convention's own list of common mistakes opens with “treating it like a sitemap and listing every URL”, and this site has 169 pieces and an exhaustive sitemap already. So the file carries the ways in, the Foundations and Notes working papers, and the seventeen collection pages that lead to everything else — 39 links across 71 lines — and states plainly where the complete list lives instead of reproducing it.

It also states the editorial conventions, because a model quoting us should know them: that we write about neurodivergent and disabled people in the first person plural because we write from inside that community; that Autistic is capitalised as an identity term and autism is not; and that every piece records its sources, its open questions and its corrections, which are published by date rather than quietly fixed.

Generated, from the same two sources as everything else here — the collection pages' own cards, and git log. The tool that emits it is still called build-whats-new.mjs, which now under-describes it, and that is the deliberate half of the trade: a second tool parsing those cards would be a second answer free to drift from the first. The name under-describes the tool; a duplicated parser would under-describe the site, and only one of those gets a reader wrong.

The version-two requirement is discovery, not the file. v1 expected an agent to guess the path, so an unadvertised file was found only by one that had already assumed it. Every response from this site now carries Link: </llms.txt>; rel="describedby", alongside registered relations for the sitemap, the feed and the licence — sent as a header rather than only as HTML, so it reaches a client that never parses a page. ## Optional is deliberately absent: v1 gave that heading mechanical meaning and v2 withdrew it.

2026 · September 9

One picture on this site weighed 2.3 megabytes to be displayed four hundred pixels wide

The images are now AVIF with WebP and JPEG behind them, and sized to what the page actually draws rather than to whatever the original happened to be. A modern browser now fetches 600 KB of images where it used to fetch 4,216 KB — 86% less. Also: the last three pages with a skipped heading level are fixed, and a separate check of every tap target on the site came back clean.

SiteAVIF, WebP, JPEG — and sizes taken from measurement rather than from the CSS

The worst case names the whole problem. The SN 1006 supernova remnant on Love You Down To Your Star Stuff — one of the three doors into this collection — was a 3072×3072 JPEG weighing 2.3 MB, and the page displays it 400 pixels wide. That is nearly eight times more picture than any screen was going to use, on a page many readers meet first. It is now 800×800 and 154 KB as AVIF.

The sizes came from measuring, not from reading the stylesheet. Each image's rendered width was read off the live layout: 400px for the supernova, 560 and 598 for Rainbow Mosho's artwork, 708–712 for the launch frames and the dragon. Each source is now twice its largest rendered width, which is what a high-density screen needs and no more. Guessing from max-width declarations would have got the supernova wrong, because the figure that constrains it is two rules away from the image.

Every image is a three-format chain<picture> with AVIF first, WebP behind it, JPEG last. AVIF reached baseline availability in July 2026 so it is the format to encode first, and the fallback chain stays because widely available describes the browsers shipped in the last two and a half years, not the ones people are actually running. Verified rather than assumed: all eight images were checked in a real browser and all eight pick the AVIF, load cleanly, and report a natural width of exactly twice their rendered width.

Two decisions worth stating. og-card.jpg is deliberately untouched — it is never in an <img>, it exists for link unfurls, and social scrapers want a plain JPEG. And <picture> is an inline element by default while the pages style the <img> as a block, so the wrapper would have contributed a stray line box under every figure; one rule in the shared stylesheet fixes it.

SiteWhat the smaller files cost, stated rather than buried

These pages are meant to be printable, and no print rule constrains an image, so a figure prints at its CSS width. The downscaled sources print at roughly 190–216 dpi where the supernova previously had 736 dpi available. That is a real reduction and it is a deliberate trade: 736 dpi is far past what any home printer resolves, and it was being paid for by every reader on a phone. Around 190 dpi is comfortable for a photograph inside an essay and well clear of where downscaling becomes visible.

If print sharpness ever matters more than page weight for a particular sheet, the fix is a srcset with a larger candidate on that one figure — not putting four megabytes back on the front door.

SiteThree pages skipped a heading level; a tag change with the selector to match

The Shell Was Your Calcium, What Looks Like Chaos and Why Difference Comes First each jumped from an <h2> straight to an <h4> for their colophon labels — Credit where it is owed, References, Read more. A heading outline with a rung missing is a broken outline to anyone navigating by headings, which on this site is the table of contents.

All eight became <h3>, and the rule that styles them moved with them from .colophon h4 to .colophon h3. The change is visually inert and that was checked rather than hoped for: the rule sets font-family, size, tracking, transform, colour, margin and font-weight explicitly, and these pages carry a margin: 0 reset, so nothing was inherited from the browser's defaults for either tag. 0 pages now skip a heading level.

AuditEvery tap target on the site, measured — and the measurement was wrong twice first

The result: clean. 5,591 interactive targets across 198 pages. 3,005 are inline links inside running prose, which the criterion exempts outright; 1,379 are smaller than 24×24 px but sit far enough from their neighbours to satisfy the spacing exception; none fails both.

Getting there took three attempts and the first two were wrong in opposite directions, which is the part worth keeping. Testing only a link's immediate parent under-detected the prose exemption — a link wrapped in <em>, or two links joined by the word “and”, both read as isolated controls, and it reported 11 failures that were not failures. Testing whether the nearest block ancestor is mostly prose over-detected it: the front page's pills sit in a block full of prose, so a genuine standalone control was exempted and a real finding disappeared. The criterion is neither. A link is inline in prose when real text sits immediately beside it in its own inline flow, and only that test gives the same answer as reading the page.

A number that comes out clean on the first run has not been checked; it has been asserted. These three runs disagreed with each other by eleven findings in one direction and one in the other, and the site never changed.

2026 · September 9

Every page on this site handed your address to Google before it drew a word — and we only found out because we sat down to write the privacy page

The site now has a privacy statement, and writing it changed the site first. Four typeface families are self-hosted as of today, which ends the only third-party request a plain page here was making. On the way we found that eight pages were rendering a fallback typeface, and that this morning's own changelog entry overstated what youtube-nocookie actually promises. Both below.

SiteThe fonts came off Google, because the honest sentence was unwriteable

The fault, and how it surfaced. This site has no analytics script, no cookies, no accounts, and a search that runs entirely in the reader's browser. The draft privacy page said “on most pages, your browser contacts nobody” — and that was simply false. Every page fetched its typefaces from fonts.googleapis.com and fonts.gstatic.com, so every page view handed Google an IP address and a user-agent before a word was rendered. It could not be fixed by rewording. The fonts were quietly the largest thing we were giving away, and they were giving it away on pages that had nothing else on them.

What shipped. Atkinson Hyperlegible Next, Space Mono, Fraunces and Boogaloo now come from this domain — 20 files, 580 KB, the exact set Google was serving for the URLs the pages requested, mirrored one for one with the same subsets, the same unicode-range values, the same weight ranges and the same font-display: swap. Hand-picking subsets is how a self-hosting pass loses a glyph nobody notices until a reader meets it. All four are SIL Open Font License 1.1, verified against the google/fonts repository rather than assumed, redistributed unmodified, with each licence text shipped beside the files as the licence requires. Fraunces keeps its variable optical-size axis, because no page overrides it and a static instance would silently redraw the Bone Song display type.

Verified by measuring the old against the new, not by looking. The live site still served Google fonts while the working copy served its own, so both could be measured at once: every text node's rendered box, on the same pages, at the same viewport. Ten control pages came back identical — 14,021 text boxes on the changelog alone, zero differing. A separate probe confirmed 118 font renders across 14 pages all resolve to the self-hosted face rather than a copy installed on the machine doing the checking, which is the trap this repository already had written down.

CorrectionWe called the youtube-nocookie move a privacy win. It is one, and narrower than we implied

What we said this morning, in the entry directly below this one: that moving 66 embeds to youtube-nocookie.com was “the cheapest privacy win on the list.”

What Google actually promises. Privacy Enhanced Mode “prevents the use of views of embedded YouTube content from influencing the viewer's browsing experience on YouTube”; ads on such a video “will likewise be non-personalized”; and the view “will not be used to personalize advertising shown to the viewer outside of your site or app.” Every one of those is about personalisation, not about collection. Google does not say the request is not made, that nothing is logged, or that no cookie is ever set. The domain name says nocookie; the documentation says non-personalised.

Why it matters more than the wording. An embedded player is a frame from somebody else's server, so 292 of them across 13 pages reach Google the moment those pages load, whether or not a reader presses play. We had read the domain name and not the small print — which is this site's own too-good-to-check reflex, aimed at a piece of infrastructure instead of a quotation. The privacy page now states the trade on its own face and marks it as unfinished rather than settled, and names the 13 pages so a reader who would rather not be seen by Google knows which they are.

SiteEight pages were rendering a typeface they never asked for

Found while proving the self-hosting had changed nothing. starstuff.css puts Atkinson Hyperlegible Next on the site nav of every page and Space Mono on the injected paged-zine controls — but the font <link> was written per page, which made it a second list free to drift from the first, and it had drifted on eight: Bone Song, Underground and You Were Never One Thing never requested Atkinson; the front page, LYDTYSS, Eternal Sunshine, the Neurodiversity Field Guide and Shorthand Evolution used Space Mono in their own stylesheets and never requested it.

The front page is the clearest case: its masthead tagline, Cosmic Connections, was being drawn in Menlo. Not a near-miss — a completely different typeface, on the first line under the wordmark, for as long as the page has existed.

And the reason nobody caught it is written in this repository already. Atkinson and Space Mono are installed on the machine this site is built on, so a fallback rendered correctly here and would have shown a stranger something else. Chrome reports the difference — a webfont face is flagged custom and an installed one is not — but only if you ask, and no gate here asks. Seven of the eight now render correctly for everyone. The eighth, Shorthand Evolution, measured identical either way: it declares Space Mono for an element that renders no text, so it was a real missing request with no visible consequence. Self-hosting removes the whole class of error rather than these eight instances, because there is now exactly one place a face is declared.

SiteThe privacy page, and a link to it on all 198 pages

What This Site Knows About You is the sixth working paper in Notes & Rationale. It states what is collected, by whom, on what basis, and what is not collected — with our host's definitions quoted from its own documentation, including the one that matters: unique visitors are “different IP addresses engaging with your project”, so counting readers means processing addresses, and we say so rather than reaching for the word anonymous.

It also explains why there is no cookie banner, and why that absence is the honest kind: we set no cookies and no browser storage of any sort, so a prompt asking you to consent to nothing would be theatre plus one more thing to click. And it disowns a document that would otherwise mislead you — the Stimpunks Foundation's policy for stimpunks.org describes comments, logins, Gravatar, HubSpot and QuickBooks, none of which exists here, so reading across would leave you expecting processors this site does not have.

A privacy statement has to be reachable from every page. The colophons here are per-page and vary — 153 pages have one, 45 do not, and their link lists differ — so there was no uniform footer slot to insert into. The site nav is uniform, so the link sits there, in the home group beside about and search, on all 197 pages that have a nav, plus the front page's masthead. It is hidden in @media print with the rest of the chrome, so nothing changes on paper.

2026 · September 9

A screen reader can now tell you which column a table cell is in — and two numbers we published this morning were wrong

The second half of the accessibility audit: 199 header cells given a scope, four tables that had no accessible name at all given a caption, and 161 table names that read “the The…” repaired. Corrected below: both table figures in this morning's entry were overstated, one of them because our own counting method was broken.

CorrectionWe said 282 of 299 header cells and 28 uncaptioned tables. Both numbers were wrong

What we said, this morning, on this page and in the ledger. That “282 of 299 <th> carry no scope and “28 of 83 tables have no <caption>.

The first was a broken count, and the bug is worth naming because it is one keystroke. The figure came from grep -o '<th' — which also matches <thead>. There are 81 <thead> elements here, and 218 + 81 = 299 exactly. The real figure was 201 of 218. The correct pattern is grep -oE '<th[ >]'. An audit that inflates its own findings is not being cautious; it is being wrong in the direction that feels safe.

The second was literally true and materially misleading. 28 tables did lack a <caption> — but 24 of them carry an aria-label on the <table>, which gives them an accessible name just as a caption does. Only four tables on the whole site had no name by any means. Presenting 28 as an accessibility failure counted a naming convention we had deliberately chosen as an absence.

Caught by us, while fixing it — the inventory taken before the first edit disagreed with the audit that ordered the edit. That is the good case, and it is the second time in one day that the error was in our own check rather than in the thing being checked. The lesson is already written down here in another form: a derivation that returns a number nobody reads back is not a derivation.

Site199 header cells given a scope, so a cell knows which column it belongs to

What was wrong. WCAG 1.3.1 Info and Relationships, Level A. A sighted reader takes in the column heading above a number and the row label beside it at once. A screen-reader user is told only what the markup encodes — so without scope, landing on a cell gives you the value and nothing that makes it mean anything.

The shape of the fix turned out to be almost entirely mechanical, which is worth stating because it was not obvious in advance. An inventory of all 83 tables in source found that 81 of them put every header cell inside a <thead> — so every one is a column header, and nothing had to be judged. Exactly two tables needed a decision: print-design.html, whose four headers each begin a row and are explained by the cell beside them (scope="row"), and even-fallen-light-glows-zine.html, whose header row has no <thead> around it (scope="col").

Two empty corner cells were deliberately left bare. A header cell with no text names nothing, and giving it a scope would assert a relationship that does not exist.

Verified in the accessibility tree, not in the source. The source count is misleading on its own: 23 of those 83 tables live inside JavaScript template strings and are instantiated once per field-guide entry, so what a reader actually meets is 353 tables carrying 1,028 header cells. A probe reading Accessibility.getFullAXTree across all 60 table-bearing pages reports all 1,028 announcing as columnheader or rowheader rather than cell, and all 353 tables with a non-empty accessible name. No gate here can ask that question — they measure colour, tag structure, position, paper, sitemap, findability, dead classes and card order.

Site161 table names read “How a default reading misreads the The Biggest Mouth in the Sea”

Found while confirming that scope had reached the rendered DOM, by reading one field guide's accessible names rather than its markup. Fourteen guides label each entry's table from a template ending misreads the ${entry.name} — and most entry names begin with an article of their own. 161 of 208 entries produced a doubled article in the one string a screen reader uses to announce the table.

The article is gone from all fourteen templates. It reads “misreads The Biggest Mouth in the Sea” now, and “misreads Whale Shark” for an entry with no article — slightly bare, and never wrong. This was invisible to every check on the site and to anyone reading the source, because the defect exists only in the assembled string: the template is correct English and so is the entry name.

SiteFour tables that had no name at all, and a caption that must not contain units

Captions added to the four tables with neither a <caption> nor an aria-label: the three-woman credit ledger in The Conquering Gaze, the one-word-two-meanings table in The Elimination of Waste, the sheet specification in Designing for Paper, and the three-systems thermodynamics table in Rainbow Serpents. Each says what the table is rather than repeating the heading above it — the same overlap test the card taglines have to pass.

Three of the four pages had no caption CSS rule at all, so an added caption would have rendered as centred browser-default text in the middle of a house page. Each got a rule matching its own table's label style. The first attempt to check this was itself wrong: a grep for caption matched .diagram-caption on two of the pages and reported styling that was not there.

And one house constraint that decided the wording. Captions here are text-transform: uppercase, and uppercase destroys unit symbols — the reason a caption for the sheet specification says “four decisions in the sheet specification, and what each one buys” and names no measurement, even though every row header is one. A caption reading 190 × 259 MM would be a different claim from 190 × 259 mm.

2026 · September 8

The blood a horned lizard squirts at a coyote is made out of the ants it eats — and the viral claim we went looking to confirm is in none of the ten papers

Zine No. 103, the eighth Kin piece. Commissioned to check a claim, and the check came back negative — so the zine is the animal, and the claim gets graded on two of its fourteen spreads. Three sources are named on the page as unread rather than paraphrased, including the video itself. Corrected the same day: the zine said the schoolyard children had done something now illegal. They had not — they only looked.

New pieceThe Blood Was Made of Ants — Zine No. 103

Everybody knows Texas horned lizards squirt blood from their eyes. Almost nobody knows where the blood gets its power. Sherbrooke and Kimball fractionated the plasma, ran the fractions past coyotes and mice, isolated the active material at 800–1,600 molecular weight — and found it is dietary: “Plasma fractions from individuals of P. cornutum, a blood-squirting species, fed Pogonomyrmex had more aversive levels of the active compound(s) compared to those given a cricket diet.” Extracts from the ants placed the compound in the abdomen, where the venom is stored. The defence is not manufactured. It is eaten.

Which sits on top of everything else this animal borrows. The lethal dose of harvester ant venom runs 0.119 µg/g in a mouse, 28 in a spiny lizard and 162 in this one — and mice given two and a half lethal doses plus horned lizard plasma survived with no symptoms, while mice given snake or other-lizard plasma all died. The tongue lands on the ant’s mesosoma — the one segment with neither mandibles nor sting — in 76% of fifty filmed strikes, and “never touched the ants at their rostral or caudal end, even if it was the closest position to strike at”: given a nearer armed target and a further safe one, it reaches further, in sixty milliseconds. The venom never became safe. The lizard became specific.

Then fire ants land at Mobile in the 1930s, reach Texas in 1953, and turn out not to be a substitute at all — “Texas horned lizards do not actively eat fire ants” — so the whole apparatus stays perfect and points at nothing. That is a support withdrawn, not an animal too fragile to cope, and the difference decides what work you do. The evidence for the difference is in Oklahoma, on a reserve with no harvester ants at all, where the lizards ate the ant that made up 7% of what was available in 81% of scat samples, and the ant that made up 69% in 1%. Stripped of the specific thing, it did not learn to make do with the average. It chose again, narrowly.

Claim graded“Fire ants are vanishing across Texas — scientists finally found what’s hunting them”

What we were asked to check. A Popsci video essay claims Texas horned lizards are recovering in “protected limestone corridors” and reducing fire ant numbers through “grazing pressure” that keeps harvester ant colonies compact and defensible. Ten papers were gathered in the hope of finding support for it.

None of them contains it. The chain needs three links: lizards eat harvester ants (documented, half a century over); moderate predation makes a harvester colony better at resisting fire ants (no published evidence found); that lowers fire ant numbers across a region (no published evidence found — Texas Parks and Wildlife’s volunteer data suggested a negative relationship in some years, and the same report says “pooled data do not reveal a clear relationship”).

The causal arrow is reversed, and that is the part with a cost. The literature runs one way: suppress fire ants and small vertebrates recover. Lee Ann Johnson Linam’s conclusion is an ask — “recovery efforts will have to address their management in order to be successful.” Reverse it and a request for work becomes a reassurance that no work is needed.

And the geography is exactly backwards. The claim puts the recovery in limestone. The eastern Edwards Plateau — the limestone country — is precisely where that report records volunteers “confirm some pessimism.” The encouraging reports came from the Post Oak Savannah, the coastal barrier islands and the Dallas–Fort Worth Metroplex, and are described as “small and isolated.” Mason Mountain, where releases actually happen, is roughly two-thirds granite.

The true half of the headline is the bad half. Fire ants genuinely are being eliminated across parts of Texas — by the tawny crazy ant, Nylanderia fulva. One invasive replacing another, which is worse news, not better. The invented half is the comforting one.

Declared unreadThree sources named as gaps on the page, including the video

The 1992 paper, and the numbers we did not print. Middendorf & Sherbrooke’s canid-elicitation study in Copeia is paywalled and every route we tried refused us. A search-engine summary offered specific percentages for how often lizards squirt at a dog versus at a human imitating one. Those figures are deliberately absent from the spread, and the spread says why — a synthesised summary is not a source, least of all for a number. The qualitative finding is carried instead by Henry and colleagues, read in full: a defence “employed primarily against canids.”

The 1989 venom paper. The 0.119 and 162 µg/g values are quoted as they appear in the 2021 paper we did read. The 28 µg/g figure for the spiny lizard and the plasma-transfer detail come from secondary reporting, and are logged as an open item.

The video. YouTube returned the title and nothing else; a site republishing the script returned 403. So the zine grades the claim as it was described to us, and says so on the spread. The claim has meanwhile propagated into synthesised search answers phrased as though it were research, which is the part that should worry anybody.

Refused as evidenceA genus-level hit that would have read as a finding

A 2019 study of introduced populations in South Carolina reports Solenopsis at 1.20%, 8.53% and 1.50% of the diet by number across three sites. That could be written up as “actually, horned lizards do eat fire ants” — and it is not: the identification is to genus, and Solenopsis contains many native species. The spread says so rather than spending the number in either direction.

Two other things were left unasserted for the same reason. That fire ant baits kill native harvester ants is contested — pesticides are repeatedly implicated in the decline literature, and at least one field trial found broadcast baits did not reduce native ant populations. And no arithmetic was done on whether one lizard could dent a colony, because inventing that calculation would be the same error as the video, pointed the other way. Grading the chain is the honest move; a counter-calculation would not be.

A release figure was also corrected before shipping: a press summary gave “260 released, 205 from Fort Worth Zoo”, where Texas Parks & Wildlife Magazine gives 263 released in autumn 2021, 159 of them hatched at Fort Worth Zoo. A widely repeated “more than 3,000 juveniles since 2017” total was dropped rather than printed unverified.

CorrectionWe said looking at a horned lizard is illegal. It is not, and the source lists what is

What we got wrong. Spread ten read: “The species was listed as threatened in Texas on 18 July 1977 — within a few years of that schoolyard. Which means the thing those children did is now illegal.” It then quoted Henke & Fair, “Handling horned lizards is illegal even if your intentions are good.”

What is right. Those children did not handle it. They took turns looking into a tree hollow and left the animal where it was. The statute Henke & Fair are describing names three things — it is illegal to “pick up, touch, or possess” one — and looking is on none of that list. It was lawful then and it is lawful now. Ryan caught it, within the hour of shipping, from his own account of the afternoon.

Why the error mattered. The spread was building to a real point — that the law is a measure of how scarce the animal became, not a verdict on a child — and it reached for the sharpest available version and overshot into a claim the source does not support. The refusals two spreads later already said “looking is not extraction”, so the zine contradicted itself in its own closing argument and no gate could see it: this is a claim about a Texas statute, which is not a colour, a tag tree, a position, a class or a card order.

And the correct version is the better one. The law draws its line at the next step because that is where the harm was, and collection sits in the decline literature beside the roads and the poison. Those children were on the right side of that line — and looking leaves the animal where it is, which is precisely why a schoolyard memory can end up as evidence. Spread seven gained the sharper half: nobody touched it, so the animal was on the first rung of its own defence ladder. Henry and colleagues set the order out — cryptic coloration first, then “flatten itself against the substrate… run a short distance and then ‘freeze’”, with hissing, lunging, horn-jabbing and blood-squirting all further up. The stillness those children remember was not tameness. It was the defence, working.

Fixed before shippingA cover motif redrawn, and nine diagram grounds that would have printed as slabs of ink

The cover began as a top-down horned lizard, positioned so its fringe ran through the issue numeral and its label. Moving and scaling it cleared the numeral but left it reading as a spiky ball rather than an animal — the fault recorded here before as four of five whale attempts drawing a fish. It was replaced rather than iterated: an eye, and the drop leaving it made of ants, which is the argument and cannot be mistaken for a different animal. Clearances against the numeral block and the title’s ink were measured, not eyeballed.

And a print fault no gate on this site can see. The nine diagrams sit on a dark ground rectangle for screen. starstuff.css blanket-inverts SVG text and strokes for print but deliberately does not blanket-invert shape fills — so every one of those grounds would have printed as a slab of ink with #111111 labels on top of it. A page-level print rule now sets them to fill: none. The contrast gate reports 0 screen and 0 print failures either way, because its print pass composites against a bare sheet; confirming the fix needed a separate probe reading computed fills back under print emulation. Same lesson as the August stylesheet case: run the gate for regressions and something else for confirmation.

2026 · September 7

A leaf does not fade. It stays green, and green, and green — and then it turns in about a week

Zine No. 102, the ninth Young Readers piece. The frame this zine was proposed on did not survive its own sources, and the correction is now a spread of its own rather than a quiet substitution. A count on the collection page was corrected rather than incremented.

New pieceIt Stays Green, and Then It Goes — Zine No. 102

Read-aloud science for four to eight, in the collection’s two-layer form. Mattila and colleagues marked individual leaves on rowan, Norway maple, silver birch and bird cherry and measured the chlorophyll in each of them every morning and every evening for a whole autumn, with an instrument that reads a leaf without damaging it — so the same leaf could be measured hundreds of times. Verbatim: “the chlorophyll content of each individual leaf remained constant until a phase of rapid degradation commenced. The fast phase lasted only ~1 week and ended with abscission.” The slow fade everybody pictures is not what a leaf does. And the leaves are not synchronised — degradation “started at different times in different B. pendula leaves, and the leaves belonging to same branches did not behave similarly” — so a tree turning gradually over weeks is hundreds of fast changes, staggered, and the smooth curve is an artefact of averaging them together.

Then two colours that arrive by completely different routes. The yellow carotenoids are in the leaf all summer, doing photosynthetic work. The red anthocyanins are not there at all until the tree builds them during senescence. And before it lets go, the tree recovers “about 80% of the nitrogen and phosphorus”. The leaf on the ground is a leaf the tree has already emptied.

Corrected before shippingThe tidy sentence we proposed the zine on is tidier than the measurements

What we planned. The zine was proposed as The Yellow Was Already There — the standard account, in every popular explanation of autumn colour: the green goes and reveals the yellow that was hiding underneath.

What the one source that actually separated the yellow pigments found. Keskitalo and colleagues, following a single aspen through an autumn: “Lutein and beta-carotene were degraded in parallel with chlorophyll, whereas neoxanthin and the xanthophyll cycle pigments were retained longer.” The two main yellow carotenoids went down alongside the green, not after it. And the paper that states the standard version hedges it — Mattila et al. write, in their introduction rather than their results, that autumn colours are “partly caused by exposure of carotenoids due to faster degradation of chlorophyll.” The popular retelling drops the partly.

What the zine does instead. The uncontested half stays: the pigment really is in the summer leaf, and the spread that says so is the claim the piece is most confident of. The contested half gets its own spread, in the child’s own layer, ending “nobody has finished this one either.” A read-aloud could have printed the tidy sentence and nobody would have complained, which is exactly why it did not: for kids is the shelf where a verify-everything standard quietly lapses, and this was the sentence on the page most likely to have lapsed.

CorrectionA count we incremented instead of deriving, on our own collection page

Adding this piece, the Young Readers line about how many pieces hand the child something to do was bumped by arithmetic — from “six of the eight” to “six of the nine”, on the assumption that the new piece added none. Deriving the set from the read-aloud layers of all nine pieces gives seven, not six. The page now says seven, and the derivation agrees with the page’s own separately-worded sentence naming exactly the pieces that have nothing. An inherited count incremented is not a count derived — and no gate on this site can read a number written out in a sentence, which is why this file keeps saying so.

Two more figures on that page had gone stale in the same way and were re-derived: the list of what the pieces measure, which still stopped at “spadefoot toads, salamanders, seeds or bees” four pieces after it stopped being true, and the note on which pieces have no demonstration.

Fixed before shippingThe cover art ran under the issue number again

Third cover in a row where the motif had to be measured rather than placed. Here the binding constraint was horizontal — this motif is a wide shape and the numeral block’s ink starts at 864 px — so it had to be scaled down to 0.70 rather than merely moved. check-overlap.mjs passes it and is right to: art over text is the half of the No. 48 fault that gate was explicitly built not to cover, so the clearances are measured against each element’s ink box every time.

The print probe was clean on the first run for once, because this zine’s figures were written with the lesson from No. 100 and No. 101 already applied: every pigment bar is labelled in text as well as coloured, and the page carries its own print rules pushing the shapes to two distinguishable inks, so the figures still read on a black-and-white sheet where the green/gold distinction cannot survive.

2026 · September 7

A barn owl’s two ears are at different heights — and at least five separate lines of owl arrived at that, never the same way twice

Zine No. 101, the eighth Young Readers piece and the third with something to do. One source read at full text and three at abstract only — which the zine states on each spread rather than letting the citations imply more. A count that three papers give three different answers to is printed as disputed rather than resolved.

New pieceOne Ear Higher Than the Other — Zine No. 101

Read-aloud science for four to eight, in the collection’s two-layer form. Your two ears are level, so a sound directly above and a sound directly below reach both of them identically — there is nothing to compare, and up-and-down is the direction two level ears cannot do. A barn owl’s are not level. Knudsen and Konishi, verbatim: “The barn owl’s left ear opening and flap are located high in the left trough, whereas the right ear opening and flap are centered in the right trough.” So up and down produces a difference between its ears too — and that is the direction an owl needs most, for a geometric reason Norberg gives: prey direction “usually forms a shallow angle with the ground”, so the same angular error costs far more distance vertically than horizontally.

New pieceThe demonstration is the published experiment, and it needs nothing

Shut your eyes, have somebody clap, point — you are close. Cover one ear with a hand and do it again, and you point wide. That is the manipulation Knudsen and Konishi ran on the owl, quoted on the same spread: “Occluding the right ear caused the owl to orient below and to the left of the sound source; occluding the left ear caused it to orient above and to the right of the sound source.” Read it twice, because the owl’s version has an extra half — a child loses left and right; the owl loses left-and-right and up-and-down at once, which is the entire subject. No props, no kit, no season: the most reliable demonstration in this collection to actually do.

And the strongest spread is a dissociation rather than a wonder. With the facial ruff feathers moved aside, the owl “continued to localize sounds accurately in azimuth, but failed to localize sounds in elevation.” One ability destroyed, the other untouched — far better evidence than everything getting slightly worse together, which is what you would expect from a bird that was merely upset.

Fact-checkThree papers, three answers, and we printed all three

How many times ear asymmetry evolved independently among owls is given as at least five by Norberg’s own 1977 abstract, as at least four by a 2018 paper summarising that very same paper, and as up to seven by a 2019 one. The count depends on which owl family tree you use and on how different two asymmetries must be to count as separate inventions. The read-aloud uses the primary’s own figure and the grown-up box states the disagreement, because picking the tidiest number would have been the easiest possible place for this collection’s standard to lapse. The independence is not what is in dispute — the counting is, and the reason nobody doubts the independence is the fact the child gets: the anatomy is different every time, soft tissue over a symmetrical skull in one owl and skull bone in another.

An open question from the proposal, now closed. Which of the barn owl’s ears sits higher was reported inconsistently across the sources we had at proposal stage. Two independent primaries settle it and agree: Knudsen and Konishi on Tyto alba, and Krings, Rosskamp and Wagner on Tyto furcata pratincola — “the left ear opening in the skin is located higher than its counterpart on the right.” The zine’s figure is labelled from the owl’s point of view and says so on its face, because an owl facing you has its left on your right, and an unlabelled drawing tells half its readers the mirror image.

Fixed before shippingA motif position carried from a sibling was measured against a different title

The cover art collided with all three cover elements at once — the issue number by 5 px, the masthead line by 10 px, and the title by 57 px vertically. The cause is worth keeping: this title wraps to two lines where No. 100’s took one, so its ink box is 112 px tall instead of 62 and starts 42 px higher up the cover. A position inherited from a sibling is a position measured against a different title. Rescaled to 0.85 and repositioned by measuring the painted group against each element’s ink box. check-overlap.mjs passes all of it and is right to — that gate compares text to text, and art over text is the half of the No. 48 fault it was explicitly built not to cover.

And the print probe earned its keep a second time. Two arrowheads were drawn as filled triangles in a light rgba(), which is matched by neither the shared print sheet’s list of light fill literals nor this page’s own print rule — so they would have printed near-white and vanished beside a bracket printing at #444444. Converted to strokes, which the shared sheet handles for free. Re-probed clean: every shape #333333, all seventeen labels #111111.

2026 · September 7

A dandelion seed flies on the parts that are not there — and the demonstration we planned would have taught a child the opposite

Zine No. 100, the seventh Young Readers piece and the second with something to do. The source was read at full text. Reading it killed the demonstration the zine was proposed with, and the replacement is on the page along with an account of why.

New pieceAlmost All of It Is Holes — Zine No. 100

Read-aloud science for four to eight, in the collection’s two-layer form. A dandelion seed is not a parachute, and the difference is the whole piece: a parachute is a sheet, and this is about a hundred separate hairs with nothing in between them. Cummins, Seale, Macente, Certini, Mastropaolo, Viola and Nakayama counted them by X-ray micro-tomography — 100 [95, 106] filaments, each 7.41 millimetres long and 16.3 micrometres thick — and measured the plume’s porosity, “the ratio of the empty projected area to the plan area of the enclosing disk”, at 0.916. About ninety-two parts in every hundred of a dandelion’s flight is air. And the emptiness is the mechanism rather than a saving: because the plume is gaps, the air does not escape round the edges but passes straight through, and that leaves “an extraordinary type of vortex” — “a ring of recirculating fluid, which is detached owing to the flow passing through the pappus” — hanging in the air above the seed, never touching it, all the way down.

Corrected before shippingThe demonstration we proposed was false, and a child would have found out first

What we planned. Cut a paper circle the width of the seed head, drop both, and watch the solid one fall faster. It is the obvious version, it sounds right, and it is wrong.

What the paper says. Their own arithmetic runs against the intuition: for a solid disc to supply the same drag as the pappus at the same falling speed, its diameter “is given by D = 8.6 mm, which is 38% smaller than” the real 13.8 mm plume. Per unit of width, a solid disc is the better brake. A same-size paper circle has more drag — and, being some twenty times heavier, lands first anyway. A child following that instruction would have got the opposite of what the page promised, which is the exact failure the collection names on its own face: an imperative a child follows and gets nothing from teaches them that the book was wrong.

What the demonstration is now. The observable, correct difference is steadiness, not speed. A paper circle flutters, tips and slides all the way down; a dandelion seed comes straight down upright. That is the finding: the paper measured the critical Reynolds number at which the ring breaks up into vortex shedding at 149 for an impervious disc against 429 for real seeds, with a porous disc built to the dandelion’s own porosity giving 457 — and “all of the dandelion samples tested flew at a Re below Re_c.” Spread ten states the correction to the reader rather than quietly benefiting from it, and the figure was redrawn to show orientation, which is what a child actually watches. No gate could have caught any of this. A demonstration that quietly proves something other than what it claims is worse than no demonstration, and the only thing that catches it is reading the primary source.

Fixed before shippingFigure two would have printed backwards

The zine’s second figure is a hundred dots — eight filled for the hair, ninety-two hollow for the air. The shared print stylesheet turns every stroked SVG shape #444444 on paper and inverts a fixed list of light fill literals; this page’s one-off accent is not on that list and could not be. So on paper the ninety-two hollow dots would have come out dark and the eight filled ones pale: the emphasis inverted, and the picture saying the opposite of its own caption. check-contrast.mjs cannot see it — it measures text against its background, and a shape fill carries no text. Found with a separate print-emulation probe reading computed fill back off the elements, and fixed with a small page-level print rule whose selectors name circle, ellipse and rect explicitly so they cannot reach a label. Re-probed after: shapes #333333, every label #111111.

Fixed before shippingThe cover art was sitting on the title

The cover motif’s descending flow arrows crossed the last word of .cover-title — art over text, measured at 1280 px as arrows at x 742–806 against a title ink box running to x 843. check-overlap.mjs passes it and is right to: that gate compares text to text, and text over artwork is the half of the No. 48 fault it was explicitly built not to cover. Caught by looking, measured with a Range rather than by eye, and the motif moved up 56 units to leave 14 px of clearance.

Fact-checkThe volume number that circulates is wrong

The paper is Nature 562(7727), 414–418 (2018) — not 559, which appears in secondary accounts and which we would have carried had we not checked it against Crossref and Europe PMC before building on it. Publisher access is blocked, so the text was read from the peer-reviewed accepted author manuscript in the University of Strathclyde’s repository; the zine says so in its colophon, and says that it is the accepted version rather than the version of record.

2026 · September 7

A dog breathes out through the sides of its nose, so the smell stays put

Zine No. 99, the sixth Young Readers piece and the first with something to do. Both sources open access and read at full text. A third paper arrived while we were building and was read and then declined — and reading it corrected a number that circulates widely.

New pieceThe Dog Breathes Out Sideways — Zine No. 99

Read-aloud science for four to eight, in the collection’s two-layer form. Every explanation of a dog’s nose starts with how many smell-receptors it has; this one starts with where the air goes. Craven, Paterson and Settles measured seven dogs sniffing in masks — from a 6.8-kilogram Pomeranian to a 52.9-kilogram Labrador — and every one sniffed between four and seven times a second. On the way out, the air does not go forward: “a ventral-laterally directed air jet is ejected from the nose”, two sideways puffs that stir the scent up instead of scattering it. Inside, a shelf of bone splits the flow, and only about 12–13 per cent of a sniff turns off into the smelling room at the back. And the paper’s comparison with us runs the way nobody expects — human sniffing gives “dramatically different” patterns in the left and right cavities of one nose, which the authors call “undesirable for consistent odorant deposition.” Your nose is not a broken dog nose. It was never trying to be one.

New pieceThe first read-aloud with a demonstration you do together

Spreads four and five are one demonstration split in half, and they are the reason the zine works. Put a feather on the table and blow at it: it goes. Put it back and blow past it: it wobbles, spins and stays. A child who has watched that has felt the problem and the solution in their own breath before either is explained. None of the other five Young Readers pieces gives the adult something to do with the child, and this one is built around it.

Fact-checkA paper we were handed, read, and then did not use — and a number it corrects

While this was being built, Ryan supplied the source we had flagged as untraced for a different, rejected proposal about dog body-size variation. Reading it settled the matter in an unexpected direction. Shearin and Ostrander (PLOS Biology 8(3), e1000310) is an Essay rather than a research report; its headline claim is hedged in its own text — “arguably the most morphologically variable land mammal” — and it does not contain the hundred-fold Chihuahua-to-mastiff range that circulates widely and gets attributed to the literature. What it actually states, in a figure caption, is that the difference between a Cane Corso and a Yorkshire terrier is over 30-fold. Nothing in No. 99 rests on any of it, and the discrepancy is recorded on the zine’s own colophon. A source you are handed can be a lead that dead-ends, and saying so is the finding.

Fact-checkThe two numbers a caregiver will repeat both carry their caveats on the page

Read-aloud is exactly the shelf where a verify-everything standard quietly lapses, so the two figures most likely to be quoted back are hedged where the adult will see them. The four-to-seven-sniffs band is real, but the paper also reports sniff frequency scaling with body mass — so “the big dog and the little dog did it at the same speed” is true at the resolution a five-year-old is being offered, and the grown-up box says exactly that. The 12–13 per cent split is one modelled case of a “relaxed, undilated nostril”, and the authors hedge it upward themselves. A whole spread is given to a distinction between two verbs: that each nostril samples a separate patch of air is a measurement; that the dog uses this to work out direction is the authors’ proposal, written “may be used”. The child is told the difference.

SiteA convention nobody had noticed was already there

No. 99 was going to be written up as the first Young Readers piece with something for the child to do. Checking the other five before saying so found that four of the six already had one, in three different kinds — a prop (No. 94: “Hold up something red”, which makes an absence concrete), a thought experiment (No. 96: what colour would you make a grey photograph of grass? — the child performs the finding on themselves), and now a demonstration (No. 99’s feather). That is a form observed in finished work, which is this site’s bar for naming a convention, so it is written into the collection page rather than left as a habit. The rules that came out of it: it lives in the read-aloud layer and never the grown-up box; it uses what a household already has; it gets two spreads when it has a before and an after; and it has to be the mechanism rather than decorate it. Two honest limits are recorded with it. No. 95’s “Push on the bone — the bone answers” is an image, not an instruction — the same zine says the current is “not enough to feel” — and the line between the two matters, because an imperative a child follows and gets nothing from teaches them the book was wrong. And it is not a quota: No. 91 and No. 93 have none and are not worse for it, because you cannot do a seed’s decade of waiting on a table.

SiteThree dogs with real names, and a cover that is not a dog

The closing spread is a frontier result presented as unfinished: three dogs called Kevin, Delfi and Charlie picked a warm patch from a cool one across a room using a nose-tip too cold to be a heater. Their names and their individual scores are real, from the paper’s own table — a named animal is a real animal — and the child is told, in the scientists’ own words, that the limits of it “remain to be elucidated.” The cover deliberately does not show a dog. No. 97 spent four drafts trying to draw one and produced an insect face, a skull and an alien with shoulders, and all eight gates passed every one. The motif here is the mechanism instead: two breaths, one scattering the specks and one leaving them.

2026 · September 7

The first animal we ever domesticated, and nobody can say where it came from

Zine No. 98, the sixteenth chain in How We Got Here. Six documented joints, five contested, two leaps — the lowest documented share of any chain we have made, because the question is genuinely open and the most recent paper in the field says so on its own face. Three corrections came out of building it, one of them to another page.

New pieceNobody Knows Where the Dog Came From — Zine No. 98

Thirteen links from 1868 to March 2026, on two rails — bone against genome — because the dog-origins dispute is not one field disagreeing with itself but two methods returning different answers about the same animal. Darwin concluded multiple origins; mitochondrial DNA established wolves; then two camps formed and stopped speaking, one reading 1,543 living dogs and finding the origin south of the Yangtze, the other reading 18 prehistoric genomes and finding it in Europe. A 31,680-year-old skull from Goyet Cave was called a dog and then, six years later, re-measured in 3D and called a wolf. In 2013 two outsiders raised three million dollars and got the warring camps into one room. The chain ends on the most recent paper in the field saying, in its own words, “our results cannot resolve where in the world, and how many times, dogs were domesticated.” That is not a failure. That is what the work looks like when nobody is smoothing it.

Fact-checkThe chain’s most important link was not in the source material

Ryan handed over six items on dogs. The chain’s ending came from none of them: Genomic history of early dogs in Europe (Nature 651, 25 March 2026) turned up while we were chasing a radiocarbon date for the Goyet skull. It reads the oldest dog genome yet recovered — 14,200 years old, from Kesslerloch in Switzerland — and rules out one long-standing hypothesis before declining to settle the rest. Without it the chain would have stopped at 2020 and been six years stale on its central question. A chain is only as current as its last search, and the source drop is a starting point rather than a boundary.

Fact-checkTwo numbers that travelled, and an edition that had to be checked

Darwin is quoted at the 1868 first edition, not the one everybody transcribes. The public-domain text of The Variation of Animals and Plants under Domestication that circulates online is the 1875 second edition, and the zine dates its quotation 1868 — so the sentence was checked against the first edition as well. It appears in both. A sentence quoted at the wrong date is a sentence nobody checked. And the retelling of Darwin is wrong in a way worth printing: the secondary accounts have him wondering whether dogs came from one species or a wolf-jackal cross. He considered it and then concluded the opposite of a wondering — “the balance of evidence is strongly in favour of the multiple origin of our dogs.” Separately: the 1997 paper that founded modern dog genetics is universally reported as dating dogs to 135,000 years ago. Its own abstract says “more than 100,000 years before the present.” The zine prints the abstract’s figure and names the other as the number that entered circulation.

Fact-checkA count on the collection page that this zine made false

How We Got Here said that No. 52 “carries the most contested joints of any chain here.” It did, with four. No. 98 has five, so the sentence was corrected in the same pass rather than left to rot, and the collection tally was re-derived from the pages rather than incremented — fifteen chains and 135–33–14 becomes sixteen and 141–38–16. A new piece can falsify a sentence on a page it never touches, and nothing in the eight gates can read a count written out in prose.

SiteA prev link that had been pointing correctly under the wrong name

Wiring No. 98 into the reading chain turned up a stale label: Star Gazing’s prev link pointed at No. 88 but was still captioned The Lizard That Was Never There — the href had been updated when No. 88 shipped and the visible label had not, so the arrow went one place and the words said another. Fixed. A repo-wide sweep of every prev/next label against its target’s title found 24 mismatches and 23 of them are deliberate abbreviations (Mycelium & Rhizome for A Mycelium and a Rhizome, and so on). This was the only one naming a different piece.

2026 · September 7

Four dogs told thirty-six strangers apart by smell, and it explains the quiet room

Zine No. 97. Many of us leave the gathering and go sit with the dogs. The usual explanation is that dogs are more empathetic than people; the evidence will not carry that, and what it will carry is better. We also removed a whole planned spread because the paper behind it disagrees with its own title.

New pieceThe Channel You Cannot Mask — Zine No. 97

Built from an account of Ryan’s: that like many Autistic people he always got on better with dogs than humans, and at a gathering would go and sit with the dogs somewhere quiet. The account is on spread two, marked as an account and not as data — the device No. 92 established for the same reason. Then the settled fact. Wilson, Campbell, Petzel and Reeve (PLOS ONE 17(9):e0274143, 2022) ran a double-blind, three-alternative forced-choice trial: four dogs, breath and sweat from thirty-six people taken before and after three minutes of counting backwards aloud from 9000 in seventeens. The dogs picked the stress sample in 675 of 720 trials, and 34 of 36 on first exposure to a stranger. The authors’ own conclusion is chemistry rather than sympathy: acute stress changes the volatile organic compounds coming off a body. So the dog is not on the channel a room grades. Face, gaze, prosody and turn-taking latency are authored output, and that band is what masking works on; metabolic exhaust is not authored by anybody. The signal everybody agreed was missing turns out to be present and reliable as soon as somebody stops looking in the band we spend our lives performing.

Fact-checkThe most famous study in this area is on none of the spreads

Nagasawa et al.’s oxytocin gaze loop (Science 348, 2015) is the obvious thing to build a zine like this on, and we did not. Published commentaries flag confounds between its dog and wolf conditions and note the effect was not uniform across the dogs. Contested is not refuted — and it is also not a floor. Albuquerque et al. (Biology Letters 12, 2016) went the same way for a different reason: we could find it neither replicated nor overturned, which is an absence of evidence about the evidence. Both are named in the colophon rather than quietly omitted, because a reader is entitled to know which famous thing is missing and why.

Fact-checkA spread deleted because a paper’s title disagrees with its own body

The outline carried a sweep about what dogs have done for us across millennia. The survey behind it — Fallahi, Masoudi, Maghsoudi and Vaez Torshizi, Veterinary Medicine and Science 10, e70012 — is titled “A 40,000 years history” while its own text gives the range as “between 10,000 and 40,000 years ago”, a factor of four, cites secondary sources for it, and carries the typo “∼40,0000–10,000 BP.” The confidently-assigned archaeological floor is far more recent: about 15,000 years in Europe and over 12,500 in Far East Asia, read at Frantz et al. (Science 352, 2016). The sweep is gone rather than restated at a number we could not stand behind, and the deletion is printed in the zine’s own colophon.

Fact-checkOur own library had erased an author, and we nearly inherited it

The zine closes on Carol Millman — an Autistic professional dog trainer — who answered “is ABA dog training for children?” by pointing out that the comparison is unfair to the dog trainers: meet the animal’s fundamental needs before any conditioning, relieve the fear rather than train away its display, and know that a dog taught not to growl is a time bomb dog, because you removed the warning and not the fear. We found her piece through a saved highlight file in our own library, which credited it to “neuroclastic.com” rather than to her. Both quotations were verified at the article instead, where her name and credentials are. An aggregator can erase an author as easily as it can alter a quotation — and this one is in a store we built ourselves.

New pieceThe counter-evidence is on a spread, not in a footnote

Two years after the Belfast result, Parr-Cortes, Müller, Talas, Mendl, Guest and Rooney (Scientific Reports 14, 2024) exposed eighteen dogs to an unfamiliar person’s stress odour and found them significantly less likely to approach an ambiguous food location — which the authors read as possible risk-reduction behaviour. A zine arguing that dogs read our stress owes the reader the finding that what a dog may do with it is get careful rather than comforting. It has spread nine and a figure of its own. The zine also prints its floor: four dogs, and the authors’ own words are proof of principle.

2026 · September 7

Every collection page now says what it is before it says how it works

Sixteen collection pages rebuilt to the shape Young Readers arrived with: a short plain-language summary, then the cards, then the methodology behind a labelled band. Two unbalanced page shells turned up while we were in there, one of them visible on the live site.

UpdatedThe argument was arriving before the thing it was about

Ryan’s call, and the model was the newest collection page rather than a principle: Young Readers opens by telling a reader in plain words what is on the shelf, lists the pieces, and only then explains how the collection is built. Every other collection page did it the other way round — a reader arriving at Triggers met about 8,900 characters of convention, epistemics and self-criticism before the first card, and at Field Guides about 9,000 — measured as visible text, tags stripped. That material is the best writing on those pages and none of it has been cut; it was in the wrong place. All sixteen now run summary → cards → how this collection works.

UpdatedThe summaries are new writing, and they were written not to repeat what they sit above

Each page gained two or three short paragraphs in plain language, and the first drafts were thrown away: they had turned into the methodology’s own opening paragraph in shorter words — Kin’s summary reproduced its animal list and its not a metaphor line almost sentence for sentence. That is the tagline-and-moment collision this site has already had once, on cards, and the fix is the same one: a face and a body have to say different things. Nothing below the cards was rewritten. Every existing section kept its heading and its id, so a link into a collection page’s argument still lands where it did.

UpdatedFive pages had nothing short to say before their cards, and one had a count paragraph in the way

Easter Eggs, Field Guides, Foundations, Notes & Rationale and Start Here ran an essay straight into the grid with no heading introducing it, so each got one line and a new heading — The eggs, The guides, The pieces, The pages, The doors. And Sound’s paragraph on why 268 cards is not 268 songs moved below the cards under its own heading: it is a good paragraph and it is arithmetic, not an introduction. The search index gained seven records and lost none, all of them on the six pages that gained a heading; every summary is findable.

SiteNotes & Rationale had been printing its own footer full-bleed since 4 September

Found by counting <div> against </div> across every page, which nothing here had done. Notes & Rationale carried one closing tag too many, left behind on 4 September when Glimmer Wire’s card was removed to make it its own collection. The browser does not error on that; it closes .doc-shell early. Measured at 1280px on the version that was live: the hero sat in its 812px column and the closing section and the colophon ran the full 1280. Two pages had the opposite fault — a shell never closed at all, on Young Readers and No. 88. Those two rendered correctly, because the parser closes the div at </main>, and both are fixed anyway. None of the eight gates can see any of this: check-markup.mjs ignores unbalanced tags on purpose, and the other seven measure a repaired DOM or a rendered page that looks fine.

2026 · September 7

Zine No. 96 — an animal that matches a colour it cannot see, and nobody knows how

The fifth read-aloud, for four to eight and whoever is reading to them. Two measurements that disagree about what should be possible, four explanations that have all failed so far, and a 2026 review with a better idea.

NewThe Cuttlefish That Can’t See Colour

No. 96 joins Young Readers, which goes from four members to five. A cuttlefish matches whatever it sits on — pattern and colour — and its eye holds a single class of light-catcher, where yours holds three. Both halves of that were measured, and they should not both be true. Mäthger and colleagues built checkerboards whose squares differed only in wavelength, matched for brightness against the animal’s own single pigment, so the board would look plain to a cuttlefish; one that could see colour would break into its bold disruptive pattern, and these stayed plain. Their conclusion: “cuttlefish must be color blind.” Chiao and colleagues then imaged live camouflaged animals with a camera that records every wavelength and modelled how they would look to the fish that hunt them — a good colour match, in the eyes of the predator. Thirteen spreads, six figures, five refusals.

NewFour explanations, none of them over the line — and then a better question

Sam Reiter’s review (Current Opinion in Neurobiology, online 28 April 2026, four months old) works through every proposed rescue — skin that happens to be the right colours, the chromatic-aberration idea built on the cuttlefish’s W-shaped pupil, polarized light, light-sensing skin — and finds each “insufficient or weakly supported,” noting that the pupil idea has had no physiological tests at all. Then he suggests something stranger and better: maybe there is no colour perception here, and the animal predicts colour from light and dark, the way an image-colourisation network guesses a greyscale photo’s colours from statistical regularities in the world. The child’s half of that spread carries the idea without the vocabulary: if I showed you a grey photograph of grass, what colour would you make it? The machine-learning parallel stays in the grown-up layer, and the grass example is ours, labelled as a way in rather than as evidence.

Fact-checkThe imperfection inside our own best source got its own spread

The paper we cite for the match is good also reports where it fails: “most reflectance spectra of cuttlefish had a peak around 800 nm in the infrared range, whereas natural substrates tested did not have this spectral characteristic.” In infrared the animal does not match at all. That is a whole spread rather than a footnote, because printing only the flattering half of a paper is the tidier version of it. And the grown-up box says exactly what we did not establish: vertebrate visual pigments are not known to reach 800 nm, but we found no study asking whether any cuttlefish predator can detect it, so “it does not matter” is an inference from an absent sense rather than a tested result. Two other caveats sit on the page: the 492 nm pigment measurement traces to a single study from 1958 that nobody has redone with modern methods, and “cephalopods are colour-blind” is false as stated — the firefly squid carries three photopigments.

UpdatedTwo experiments the zine let a reader fuse

Ryan, reading the draft: “I’m confused between spreads 5 and 6. Humans can see the cuttlefish against the special checkerboard but fish cannot?” No fish was involved in the checkerboard experiment at all, and the confusion was the writing’s fault. Spread five is an artificial board in a tank, and the only vision it probes is the cuttlefish’s. Spread six is natural sea floor, and the vision being modelled is the predator’s. One asks what the animal can see; the other asks whether what it does works on the thing it is hiding from. But spread six opened “maybe the cuttlefish only looks like a good match to us”, which invites carrying the board forward into a scene it has no part in. Rewritten to change scene explicitly — now put the checkerboard away; that was a test, in a tank — and the grown-up box now names the conflation and says why it is easy to make. A reader landing on a question neither paper poses is a defect in the zine, not in the reader.

SiteThe first drawing was a fish with whiskers

Recorded because it is the third time this failure mode has been caught by eye on this site and no gate can see it. The first cover cuttlefish had a five-to-one mantle and fanned arm strokes; it read as a thin fish, or a cat’s face on a torpedo. A real cuttlefish is about two-to-one, so it was redrawn broad, with a scalloped fin frill and the arms as one blunt crown rather than radiating lines, and the corrected shape was pushed into two figures as well. Then the placement turned out to collide with the title’s first line — the clearance note in the template described the cover it came from, not this one. Re-measured properly, with a Range over each text node, which is the only honest form of that check: check-overlap.mjs compares text against text and is explicitly blind to text crossing artwork.

2026 · September 7

The eighteenth receipt — and a correction to a correction notice on this page

This week’s shear error is now in the receipts table where it belongs. Going to fetch it turned up an entry on this page that had claimed a count moved when it had not.

CorrectedOur own correction log was missing our biggest recent correction

Too Good to Check is the page that lists what we got wrong, and for two days it did not list the compression-versus-shear error — the one we swept across seven pages. It is now the eighteenth row: “Press a bone and it makes a voltage — negative where compressed, positive where stretched. Ours, on seven pages, for seven weeks.” It is filed under Mode 03, the story told backwards, which is exactly its shape: the facts survived the retelling and the mechanism did not. It also carries the detail that makes it worth printing — a 2021 review in Bioelectricity states the mechanism correctly on one page and repeats the compression gloss four pages earlier, which is how a wrong sentence stays alive in a literature that also holds the right one.

CorrectedAn entry on this page said a count went up. It hadn’t.

The changelog entry for the Tsing matsutake case ends: “That page’s worked-correction count goes from seventeen to eighteen.” It did not. That case was written into the page’s prose, as a worked example under Mode 03 — the cleanest instance we have of a hedge dying in quotation with the author at no fault — and not into the receipts table. So the table stayed at seventeen rows, its caption kept saying Seventeen receipts, and the four other places that cite “seventeen worked corrections” were right all along. The entry asserted the consequence of an edit rather than the edit, which is the same species of error as everything else on that page. Today’s addition is what actually takes it to eighteen, and the caption and all six downstream references now say so.

SiteAnd a miscount in yesterday’s entry, from not reading the hits

The entry above this one said the count was asserted in four other places and that the page “states no count of its own.” Both were wrong, and wrong the same way: the number came from grep -c without reading what matched. The page does state its count, in the table’s caption, capitalised — which a lower-case search missed. And two of the four hits on the front page were “the seventeenth century” and “cicadas spend seventeen years underground.” The real figure was six references plus the caption. Our own working notes carry a standing rule for exactly this — a derivation that returns a number nobody reads back is not a derivation — and it was broken while writing an entry about counts going stale.

2026 · September 7

We read all ten printable sheets for the same fault. Two had it; one of those had it worst of all.

There is no grep for derives an ought from an is, so every sheet was read. Eight were already clean and two were exemplary. One fix we wanted does not fit on the paper, and is recorded here rather than forced.

CorrectedThe door sheet argued it as a syllogism, and its colophon claimed the argument as ours

Owed, Not Earned is the sheet we print for a door, and section vi read: “if you have flesh and blood, we accept you. If you are made of stars — and you are — you are already one of us. That is membership derived from what you are made of, laid out as a formal step. The colophon then named the step as the piece’s own contribution: “that belonging is constitutive because we are made of the same star stuff — is ours.” The sheet never needed it. Its actual warrant is Timothy R. Clark’s — “not earned but owed … a nonnegotiable right” — plus Douglass, and both are moral arguments that stand without any physics at all. Section vi now reads “You are made of stars, and the welcome goes all the way down to them,” and the colophon says the belonging rests on Clark and Douglass, “not on the physics: it would be owed in a universe made of one element.” Section v was deliberately left as it stands“Kinship is not a courtesy we extend to you. It is the material you are made of” is a true claim about what kinship is, since kinship means shared origin and we do share it. The fallacy was only ever in the step from kinship to membership.

UpdatedA sheet built entirely on a physics analogy, which never said so

The Same Water runs from ice to human capacity across two sides, and its refusals list had three items, none of them a rhyme, not a proof — while two sibling sheets carry exactly that refusal. Added, with its counterfactual: “Not a proof. A rhyme — capacity would still be a state in a universe where nothing froze.” Three longer drafts were cut for paper rather than for style: check-sheets.mjs reported Side B spilling onto a third US Letter side until the line got short enough.

SiteEight sheets needed nothing, and two of them are the model

The Star Stuff You’re Made Of and “Better Get Used To It” already carry the refusal with its counterfactual, and the first is the one to copy: “The atoms do not owe us a conclusion about belonging; it would deserve defending in a universe made of one element” — and, on its face, “None of it was made for you.” Six Ways a Fact Goes Wrong is a method sheet with no belonging claim to ground. Shared Air argues that shared air makes a private accommodation ineffective, which is a claim about what works rather than an ought from an is. Not a Line uses the spectrum for etymology — the word meant fingerprint, we heard ladder — and rests its case against ranking on harm, which is independent of the optics. My Galaxy is a blank worksheet. And the negations on several of these are their subject matter, not caution dressed as content: what not to say is the whole point of a field card. The rule from this morning bans hedges and disclaimers in poster type. It was never a ban on contrast.

OpenOne correction we could not fit, and the count that is about to go wrong

This week’s shear correction belongs in Six Ways’ list of the ones we got wrong — it is precisely that sheet’s Mode 03, the paper’s own hedge is missing. It does not fit. One more entry costs about 48px and Side B has less slack than that; a full entry overflowed by 64px and a two-line one by 48. We did not cut an existing correction to make room — trading one published error for another is not a fix. Its real home is Too Good to Check, which the sheet already points at for the full list and which is also missing it. That page holds seventeen worked corrections and states no count of its own; “seventeen” is asserted in four other places instead. So the eighteenth correction is owed, and so are eight count updates across four files. Logged here first, because the gap is the finding.

2026 · September 7

Our broadside of refusals broke its own most-repeated refusal, on the back of the same sheet

And the first attempt at fixing it was rejected for hedging the poetry out of poster type. Both are worth reading; the second is the more useful mistake.

CorrectedSide A refuses the move. Side B made it.

What We Refuse ranks our refusals by how often they recur, and the one at the top — on nine pieces — is a rhyme, not a proof: “That a pattern recurs in nature is not why difference deserves welcome. It would deserve welcome in a universe that made exactly one shape.” Side B then read: “Difference is variation, not deficit. The universe doesn’t pathologize its own variation. Neither do we.” That is the derivation, printed on the reverse of the sheet that counts it nine times — and Side B’s own commentary says why it matters: take that refusal out of the natural-history pieces “and what’s left is an argument that biology licenses a politics.” The panel now reads “True even in a universe that made exactly one shape. We are the ones saying it, and we are saying it all the way down.” The sheet also now says so on its own face, in the section it already keeps for this — And: we notice we are doing it too, whose whole point is “not a claim to have escaped the trap, but a note, in the piece itself, saying where we are still standing in it.”

UpdatedA disclaimer is not a fix, and we put one in 20-point type

The first pass at the L★S Broadside gave it “It answers to being twisted, not merely pressed — measured in 1957, far too quietly to feel” and “The physics does not prove it. It is a promise we are making.” Ryan’s verdict: “so hedged they have no power or poetry.” He is right, and the diagnosis is exact — a broadside is read at three metres off a wall, and we had printed the footnote instead of the claim. The hedge belongs in the sources block, the zine, and the ledger. The repair was to make the claims stronger, not weaker. The bone panel is now “Your skeleton is piezoelectric. It hums a little song, quietly but measurably” — Ryan’s, after two rejected attempts of ours and one of his. His first, “it answers to impact, was declined: impact names the one load the 1957 paper says reads back as nothing, and it is the wording the compression gloss travels in. The final version states no mechanism at all, which is the honest move — silence is not error, where a wrong mechanism was; shear stays in the sources block. And hums a little is the phrase No. 95 already defends as correctly sized, with quietly but measurably holding the magnitude, where the boil is the control that proved the effect is not biological at all. It hedges nothing because it overclaims nothing: it never says that voltage runs a body. The paradigm panel took two more passes. A version built on A Promise, Not a Finding’s best line — “not a discovery we are reporting, a distance we are willing to travel” — was rejected too, on a rule worth keeping: no negations on a broadside. A poster that tells you what it is not has spent its space arguing with an absent opponent. It now reads “Difference is variation, not deficit. The universe runs on variation. We call it beautiful, and we mean it all the way down to our star stuff.” Ryan wrote the first two sentences and a third — “It is the beauty and the strength of star stuff” — which put the value in the material, and that is the move a rhyme, not a proof names on nine pieces. (It also over-reaches on the physics: strength through diversity is a claim about populations, and stars gain nothing from isotopic variety.) The fix was to give the value a subject, not a hedge. We call it beautiful is as warm as the original and cannot be read as a derivation, because the one doing the calling is us — and all the way down to our star stuff is the tagline’s own grammar, in which the star stuff is the reach of the claim and never its warrant — with our against the your printed above it, so the sheet closes the distance it has just measured. Not deficit stayed: it is the one negation on the sheet carrying meaning rather than caution. The Manifesto got the same treatment, having been hedged just as limply the day before.

SiteThe phrase stays. It was never the phrase.

The universe doesn’t pathologize its own variation is on roughly forty pages and is staying on all of them. It is this project’s founding image, and the site already says as much in several places: Bone Song’s refusals now state that an image is all it is, the Manifesto’s Held honestly panel says the science does not make our ethics true, and this week’s Glimmer Wire puts it plainly — down to is not because of. What was wrong was a phrase carrying a warrant in the two places built to refuse warrants: the third panel of a broadside, and the reverse of the sheet that collects the refusals. Fixed there. Left alone everywhere it is doing the job an image does.

2026 · September 7

We fixed the shear error on one page yesterday. It was on seven.

Correcting the instance you noticed is not correcting the fault — a lesson this site has written down twice and has now failed twice. Every page carrying the compression framing has been swept, the L★S Broadside has the revised poem, and four cross-references that our own edit had quietly falsified are repointed.

CorrectedThe Manifesto argued against itself on one page

The Manifesto said bone generates charge “under mechanical stress — compression, tension, bending” in one paragraph, and correctly described collagen fibres slipping past one another under shear two paragraphs later. Both were already on the page, and nobody had noticed they disagree. It also stated the contested part as settled — “It is how bone knows to grow, where to strengthen, how to heal. The skeleton is a living signal processor” — and carried “Every step you take, every breath, every impact — your bones are generating voltage,” which is verbatim the sentence Bone Song’s refusals name. All three fixed. The same framing was also in the read-aloud’s grown-up box, its colophon, its structured metadata, its card on two pages, and the broadside’s card on the Print collection. Seven pages, one grep.

UpdatedThe broadside carries the revised poem, and a new third pillar

Side B of the L★S Broadside is the full Bone Song poem, so it inherited every fault the poem had: Dr. Yasuda alone rather than Fukada and Yasuda, press on them and they spark rather than they answer — too quietly to feel, and move through the world and they sing voltage, which is the unhedged claim again in nicer clothes. Replaced with the revised text. On Side A, the first pillar said “press on it and it generates voltage”; it now says the skeleton answers to being twisted rather than merely pressed. And the third pillar, at Ryan’s request, no longer reads “The universe doesn’t pathologize its own variation. Neither do we.” It reads: Difference is variation, not deficit. The physics does not prove it. It is a promise we are making, and it reaches all the way down. That is A Promise, Not a Finding’s position rather than a second slogan in the first one’s place. Verified as one sheet, two sides, on A4 and US Letter.

CorrectedOur own edit made four other sentences untrue, and no check could see it

Rewriting Bone Song’s poem removed the universe doesn’t pathologize / storms are not disorders stanzas. Bone Song’s own refusals then still said “the poem says the universe does not pathologise its own variation” — pointing at a line the poem no longer had. And No. 95 described that removed argument as No. 1’s in four separate places, including its refusals and the note explaining how read-aloud translations are numbered. Editing one piece can falsify another piece’s account of it, and every gate passes cleanly: the sentence stays grammatical, the link still resolves, the markup is fine — the claim is just no longer true. All five now describe what the zine actually argues: a nothing found is a fact about the instrument at least as much as about the thing it was pointed at, and the belonging is a promise being made rather than a finding being reported.

UpdatedThe read-aloud now names a third correction, and this one was ours

No. 95 shipped saying it had read the 1957 paper “at the bibliographic record and through the review literature, not at the full text, which we could not reach” — and then cited that paper for a sentence it does not contain. It is now read in full, and the colophon’s two corrections in this zine’s own house is three. The added lesson: “confirmed through the review literature” is not a small discount on reading the thing — and a 2021 review in Bioelectricity states the mechanism correctly on one page while repeating the compression gloss four pages earlier, which is how a wrong sentence survives in a literature that also holds the right one. The self-correction stays in the colophon and out of the spread text, where it would only get between a child and the fact.

2026 · September 7

A 2021 review states the mechanism both ways on the same page, which is how the error travelled

Two more open-access papers, read at full text. They confirm yesterday’s correction to Bone Song, hand its central hedge a direct quotation, and supply a second instance of the zine’s own argument from inside bone biology. One thing they offered has been turned down.

Fact-checkThe wrong sentence and the right one, four pages apart, in the same review

Carter and colleagues (Bioelectricity, 2021) write that a charge appears “when a shearing force is applied to collagen fibers and they slip past each other” — the 1957 finding, stated correctly. Four pages earlier the same review says “compression on bone is shown to produce a negative electric charge … whereas traction produces a positive charge” — which is, almost word for word, the sentence this zine carried for seven weeks and corrected yesterday. A peer-reviewed review holding both at once is the measure of how completely the compression gloss has settled into the secondary literature, and of why nothing short of the primary could have told us which one was Fukada and Yasuda’s. It is now said plainly in the colophon rather than left as our own bad luck.

UpdatedThe hedge is now a quotation instead of our judgement

Spread three has said since yesterday that the size of the effect in a living body is unsettled. That was our reading of the literature. The same review says it outright: “There is a controversy around the presence of the piezoelectricity of the bone and its role in regeneration.” And Yue and colleagues (International Journal of Nanomedicine, 2025) have the wet-bone flow potential and the piezoelectric effect interacting rather than one of them winning, which is the direction the spread already pointed — open toward more mechanisms, not fewer. The 2025 review also independently confirms the attribution on spread two: the effect is “mainly due to the non-centrically symmetrical arrangement structure of collagen fibers,” while hydroxyapatite crystals “are not generally considered to be significant piezoelectric sources in themselves.”

NewCells in a dish need ten to a hundred times the strain a real bone ever gets

A walking body strains its bones by roughly 0.04–0.3%, rarely past 0.1%. Bone cells in culture need something like 1–10% before they respond at all. Read that as a result about the cells and you conclude ordinary walking never reaches them. Nobody read it that way. The field read it as a result about the dish and went looking for what a living bone has that a dish does not — the current answer, still a hypothesis, being fluid drag magnifying the strain each cell actually feels. That is spread five’s argument arriving from inside bone biology rather than from us, and it is now on the page, hedged as the hypothesis it is.

DeclinedA braid we could have had, and did not take

The same review reports that the piezoelectric charge opens voltage-gated calcium channels in bone-repair models. That would tie spread two’s electricity directly to spread four’s star-forged calcium — a genuinely satisfying join, and cited. We have left it out of the argument. It sits inside the very mechanism spread three spends a page saying is unsettled, so spending it here would spend the hedge for a rhyme. It is named in the colophon, so the choice is visible rather than a gap. And both papers carry the same limit, flagged twice: their subject is overwhelmingly engineered piezoelectric materials — barium titanate, PLLA, ceramics, scaffolds mending defects in rats. That applied stimulation helps a bone heal is well supported and is the lineage Bassett’s clinical work belongs to. It is not the claim that native bone uses its own voltage to decide where to grow, and this zine keeps the two apart.

2026 · September 7

We read the two papers at full text and found an error the abstracts had been hiding

Both of Bone Song’s load-bearing sources were listed as read-at-abstract. They are now read in full, and neither reading turned out to be a formality.

CorrectedShear, not compression

Spread two said the voltage goes “negative where the tissue is compressed, positive where it is stretched.” That is the later stress-generated-potential literature, not Fukada and Yasuda. Their paper says the effect “appears only when the shearing force is applied to the collagen fibres to make them slip past each other,” that its magnitude depends on the angle between the pressure and the bone’s axis, and that the sign and amount of polarisation “vary considerably with the direction of pressure.” Push straight down a bone’s axis and there is nothing to read. It answers to being twisted, not merely pressed. The diagram caption was wrong for the same reason. Not one of the abstract-level sources or review summaries we had used said any of this — which is the whole argument against treating “confirmed at the abstract” as a small discount on reading the thing.

NewThey boiled a bone for two hours and it still worked

Two controls from 1957, both now on the page. Specimens boiled for two hours and re-dried showed little change — “the fact ascertaining that the effect is not of biological origin.” Whatever this is, it is not a vital process; it is the shape of the material. And polarisation rose linearly with stress, which the authors take as “evidence that the effect is truely piezoelectric and not electrostrictive” — electrostriction goes as the square, and every material does it. A straight line as the discriminator, which is the same move as von Frisch’s grey cards in No. 94. Also now on the page: the largest constant they measured was about a tenth that of quartz, the human bone had been air-drying for years, and the collagen winds along the bone as a spiral that reverses direction layer by layer.

NewThe control group the IQ spread was weaker without

The obvious objection to “38 Autistic children scored 30 to 70 percentile points higher on Raven’s” is that Raven’s is simply the easier test and flatters everybody. Dawson and colleagues tested that, and we did not have it. Twenty-four non-Autistic children, recruited by newspaper advertisement, took both and showed no such discrepancy; among adults the two scores “did not differ significantly.” So the gap is not a property of the tests — it is what happens when these instruments meet these people. Added, with the authors’ own conclusion (“intelligence has been underestimated in autistics”) and their own caution against calling the processes dysfunctional, which the refusals now honour.

NewKanner said it in 1943, and the field went the other way

Dawson and colleagues open by quoting the paper that codified autism. Kanner wrote that Autistic children’s “excellent memory … and the precise recollection of complex patterns and sequences, bespeak good intelligence.” Sixty years of measurement then placed a large fraction of the same population in the range once called mental retardation. And one connection nobody planned: that paper carries a footnote explaining its use of Autistic rather than person with autism, citing Jim Sinclair — who is already credited at the foot of this zine, for the paradigm. The study it leans on and the zine itself are indebted to the same person.

2026 · September 7

Our first zine was arguing against its own refusals, so we rebuilt the argument on measurement instead of physics

Bone Song, second revision in two days. Nine spreads now, seven refusals, and the poem moved to the end.

CorrectedThe zine contained a refusal and a spread that contradicted each other

Friday’s pass added “Not: physics as a warrant for a moral claim” while the paradigm spread was still making exactly that argument — “a star doesn’t diagnose its own magnetosphere … but the bone still made its electricity.” That closing clause is the fact vindicating the person, which is the move A Promise, Not a Finding exists to refuse. The spread also restated the poem in prose, and asked “what is the universe trying to do through this particular configuration of matter?” — the universe is not trying to do anything.

NewNothing found is not nothing there

The replacement argument was already inside the zine. Bone was silent until somebody put a meter on it. The field then spent fifty years unable to separate two mechanisms in wet tissue — and nobody concluded the bone was doing nothing. When a result comes back ambiguous, a field says the measurement is hard and builds better instruments. That courtesy is not extended everywhere. A null result is a fact about the instrument at least as much as about the thing it was pointed at — which is epistemology, not physics doing moral work, and the spread says so on its own face.

NewTwo instruments, seventy percentile points apart

The same shape, measured on people. Dawson, Soulières, Gernsbacher and Mottron gave 38 Autistic children two intelligence tests. On Raven’s Progressive Matrices — reasoning about patterns, almost no words, no stopwatch — they scored on average 30 percentile points higher than on the Wechsler, and in some cases more than 70. Same children, same afternoon. Only one of those numbers usually leaves the room, and it goes into a file, a placement, and what the adults around a child expect for years. And the test is not a neutral window: it is a room, a stranger, a clock, and a demand to perform on cue — a sensory event that can depress the very thing it is trying to read. That point is Stimpunks’ own, from the Intelligence Quotient entry, cited rather than rebuilt.

UpdatedThe poem moved to the end, and four verses came out of it

It now sits after the refusals. Cut: the universe doesn’t pathologize its own variation / storms are not disorders / variation is not deficit / the electric bone that bends differently is still making the signal — the fallacy, two slogans, and the fact vindicating the person, all orphaned once the prose that matched them was gone. A replacement draft put the zine’s instrument argument into verse instead — and that was cut too, on Ryan’s read that the poem should stand alone from the essay. He was right, and it is the same fault as the old paradigm spread in reverse: prose restating the poem had become the poem restating the prose. What is left is the two facts and the love. The join it produces is the house phrase saying its own logic plainly: you are walking around with stellar ash in your skeleton / we love you down to your star stuff — the loving reaching all the way down to it, not caused by it. One more line changed that nobody had flagged — “move through the world and they sing voltage” was the every-step overclaim still standing in verse after its removal from prose.

NewA payoff spread, and what the title actually means

The IQ spread read as a setup with nothing after it, so there is now a synthesis spread before the refusals. Three things had to happen before anybody could say a bone makes electricity, and they are not the same kind of thing. Make: the body assembles stellar calcium and spends energy every second of your life holding a gradient, so signalling is possible at all — whether or not anyone is in the room. Detect: whether it registers depends on what is pointed at it; bone was silent for as long as nobody held a meter to it, and the silence was ours. Read: when the meter does move, somebody still decides what the movement means — a voltage becomes a mechanism or an artefact; a score becomes a placement, a set of expectations, and a child. Only the first of those belongs to the body, and the making does not wait for either of the others. It did not wait for 1957. That is what the title is: a bone under load makes a signal, and that is the song. The spread carries its own guard, because a synthesis is exactly where the fallacy would creep back in — the song does not make a case for you; it was never doing that job. And it hands the value claim to the right side of the instrument: the loving is on our side of it too. It is not a reading, and it does not wait for one.

MethodThe stars spread was interrupting the argument

Found on a cohesion read. The argument runs across four spreads, and the calcium-and-stars spread sat inside that run with no part in it — two hard cuts, and a spread that had to point backwards over the interruption to reach the material it needed. Rather than move it, we gave it a job: the thread now runs make → detect → who reads it, and the calcium gradient becomes the first term of the argument instead of a second unrelated wonder. Two smaller seams fixed in the same pass: one spread ended by pre-stating the next spread’s heading word for word, and another re-told a fact from three spreads earlier without signalling that it was coming back to it on purpose.

MethodA refusal that had to be made stronger, and one added

Friday’s refusal disclaimed “a finding about anyone” — which under-claimed once a published finding was on the page. It now says what is true: a finding about instruments, not a ruling on anyone’s file, and not a claim that these tests measure nothing. And the inverse move is refused outright: not Raven’s as the real score. Treating the higher instrument as the truth-teller leaves the machinery intact and merely reorders the same children. Dawson and colleagues make no such claim, and neither do we.

MethodWhy there is a parent’s account in the colophon and not on a spread

Ryan Boren’s own words about IQ tests administered to his multiply neurodivergent child are in the colophon, attributed, in his voice. Deliberately not on a spread. The zine states that the account is why that spread exists but is not the evidence for it — Dawson and colleagues are, and their finding would stand without it — and that it is an account of what a parent watched rather than a description of a child. The reasoning is printed rather than assumed: a child reduced to a number in a file is the thing that spread objects to; a child written into a zine to illustrate the objection would be the same move with better manners.

2026 · September 6

The element guide had hung a property of bone onto calcium, and stated the disputed part outright

The Bone Note — Calcium · Ca in A Field Guide to the Star Stuff You’re Made Of, rewritten. The same material now runs in spread four of Bone Song.

CorrectedCalcium is not piezoelectric

The entry said it was — in its summary line, in a tag, and in a whole fact row reading “Piezoelectric · pressure becomes voltage · bone sings under load.” The effect belongs to bone as a composite, and is attributed to the collagen rather than the mineral, which we had already established elsewhere on this site in August. An element guide is exactly the wrong place to hang a composite-material property on a single element. All of it is gone.

CorrectedAnd it carried the overclaim in its strongest form anywhere here

“Every step you take, every load your skeleton bears, gets quietly translated into electricity that tells the bone where to grow.” That asserts the remodelling mechanism outright — the precise part the literature does not settle, and a step further than the sentence removed from No. 1 the same day.

NewWhat replaced it is calcium’s own, and it is a better fact

More than 99 per cent of your calcium is locked in bone and teeth — about a kilogram, one to two per cent of your body weight, almost all of it architecture. The part that does anything is the under one per cent that moves: every heartbeat, every muscle contraction, every nerve signal. And it works because your cells spend energy continuously pumping calcium out of themselves, holding the concentration inside at roughly a ten-thousandth of what is immediately outside. Open a channel for an instant and calcium floods down the slope, and the cell has its signal. A signal made of scarcity, held in place by work. That is true of calcium specifically, where the piezoelectric line never was.

UpdatedThe same material now runs in Bone Song

At Ryan’s request, spread four of No. 1 now carries the 99-per-cent split and the gradient rather than the nucleosynthesis alone. Its origin line was also tightened from “a star that lived and died” to massive stars and the supernovae that ended them, which is calcium’s actual production route and what the field guide had said all along.

2026 · September 6

We rebuilt our first zine to the standard we invented after making it

Bone Song was made on 17 July 2026, before the Star Stuff voice and method existed. It now runs to eight spreads: a new one carrying the caveat, and a refusals set, which the zine predated the convention for. The prose poem stays.

CorrectedThe credit, including inside the poem

Bone piezoelectricity is Fukada and Yasuda’s. This page named Yasuda alone in four places — an eyebrow, the body prose, the colophon, and the poem. We had already fixed this on the Manifesto and the L★S Broadside in August and never swept it back to the founding zine. The poem line is now “Fukada and Yasuda knew this / They pressed on the crystal and it answered.” Editing verse is a bigger act than editing a citation, and it is recorded as one.

Corrected“Every step you take is a small current” is gone, and a spread replaces it

That sentence was a step past the evidence, and nothing on this site had ever mentioned why. New spread three: Fukada and Yasuda measured dried bone. Piezoelectric response falls as tissue is hydrated — Fukada came back to measure exactly that in 1982. In a living body there is a second mechanism, streaming potentials from fluid squeezed through the tiny channels in bone, and a voltage measured in wet tissue is not by itself evidence of piezoelectric origin. It is not refuted either — recent work finds collagen’s response measurable at the humidity a real body runs at. Unsettled in both directions, for fifty years. The claim that holds is narrower: squeeze a bone and it makes a little electricity, and this was measured. The effect is also now attributed to the collagen rather than to collagen and mineral jointly.

CorrectedA number we invented, caught before it shipped

The first draft of this revision said the page had carried the fault “for three years” — in four places. Ryan asked: three years or three months? Seven weeks. 17 July to 6 September 2026. The figure had been invented to make the correction sound weightier, which is precisely the failure this site exists to catch, committed inside a correction to our founding fact. All four fixed; a grep confirmed it had not spread to any other page.

MethodThe spreads carry the story. The colophon owns the mistakes.

Also Ryan’s, and it reshaped the revision. The new spread had been written as self-narration — this zine said … and it took writing a version for five-year-olds to notice it — under an eyebrow reading What we left out, with a paragraph justifying its own existence. That reads as noisy housekeeping and distracts from the story being told. Six passages rewritten; the eyebrow is now Dry and wet; spread three contains zero references to this zine’s own history and reads as science. The full correction record lives in the colophon and here, which is what both are for.

MethodOne sentence is deliberately not fixed

The colophon still ends “You are made of star stuff. The universe loves you for it. So do we.” The middle sentence is the naturalistic fallacy stated flatly, and the next three words take it back. It stays, verbatim. A Promise, Not a Finding is built on that exact line and says on its own face that it is pointing at it rather than quietly deleting it. A site that keeps a public error log does not get to tidy its own first page.

2026 · September 6

We made a read-aloud of our founding zine, and it found two faults in the fact this whole site is built on

Bone Song, Read Aloud (No. 95) is the read-aloud door into No. 1. Twelve spreads, three figures, five refusals, for four- to eight-year-olds. Writing it required checking the fact underneath it, and the check did not come back clean.

CorrectedThe founding zine still credits one of the two people who measured it

Bone piezoelectricity is Fukada and Yasuda’s — Eiichi Fukada is first author on the 1957 paper. This site credited Yasuda alone for a long time. We fixed that on the Manifesto and the L★S Broadside in August, logged it, and never swept it back to No. 1 itself, where it still stands in four places. Fixing the instances you noticed is not the same as fixing the fault, and this is that lesson landing on the oldest page here. No. 1 has not been edited yet: one of the four is inside its prose poem, and rewriting the founding artifact is a decision, not a correction to make in passing.

CorrectedAnd a caveat that appeared nowhere on this site at all

This is the bigger one. Fukada and Yasuda measured dried bone. Piezoelectric response falls as tissue is hydrated — Fukada himself returned to that in 1982 — and in living wet bone there is a second mechanism, streaming potentials from fluid squeezed through tiny channels, which some researchers think matters more for cell signalling. Voltages measured in hydrated tissue are not by themselves enough to show a piezoelectric origin. It is not refuted either: recent work finds collagen’s piezoresponse still measurable at physiological humidity, and a 2023 study reports both mechanisms coexisting and possibly coupled. The question is live in both directions. Until now, nothing on this site mentioned any of it, while No. 1 and the masthead broadside both say “every step you take is a small current” without a hedge. What No. 1 says is not false — the effect is real and was measured. It is stated more strongly than the evidence about living bone supports, which is a different fault and still worth fixing.

NewThe zine gives a whole spread to “nobody has finished working it out”

Not in the grown-up box — on the child’s page, in the big type. In a real live bone there is something else making a little electricity too: water being squished through very small tunnels. So when a scientist measures a living bone they get a number, and then they have to work out how much came from the squeezing and how much came from the water moving. They have not finished. That is not a problem with the science. That is the science. A four-year-old can be handed an open question without alarm, and the large type only ever makes the claim that survives: squeeze a bone and it makes a little electricity, and this was measured.

MethodHow a read-aloud translation gets numbered

The rule, set here because this is the first one. A translation takes the next number in sequence — numbers on this site record when a thing was made, and this was made now, so No. 1b would make the number lie about its own position. It carries a read-aloud of No. N marker in its card, in the same slot as the existing companion to No. N. And its colophon states that the original owns the argument: No. 1 makes the case that variation is not deficit, and No. 95 does not compress that into shorter words. A translation that re-made the argument would be two pieces claiming the same thing in two voices.

2026 · September 6

A sixteenth collection, and the first one sorted by who it is for

Young Readers opens with three members — No. 91, No. 93 and No. 94. Star Stuff for four- to eight-year-olds and whoever is reading to them.

NewAudience is a sixth axis, and it needed a shelf rather than a tag

Every other collection here sorts by register (what kind of claim), form (what shape), occasion (what happened that day) or issue (which edition of a serial). This one asks who a piece is for. All three members pass the Star Stuff register test outright — each takes one settled, checkable fact and follows it until the belonging claim is already inside it — and that is exactly the problem. They pass, and a caregiver hunting for something to read to a five-year-old will never find three read-alouds inside a grid of thirty-nine adult zines. Discoverability is the entire job of a collection page.

UpdatedThe three pieces left Star Stuff, and its counts were four additions stale

A page belongs to one collection and says so once, so the move is a move rather than a copy. Star Stuff went from 44 cards to 41. Its hero count still read 40 pieces — wrong before this change and wrong for four additions before that — and its derived figure (total minus the seven founding zines) went from thirty-three to thirty-four. Both re-derived from the cards rather than incremented. This is the failure mode CLAUDE.md names in its own margin: no gate can read a number written out in a sentence.

NewThe collection page greets the reader it is for

It opens in plain language, at read-aloud size, addressed to a child: “Hello. These ones are for you… Somebody can read them to you. The big words are for you to hear. The small words in the box are for the grown-up, so that if you ask ‘is that really true?’ they can look down and tell you exactly how we know. You are allowed to ask that about anything.” Then the three cards. Only then does the page explain how the collection works — the axis, the two-layer convention, where the pictures go, and what these pieces refuse to claim — under a heading that says it is for the grown-ups. A collection page for young readers that opened with a methodology essay would have been addressed to the wrong person.

MethodThe two-member floor was not broken, and that is the point

It has been broken three times on this site, each with a written reason. This one opened at three, on a form observed in finished work. The first read-aloud shipped with the collection deliberately deferred, on a specific argument: reading level, unlike cadence, can be observed retroactively — so waiting cost nothing, which is exactly what the Glimmers cadence argument required and this one lacked. The reasoning, the rejected name (Read-Aloud, which names the consequence rather than the membership test), and the one thing still unsettled — how a read-aloud translation of an existing zine would be numbered and marked — are in DECISIONS.md.

CorrectedA gate had been quietly standing down on one collection page

Found in passing. check-markup.mjs verifies that a piece’s collection badge is labelled with the name the collection page gives itself, and it takes that name from the page’s <title>. If the title does not match the canonical form, the tool deliberately stands down rather than failing every member — an unverifiable claim is not a failing one. Triggers was the one page of sixteen whose title did not match, so that check has been inactive on it since it shipped. Title canonicalised; the check is armed again.

2026 · September 6

Two more read-aloud zines, and the second one is built on a correction to itself

Seeds That Wait (No. 93) and The Colours You Cannot See (No. 94) join No. 91 on the read-aloud shelf. Twelve spreads and three figures each, for readers of about four to eight and whoever is reading to them.

NewFour kinds of waiting, and none of them is slowness

Some seeds will not start until a whole winter has happened. Some sit inside cones glued shut with resin that only fire will melt. Some need to go through a bird. Some have a shell so hard that water cannot get in until it has been worn thin. Then look at where each one lives: a seed that sprouted before winter would freeze, one that sprouted before the fire would burn, one that sprouted under its parent would find no room. Every one is waiting for the moment when starting would actually work. And the longest wait anybody has directly dated — a date seed from Masada, radiocarbon-dated to the first century, planted and grown. That phrase directly dated is the authors’ own, and it is why we did not reach for a bigger number: longer claims rest on the age of the dirt around the seed rather than the seed itself.

Corrected“Bees see more colours than we do” is a ranking wearing a fact’s clothes

That is the sentence No. 94 arrived carrying, and it is in nearly every popular account. The review it is built on reverses it: ultraviolet is “merely one component of colour vision” for a bee, not a separate channel bolted onto a human-like system — and humans are more sensitive to red than bees are. A bee cannot see red at all. The window is shifted, not widened. Two comparably sized pieces of one continuous spectrum, sitting in different places, each blind to what the other has. The true version is better and harder to sell, and writing it the popular way turns a difference into a ranking, which is the move this whole site exists to refuse.

NewA six-year-old can hold what a control is

No. 94 spends a whole spread on how anybody knows bees see colour rather than just going for the brightest thing. In 1914 von Frisch taught bees to a blue card with sugar water, then took the reward away and set that card out beside grey cards of every brightness he could make. If the bees were picking brightness, one of the greys would have caught them. The greys are there to catch us out. That is the whole of science in one picture, and it belongs in a book for four-year-olds.

MethodThe illustrations were in the wrong place, and one was inside the grown-up box

Caught by Ryan: in a read-aloud, the child’s picture has to sit with the child’s words, not below the adult’s citations. All six new figures were moved above the grown-up layer — and one of them had been written inside it, where a child following the large type would never have reached it. The same fault was fixed on No. 91 during its build; it recurred immediately on the next two, which is what a convention with no gate behind it is worth.

MethodWhat both zines decline to claim

No. 93 prints no figures for its four dormancy mechanisms, names no pine and no bird, and says why: they are stated at settled-textbook level and we read no species-specific study for any of them. It also refuses good things come to those who wait — dormancy is a mechanism, not a virtue, and a child waiting for something that is not coming has been handed a delay, not a moral. No. 94 marks its wavelength figures as untraced to primaries, states that we have not read von Frisch’s 1914 paper, and refuses the most persuasive thing in its subject: a UV photograph does not show you what a bee sees, and no image can. Neither zine claims anything about human perception or human pace; where those arguments live is linked instead.

2026 · September 6

Zine No. 92: we tried to write about frogs and lily pads, and got the relationship wrong twice

Two Things on One Leaf — fifteen spreads, three figures, five refusals. Companion to No. 91, built from the same pond: that one reads the water for time, this one for space.

CorrectedFirst we decided the picture was wrong. It isn’t.

The first draft held that frogs sit on lily pads was mostly artistic convention, on the strength of finding no primary source for it. What we had actually found was that content farms are not sources — and we reported the shortcoming of our own search as a fact about frogs. A null result from a bad corpus is not a finding, especially for something so ordinary nobody publishes a paper about it. Ryan Boren corrected it from his own pond, and then from a photograph: a southern leopard frog fully up on a mature lily pad, taking its whole weight. The picture was never the thing that was wrong.

CorrectedThen we smuggled the pairing back in through a nicer sentence

Draft two had settled into the pad is a lung the frog sits on — which sounds like a finding and quietly asserts a relationship. The second correction killed it: the frogs perch on everything in the tank. Pennywort, elephant ear, rocks, the steel rim. What an adult frog wants is geometric rather than botanical — a flat surface, at a height, in the sun, above the strike zone, one jump from the water. Take the lilies out and they would sit on whatever was left. The lily has no claim on the frog, and that leaves the actual finding standing alone.

NewMeanwhile the leaf is running a wind

Dacey measured a “pressurized flow-through system” in a water lily: several litres of air a day entering the young, newly emerged leaves by thermal transpiration and hygrometric pressure, travelling down the petioles at up to 50 centimetres per minute to a rhizome buried in anaerobic mud, and forcing a simultaneous return flow of carbon-dioxide-rich gas up the petioles of the older leaves. New growth is the intake; old growth is the exhaust; neither half works alone. And a 2021 photograph from the same pond shows a frog egg mass glued to a water lily stem — a tube that is roughly a quarter air by cross-section. The zine refuses to say the frog chose the stem because it is a pipe. The coincidence does not resolve; it just gets more exact.

MethodA genus boundary we nearly walked across, and two things we cut

Dacey’s plant is Nuphar. The plant in the tank is Nymphaea. The draft was one sentence from carrying the finding across that boundary unchecked — so we checked, and Richards, Kuhn and Bishop describe the same convective system in Nymphaea odorata, with air canals at 24 per cent of the petiole’s cross-section. It carries. But checking and assuming are different acts. Two things did not survive: a circulating claim that through-flow doubles root ATP, which we could not trace to anything we had read; and the shading-and-deoxygenation complication, because the strong literature is on free-floating mats like duckweed and water hyacinth, and attributing a hyacinth result to a rooted water lily is a growth-form swap. Also corrected: a figure that contradicted its own caption — the petiole diagram’s air canals were drawn at about 35 per cent of the disc under a label reading 24 per cent, and were redrawn to 23.4. No gate can see that.

MethodThirty frogs is an observation, and the zine says so on its face

One tank, one observer, no method, no repeat counts. It is the reason the piece exists and it is not evidence for a single claim in it; every measured number comes from somebody who was measuring. The crowding pattern — big leaves first, small ones when the pond fills — is described by the ideal free distribution, and the zine prints the awkward part: that theory predicts fitness is equalised, so it does not say the small-pad frogs lost. Two readings are live and nobody counted. What survives either way is that which pad you are on is a fact about how full the pond is. The turn is the error itself: reading partnership out of proximity is the same move that turned mycorrhizal symbiosis into elder trees feeding their young.

2026 · September 6

Zine No. 91: the first one written to be read aloud, and it does not lower the bar to do it

Nobody in This Pond Is Late is for readers of about four to eight, and for whoever is reading it to them. Twelve spreads, five figures, five refusals. Dedicated to Lilypad Library, Kiersten Case’s low-stimulation puppet series for neurodivergent kids, which Stimpunks fiscally sponsors.

NewEvery spread carries two layers, and the small one holds the sources

Large plain type for the child; a boxed for the grown-up reading this layer underneath holding the species names, the figures, the papers and the places the evidence runs out. The point is that a caregiver can answer “is that really true?” without leaving the page. The sourcing standard is not relaxed for the audience — same eight gates, same ledger row, same grading of every claim — because for kids is exactly the bin where a verify-everything standard quietly lapses. It is the same reasoning that keeps a For Fun collection off this site.

NewThe frog and the axolotl are not our metaphor. They are the show’s casting.

Lilypad Library put a frog and an axolotl side by side, and the biology underneath that pairing turned out to be better than it looked. A frog rebuilds its whole body. An axolotl never does — and the IUCN’s own Red List assessment describes it as “a paedomorphic species, living permanently in water, and does not undergo complete metamorphosis.” That is a description of an adult, not of a delay. The strongest spread is a population-genetics result: Everson and colleagues found the tiger salamander complex holds populations that transform, populations that never do, “and those that do both” — with gene flow between adjacent metamorphic and paedomorphic populations. Geography divides these salamanders. The route through childhood does not.

CorrectedThe famous “eight days” is the floor of a range, and a widely-quoted axolotl number is not in the document it is credited to

Couch’s spadefoot is everywhere reported as metamorphosing in eight days, the shortest of any North American amphibian. Newman’s 1989 paper gives eight to sixteen with sufficient food, and the range — one species, one desert, twice the time — is what the spread is actually built on. Separately, secondary accounts of the axolotl’s decline run a density series ending “35 per square kilometre in 2017.” The Red List assessment contains no such number. What it says about 2017 is starker and differently shaped: monthly sampling at Xochimilco did not record the species at all. We cut the tidier series and printed the assessment’s own sentence. And an American bullfrog figure would not resolve to a primary, so it appears with no number at all and the grown-up box says why.

MethodTwo spreads had no picture, in a book for four-year-olds

Caught by Ryan mid-build: the frog spread said this frog used to be a tadpole and showed nothing. Neither did the axolotl spread. In a read-aloud that is a real failure, and it was not one spread but a class of them — so the fix was five figures rather than one, and all five moved to sit with the read-aloud text instead of below the grown-up box, which relocated the two that already existed. The axolotl drawing was then redrawn twice more, because it read first as an insect and then as a fish. No gate can see any of this. The collision checker compares text to text, so a title running through a drawing is invisible to it; that clearance is geometry, checked at render size, by a person.

MethodWhat this zine refuses to claim, and where the real argument lives

Every study here is about amphibians, and the zine says so twice — on a spread face and in the refusals. It makes no claim about children. Stimpunks already owns that argument, on human evidence, in Developmental Pace: a why sheet, a glossary entry and a printable broadside for the meeting where a child is about to be told they are behind. Its sentence is sharper than any of ours — “Behind” is information about the ruler, not about the learner — and this zine stands next to it rather than reaching for it. No. 34 keeps slow; No. 61 keeps neoteny. The refusals name the trap this genre falls into first: “the axolotl never grows up” is the deficit reading wearing a nicer coat. And the show’s characters have names, which we have not used — they are Kiersten Case’s to lend.

2026 · September 6

Field Guide No. 24: nineteen organisms, sorted by which assumption each one breaks

A Field Guide to the Sexes is the companion catalogue to No. 90. Nineteen entries in five sections, twenty-one cards, and two that get no reframe table. It carries the zine’s refusals and repeats none of its argument.

NewThe sort is the finding, and it was not the sort we set out to make

By taxonomy you get fish, molluscs and a fungus, which tells you nothing. By strangeness you are building a freak show, which is the oldest and worst way to write about this. What actually divides these nineteen is which part of the bundle each one takes apart — because “there are two sexes and you are one of them” is five separate claims: that the count is two, that yours is fixed, that you are one or the other, that each names one kind of thing, and that making more takes two. No organism in the guide breaks all five. Each breaks one or two and keeps the rest, which is why the bundle held together so long.

NewA fungus on a fallen branch, a plant that re-decides every spring, and a barnacle that does not need the organ it is famous for

Schizophyllum commune runs past twenty-three thousand mating-type combinations and is probably growing within walking distance of wherever you are — the strange number is not out at the edge of life, it is on the log in the park. A jack-in-the-pulpit flowers male or female on the strength of last year’s reserves, and can go back, which makes it the only reversible case in its section. And the barnacle card is called Darwin’s Mistake: the famous longest-penis-for-its-size fact is real, has been in the textbooks for a century and a half, and a 2013 paternity study found a quarter of individuals with a partner within reach were carrying embryos fertilised by a distant one. The animal was never wrong. The account of it was.

CorrectedOne entry was rewritten mid-build because the easy version of it was wrong

The Chlamydomonas card was drafted as look, an organism with no sexes at all. That is not what isogamy is. The gametes are the same size, so sperm and egg genuinely have nothing to attach to — and there are still two mating types, distinguishable by where the mating structure sits relative to the flagellar beat plane and the eyespot, under the control of MID. Equal size is not sameness. Printing the easy version would have been this guide flattening a real distinction because it did not match the expected shape, which is the exact thing it accuses the two-sex model of doing.

MethodTwo cards carry no reframe table, and one of them is about people

A “how it circulates / as it checks out” table asserts that there is a verdict and that we hold it. One card reports the maintenance of sexual reproduction as an open problem with no consensus, so there is no verdict to print. The other is the obvious missing entry — us — and it exists to say why there is no entry rather than leave a silent gap. It gives both published figures for human sex variation, about 1.7 per cent (Blackless and colleagues, 2000) against about 0.018 per cent (Sax, 2002), notes that the gap is almost entirely one condition, and declines to adjudicate: the disagreement is about what the word covers, not about what exists. The deciding reason is the second one. A sounds-like / actually table takes its subject as a specimen whose popular description needs correcting by us. That is fine to do to a barnacle. Done to people it turns them into entries. Field Guide No. 10 set that rule with the turtles people made; this is its second use.

MethodThe counts were re-derived, four were already wrong, and the derivation itself under-counted until it was checked

Guides 22→23, entries 278→297, cards 297→318, withheld 19→21. The method was to evaluate each guide’s entry array rather than trust the printed figure — and it came out exactly five cards short until it was validated against the collection page’s own number, because Being a Turtle keeps its five turtles people made in a second array. Already wrong before this pass: “Thirteen of the nineteen are companion catalogues” had both halves wrong against twenty-two guides and fourteen companions, and its list had quietly omitted three guides; it is now sixteen of twenty-three, with seven standing alone. And the sentence fifteen of them arrive at is now sixteen — derived by reading all seventeen matches rather than counting them, since Unfinished Animals matches the phrase in order to decline it. That figure is quoted on three other guides as well as owned by the collection page, and all four were corrected. A count is never in one place.

2026 · September 6

Zine No. 90: the sex lives of Terran life, and the argument we are refusing to make about them

Strike “His” joins Star Gazing. Fifteen spreads, three figures, six refusals. Its title is a quotation from Ursula K. Le Guin’s marginal correction to her own essay — and the standard we hold for a title is why this piece took a second verification pass.

NewA fish rewrites its own cell memory in ten days, and a fungus carries twenty-three thousand mating types

Remove the dominant male from a bluehead wrasse group and the largest female begins behaving as a male within hours; a mature ovary is remodelled into a functional testis in eight to ten days and produces sperm inside twenty-one, driven by changes to the chemical marks on the DNA. Anemonefish run the reverse, and the 1977 paper names the mechanism plainly — sex change by aggressive dominance, which is a ladder, not a freedom. Schizophyllum commune runs to more than twenty-three thousand mating-type combinations; Tetrahymena has seven; isogamous algae have no sperm and no egg, so the words have nothing to attach to. Male pregnancy in seahorses was paid for with the MHC class II pathway and three Toll-like receptors — a price, not a superpower, which is the distinction this project keeps having to make.

NewLe Guin found the default she had not noticed, and printed the correction beside the error

The Left Hand of Darkness (1969) imagines people with no fixed sex, and gives the line the zine was almost named for — along with the joke nobody quotes, which is that the villagers laugh at the pregnant king because he is too old. In 1987 Le Guin reprinted her 1976 essay on the book entire, running her disagreements alongside it in bracketed italics rather than revising them away, because “it doesn’t seem right or wise to revise an old text severely, as if trying to obliterate it, hiding the evidence that one had to go there to get here.” Among the corrections: that she had quite unnecessarily locked the Gethenians into heterosexuality, and had not noticed. That is this changelog’s own method, published in 1987 and better put — minds that don’t change are like clams that don’t open. She also asks that anyone quoting the essay include the reconsiderations. Most don’t. This zine does.

CorrectedThirty years of believing something true about bonobos, assembled into something false

Spread ten prints a correction to the author’s own long-held reading rather than dropping it quietly. Bonobos as a liberatory model — sex in place of conflict, food shared, females allied — is built from attested behaviour and is not a society anybody has observed. Mouginot and colleagues followed twelve male bonobos and fourteen male chimpanzees for two years and counted: bonobo males were involved in roughly 2.8 times as many aggressive encounters, and the most aggressive sired the most offspring. The real difference survives, and it is not the one in the story: lethal aggression is common in chimpanzees and absent in bonobos. The error was not believing a false fact. It was believing a selected one, and stopping.

MethodTwo retrievals of one reproduction agreed with each other and confirmed nothing

Our own library held a file titled as Le Guin’s essay. It was a clipping of an online reproduction — the same reproduction a separate web fetch returned, so the two appeared to corroborate each other while tracing to a single source. Since the zine’s title is itself a quotation from the annotations, that was graded plausible and escalated rather than shipped. Ryan photographed the pages from his own copy: Grove Press, 1989, ISBN 978-0-8021-3529-2. Every bracket is confirmed verbatim at the book — and reading it turned up something the reproduction had not made obvious, that there are two [strike …] annotations, the other on the word “feminist.”

NoteOne attribution logged as unsourced, on purpose, and the reason printed on the page

Every other attribution in this zine reaches a journal with a DOI or a book with an ISBN. Autigender does not. The definition most quoted is a 2017 Tumblr post surviving in the Internet Archive; the coinage is traced to two Tumblr accounts in August 2014 and attested only in community-maintained wikis, which this project treats as leads rather than citations. We have not upgraded it, and spread thirteen says why on its own face: a word made by disabled people on a platform nobody was archiving is a word the academy calls unsourced, and that is a fact about the academy. Left open on the page as well: the elevated rates of LGBTQ+ identity among Autistic people are well replicated and unexplained, and the zine presents both live readings without picking one.

RefusalNature does not authorise us — it only fails to convict us

Bagemihl’s catalogue of 450-plus species was cited in the Lawrence v. Texas amici, and it helped. It is still the wrong argument, and the zine says so at length. This occurs in nature, therefore it is permissible concedes the premise, not just the conclusion — and the court that acquits on those grounds convicts on them. So the frank half of the subject is on the page rather than curated off it: traumatic insemination, sexual parasitism, coercion, infanticide. A version of this zine containing only the delightful animals would be the same fallacy with better manners. It is the same defect we already refuse in our own masthead: down to is not because of.

2026 · September 6

The migrating field guide gets its sixteenth way, and it is the one nobody can explain

A Field Guide to the Ways of Migrating had fifteen entries and no whale — a gap noticed while building No. 89. The Course Held now sits after The One-Way Trip, because the salmon and the whale pose the same navigation problem and only one of them is solved.

RevisedA route whose shape is known to a fraction of a degree and whose mechanism is not known at all

Sixteen tagged humpbacks swam twenty-eight dead-straight segments, fifteen of them holding a heading to better than one degree across up to 2,230 km and twenty-eight days. Currents deflected their headings by as much as twenty-five degrees and did not move their tracks — so the animal is correcting continuously against a reference outside itself, and you cannot correct for a drift you cannot detect. One segment crossed a tropical storm. The guide's diagrams all answer one question — what shape does the route make? — and this one's answer is a straight track with a crabbed heading. Every figure was already verified for No. 89 the same day; no new sourcing, and the nutrient half is deliberately left out, because a guide to ways of migrating is not the place for what the crossing happens to carry.

MethodThe counts were re-derived, and the derivation caught our own notes four guides behind

Adding one entry moves a number in eleven places, and none of them is gated. The guide's own figure went 15→16 in five places plus a source comment; both cards moved in four fields each; and the L★S sequence labels 005–015 shifted to 006–016 so position and label still agree. The collection totals were derived from the search index rather than incremented — 22 guides, 296 anchored records against 277 claimed entries, implying 19 cards deliberately filed as something other than entries; now 297 cards, 278 entries. Doing it that way turned up CLAUDE.md claiming 18 guides, 218 entries, 231 cards, dated 27 August, while every one of the collection page's own seven figures was current. That is the rot running backwards from usual — the reader-facing page right, the working notes wrong — and it is corrected. One thing left open rather than half-fixed: the JSON-LD hasPart array on the collection page lists thirteen of the twenty-two guides and wants its own pass.

2026 · September 6

Zine No. 89: a whale holds a line nobody can explain, and carries a cargo it is not trying to carry

Nobody Set Out To Do This joins Star Stuff as its fortieth piece, and is marked on its own face as the companion to Helen Edgar’s No. 30, Always Migrating. Fifteen spreads, five figures, six refusals. Built from three papers, all read in the originals.

NewTwenty-eight straight lines, and no mechanism that accounts for them

Horton and six colleagues tracked sixteen humpback whales by satellite between 2003 and 2010 and found twenty-eight constant-course segments — every one held to better than five degrees at the 95 per cent confidence level, fifteen of them to better than one, across 240 to 2,230 kilometres and two to twenty-eight days. Sea-surface currents deflected the whales’ headings by up to twenty-five degrees and did not move their tracks, meaning the animals correct continuously for a drift they must first be able to detect. One segment crossed a tropical storm. The three whales tracked all the way south finished within about a hundred kilometres of 58°S, 23°W — in different months, of different years, along distinctly different routes. Neither obvious answer closes: whales under near-identical magnetic declination departed on opposite headings, and whales under different Sun positions held the same one.

NewTwenty-nine directional modes, and the paper’s own hedge printed next to its own headline

Fourteen years later Chatterjee and Ghosh brought directional statistics to the problem — a von Mises–Fisher mixture and a circular–circular regression, because the average of 350° and 10° is 0° and ordinary arithmetic cannot say so. Their strongest correlate is the interaction of solar position and geomagnetic change, which is a real answer to Horton’s objection. Then, in their own discussion, they write that the cues’ contribution is “limited and likely part of a broader, more complex system of navigation cues”, and that some parameters may not exert a biologically meaningful influence at all. The zine prints the hedge next to the headline. And describing how a humpback changes direction took twenty-nine mixture components: there is no average heading for the rest to be noise around.

Fact-checkA source contradicts itself, and we printed the contradiction instead of picking a side

Chatterjee and Ghosh’s abstract says nine mixture components for both species. Their discussion says nine for blue and twenty-nine for humpback, in two separate passages. We could not reconcile that from the published text, so spread nine states both and says the discrepancy is the paper’s. A second caution is ours rather than theirs and sits in the colophon: the models assume independent directional changes across environmental variables — the authors’ own third limitation — while the headline result is a correlation between two of them. We report the finding and the caveat and draw nothing from the tension. Two conversions on spread three (1° over 2,230 km ≈ 39 km; 10° ≈ 393 km) are our arithmetic, not the paper’s, and are labelled as ours on the spread.

NewThe great whale conveyor belt, weighed

Roman and nine colleagues estimate that gray, humpback and right whales move 46,512 tons of biomass and 3,784 tons of nitrogen a year from high-latitude feeding grounds to nutrient-poor tropical calving grounds — to the authors’ knowledge the largest long-distance nutrient subsidy on the planet, and roughly three times larger before commercial whaling. The whales are fasting the entire way. A North Pacific gray whale gathers across an area up to forty-six times larger than the one it unloads into, and that concentration is the mechanism. In the Hawaiian Islands Humpback Whale National Marine Sanctuary the animals deliver 125 to 175 per cent of the nitrogen that upwelling and convective mixing bring up during the breeding season. Most of the biomass arrives as carcasses and placentas.

MethodThe first refusal is the one holding the piece up

The source paper discusses how species recovery might restore nutrient movement and increase ecosystem resilience. We took the measurement and declined the warrant. A creature that moved no nitrogen at all would be owed exactly the same, and an argument from usefulness holds only as long as the usefulness does — which is the trade offered to disabled people every time our worth is priced in contribution. Five more refusals follow: not a superpower, not solved, not proof that whales navigate by the stars, not a metaphor for staying the course, and not an argument that mystery beats explanation. What the piece deliberately does not re-argue: magnetoreception, which No. 30, No. 35 and the migrating field guide have already spent on birds, turtles and salmon — this is the case where that family of answers does not close. And No. 30’s whale pump is the vertical flux; this one is the horizontal one, and spread ten hands the vertical back to Helen along with the intra-action reading it borrows from her, after Barad (2007). The video that prompted the piece is named in the colophon as a lead, not a source.

2026 · September 6

A fourth drawing sheet — and the scale it was built around turned out to be unbuildable, so the page publishes that instead

The Glimmery joins Easter Eggs as the fourth “-ery” sheet, after The Hatchery, The Quillery and The Bow-ery. Ten faint lights that somebody has actually measured, from a single photon to a galaxy most people can no longer see — and a fourth small door at the foot of the front page to reach them by.

NewTen glimmers, each with one checkable thing under it

Humans can report a single photon. The sky is never dark, because ozone and hydrogen make hydroxyl glow at 87 km all night with no sunlight on it. The zodiacal light emits nothing — it is sunlight off dust. The gegenschein is 1.3× the ecliptic minimum and the grains making it are darker than asphalt. Noctilucent clouds sit at 83 km, lit by a sun that has already set for everything below them. Foxfire runs on a temperature-compensated circadian clock and is calling insects, because there is no wind under a canopy to carry spores. A dinoflagellate answers a touch in 15 milliseconds. Cherenkov blue is a shock front at 48.6° and breaks no rule — what it outruns is light in water. Synchronised fireflies get an 82 per cent response where unsynchronised ones get 3. And the Milky Way is hidden from more than a third of humanity.

MethodThe sheet’s organising idea failed halfway through, and the failure is the last section of the page

Every “-ery” sheet holds one thing constant. The plan here was the Bow-ery move transposed from angle to brightness: ten glimmers on one logarithmic strip, faintness comparable by eye instead of taken on trust. It cannot be done honestly. Only four of the ten are diffuse surface brightnesses quotable in the same unit; a noctilucent cloud is normally reported as an albedo, a single photon is not a brightness at all, and a mushroom, a reactor pool and a dinoflagellate are objects whose apparent brightness depends entirely on how far away you stand. Six of the ten numbers would have had to be invented. So the constant moved from the source to the detector — every plate now carries the same block of rods from the 1942 visual threshold — and the abandoned premise is published as the page’s closing argument rather than quietly replaced.

MethodNothing on a sheet about faint light is drawn faint

The obvious way to draw ten glimmers is dimly, and it is wrong twice. On a screen, faintness is a claim about a brightness the reader set. On paper — where this collection expects to be printed — the whole sheet inverts and a faint mark becomes an invisible one. So faintness here is carried by printed numbers and by the rod block, never by low-contrast ink. That is the house rule about opacity not being a hierarchy tool, arriving from a direction nobody expected it from.

Fact-checkThree claims cut for want of a primary, one date left unresolved, and one P value printed as it stands

All ten claims trace to a primary or to a named peer-reviewed review. Three did not and were cut, and the page names all three: that airglow is the brightest natural component of a moonless sky; that Joshua Childrey first described the zodiacal light in 1661; and the light-pollution atlas’s regional splits (60 per cent of Europeans, ~80 per cent of North Americans), which are the paper’s own but reached us only through news coverage. One date is left open on the page’s face: Cassini’s zodiacal work is popularly dated 1683, and the review we actually read lists it as 1693 — the plate prints what the source prints and says why. And the single-photon result carries P = 0.0545, on the wrong side of the line those papers conventionally draw. It is on the plate in that form rather than swapped for the stronger confidence-restricted figure. A sheet about the edge of detectability has no business being confident about where the edge is.

SiteTwo new doors — including one the Hatchery never had — three stale counts, and the gates

The new door on the front page is a patch of sky holding one star, which fills in with forty-four more across three staggered tiers when you hover it — dark adaptation, compressed, which is the thing the page behind it is about. Text label, keyboard focus, reduced-motion opt-out, hidden in print, like the others. And a door the Hatchery turned out never to have had: the egg at the head of that row opens the Easter Eggs collection, not the sheet — so for four sheets there were only three doors, and the one page that is a specimen sheet for that very egg could not be reached from it. Its own door is now the second of its twelve, The Yolk Is a Star, reproduced from the sheet rather than redrawn so it cannot drift from the plate it opens, and reaching its rays out through an unbroken shell on hover — that egg’s own argument, and deliberately not a second hatching gesture next to the first. The Hatchery’s description had been claiming a door “at the foot of every page” since it shipped; the doors are on the front page only, and it now says so. Three stale counts were corrected on the Easter Eggs page in the same pass: its heading and both social descriptions said six eggs against seven cards, having gone stale when the Bow-ery shipped and gone unnoticed since. Two print faults were caught by probing computed fills under print emulation, and the second was our own fix making it worse. Synchrony draws its two rasters in different colours on purpose — gold in step, lilac out of step. Gold is on the shared print sheet’s inversion list and prints as ink; lilac is not, and printed at about 1.9:1, so the paper copy showed a full top raster against a nearly blank bottom one and read as “out of step means no flashes.” The flashes are identical in both conditions and only their timing differs — the plate would have printed the opposite of its own finding. Then the first attempt at protecting the rod block printed the ~486 dark rods at about 1.1:1, because the bed’s alpha sits on the pattern’s circle rather than on the rect and the two multiplied — fourteen lit dots with no denominator behind them. Neither is visible to any gate, because the contrast checker measures text and both faults are on circles. Rendering the plates before writing the page caught five more no gate could see — a caption running through a foot label on nine plates, an arc crossing its own headline, a label off the left edge, and the Cherenkov cone drawn at roughly 20° when the shock front stands at 48.6°, now generated from the refractive index so the tangency is true by construction rather than by eye. All eight gates at zero; sitemap updated and search index rebuilt. Eggs are excluded from What’s New by design — a listing announces, and an announced egg is not off the path.

2026 · September 6

A second Trigger, on the ocean — and the convention it was opened to test survived, except in one place

Advice to a Young Marine Biologist joins Triggers as Trigger No. 2. Six mechanisms in the water, three tipping points graded by how settled they are, and twelve responses on the readiness scale — written for one person who is studying to do this for a living, and published because the position is not unusual.

NewFive things happening to the ocean, and a sixth that happens to the person watching

Marine heatwaves have very likely doubled in frequency since 1982, and 84–90 per cent of those between 2006 and 2015 are attributable to anthropogenic warming. Acidification crossed its planetary boundary by 2020. The open ocean lost 0.5–3.3 per cent of its oxygen over the upper 1000 m. Species are moving poleward at 52 km a decade — two hundred kilometres over a working life. Then the sixth, which is Daniel Pauly’s 1995 shifting baseline syndrome, quoted from the one-page original: each generation of scientists takes as its baseline the state of things at the start of its own career. The reef you first dive on will feel like a reef.

MethodA third answer to who has to act, and the way it can lie

Trigger No. 1 marked every response individual or structural. Neither fits a person choosing what to do for a living, so the marker set gains a third value, vocational, recorded on the collection page where the convention lives rather than only inside the piece using it. The new marker’s failure mode is named before it happens: a vocational column is an efficient way to tell a young person their career will fix a structural problem, which is the personal-footprint error in a lab coat. So the ladder opens with the structural entry that sizes every other one — the IPCC’s “coral reef restoration options may be ineffective if global warming exceeds 1.5 ºC” — and says outright that nothing in a marine biologist’s toolkit substitutes for cutting emissions.

SiteThe provisional note on the Triggers page is retired, and the paragraph that set the test is kept

Triggers opened at one member on 4 September, breaking the two-member floor for the third time, and said on its own face that it was provisional until a second issue showed the grading convention surviving contact with a different problem. It has. The original paragraph stays where it was, because the test it set is the thing that was passed — and what did bend is more interesting than what held: the readiness scale needed no change, the who marker needed a new value. A convention that survives a second use completely untouched has probably only been used once in two costumes.

Fact-checkWe named three sources we could not reach — and naming them is what got them read

Four IPCC Summaries for Policymakers were read directly, six papers read at source, and Pauly’s 1995 page read in full. Three sources were out of reach and the page said so on its face: the Armstrong McKay 2022 Science paper refused the request, the Global Tipping Points Report 2025 had been used only through institutional releases, and Marshall et al.’s Reef Grief sat behind a publisher wall with its figures deliberately left off the page. All three arrived mid-build, and the tipping-point section was rewritten from the papers themselves. Stating a gap is not a consolation for having one; here it is the thing that closed it.

CorrectionWhat reading the primaries changed — including which ocean current this page says is close

Two of the three gaps were not merely sourcing gaps. The near-term North Atlantic tipping element is not the AMOC. Armstrong McKay et al. put Labrador–Irminger Sea convection at a best estimate of ~1.8 °C (1.1–3.8), high confidence, over about ten years — against the AMOC’s ~4 °C (1.4–8), low confidence. A lower threshold, a faster transition and better confidence, on the system nobody has heard of. The full report added a marine tipping system the draft had missed entirely (kelp forests, local-scale, high confidence, urchin barrens as the mechanism) and revealed that the headline coral threshold moved from ~1.5 °C to 1.2 °C between 2022 and 2025, which the page now prints as a movement rather than as a number. “Confirmed at the abstract” turns out not to be a small discount on “read in full” — none of that was in an abstract.

Fact-checkAnd the gap that stayed a gap: a page titled as new research on marine conservationists’ mental health is not that

A summary indexed as “new research on the mental health consequences of working in marine conservation” was about to be cited for a striking figure. Read properly, it describes a review with no original survey, a study of residents, tourists and tourism operators rather than professionals, and a study of atmospheric and environmental scientists. There is no survey of marine conservation professionals behind that headline. Reading the paywalled paper closed the sourcing question and confirmed the absence rather than filling it — so the Reef Grief figures are now printed with their real populations named (53.5 per cent of residents, 22.9 per cent of fishers, and the authors’ own caveat that it rests on a single survey item), and the missing study stays in the held section. The title of an aggregating page is a claim about its contents, and has to be checked like any other claim.

SiteWiring, and the gates

Triggers goes from one piece to two, with the hero-count, the meta description and the colophon line updated with it, plus the front page’s section intro. The collection page’s cards were also switched from newest first to series order, because the prev/next chain follows collection order and the two were about to disagree. The new issue takes the last chain slot, so Overshoot now links forward to it. All eight gates at zero — including one real catch, an SVG label sitting on its own bar at 2.4:1, and one the card-order gate caught: this collection page had shipped saying newest first while holding a single card, where nothing could disagree with it — sitemap updated, search index and What’s New rebuilt.

2026 · September 5

A Mission page, because the collection had one for what we hold and none for what we are trying to do

What We Are For joins Foundations as its eleventh piece and the first link in its chain. Eleven aims in four groups, each naming the page where it is already being kept — then how this site serves the Stimpunks Foundation’s mission, and the half of that mission a website cannot do.

NewThe aims, and the pages they are already being kept on

The site has a page for what it holds (the Manifesto), for what it owes (the Creed), for how it is made (Starlight) and for how it connects (Cosmic Connections). It had none for what we are trying to do, which is the kind of absence that lets aims drift with nobody able to point at the drift.

So: belonging owed rather than earned, and variation as the rule at every scale; one settled fact followed honestly, every quotation traced to a primary, the checking published errors first, and science celebrated by being practised rather than by having its authority defended; hopeful news reported better than the coverage of it, the weekly scan published with what we declined, and no harm named without a graded ladder of responses; and the work done in the open, readable and printable and free. Every aim links to a page where it is already being practised, because a values list you cannot check against the work is the thing this page is trying not to be.

MethodA table of falsifiers, so an aim is something we can be caught failing

An aim you cannot fail is not an aim. The page closes on eight conditions a reader could observe from outside, with no access to our intentions: a quotation whose trail ends at an aggregator; a stretch of this changelog with no correction in it; a Glimmers entry resting on a press release alone; a Trigger that names a harm and stops; a count printed in prose that nobody can re-derive; a page that prints blank; a page whose sources no person read.

Most of those are not hypothetical. Forty-four of forty-six pages once printed blank; a Martin Luther King Jr. line shipped under James Baldwin’s name; the wood-wide-web story went into three pieces because it rhymed with everything we already believed; a sentence out of this repository’s own working notes was promoted to “our masthead” and then argued against. Each is already in this changelog under its own date, with the name of whoever caught it.

SiteWhat a website cannot do for a mutual-aid mission, said on the page

The second half reads the Stimpunks mission sentence into its three verbs — live with dignity, challenge dehumanizing systems, design environments that honor difference as strength — and puts this site under each. Then it marks the limit rather than blurring it. Stimpunks’ first sentence is about direct support and mutual aid, and no zine here has paid anybody’s rent. Direct financial support, mutual aid grants, creator grants and living wages are the foundation’s programmes; this site is the public-tools half, and counting it as the other half would be doing the thing these pages criticise.

All three Stimpunks sentences are quoted verbatim from the mission page and the about page, read directly rather than from a summary — an organisation’s own site being the primary source for its own statement of purpose. The reading of that sentence into three verbs is ours and is marked as ours.

SiteWiring, and the gates

Foundations goes from ten pieces to eleven, and every count on that page was updated with it — the hero-count, the body prose, the meta, og: and twitter: descriptions, the JSON-LD and the colophon line, plus the front page’s section intro. The new page takes the first chain slot in the collection, so Foundations now links forward to it and the Manifesto links back to it. All eight gates at zero, sitemap updated, search index and What’s New rebuilt.

2026 · September 5

A What’s New page and an RSS feed, both generated, because a hand-kept list of 150 pieces is a stale list

This page tells you why something changed, at length, and that is what it is for. It is a poor answer to what came out this week. What’s New is that answer: every piece newest first, title and the line it leads with, nothing else. The RSS feed is the same list, so you don’t have to come back and check.

SiteBoth files are generated, and that is the whole design

The longest standing lesson on this site is that a number written out in prose goes stale and no gate can read it — one sweep found roughly two dozen wrong counts across seven pages. A hand-maintained “what’s new” list is that fault with a publishing schedule attached: wrong the first time somebody ships a piece and edits one of two places.

So tools/build-whats-new.mjs derives every fact from two sources that cannot drift from the site. Titles and taglines are lifted from the collection pages’ own .card blocks — the same map check-markup.mjs builds to verify badges, so the page and the gate agree by construction. Dates come from git log --diff-filter=A: the day a piece first went live at its own address. Neither is a list kept inside the tool, so there is no second answer free to rot. --check exits non-zero when either output is stale, matching the convention the search index already uses.

MethodThe Easter Eggs are not in it, and that is the point of them

Easter Eggs has no section on the front page because a listed egg is not off the path. A What’s New page is a listing and a feed is a listing pushed to people, so the seven eggs appear in neither. They stay in the sitemap, in the search index and in all eight gates exactly as before — findable, never announced. The tool prints the exclusion on its own line, so a number that grows is a number somebody can question.

CorrectionOne date git gets wrong, and it is written down rather than quietly patched

Glimmer Wire, edition one was published on 2 September and its file was created on the 4th, when the single page was split into one page per edition. Git can only see the file. The tool carries exactly one date override, with the reason on the line above it, and prints the count of overrides every run — the same shape as the watermark exemption in the contrast checker and the hook list in the dead-class checker. An override should be a decision somebody wrote down, not a mechanism to fall into.

CorrectionThe new page found a real hole in the search index

Every tagline on What’s New is already indexed on the card it was lifted from, so the listing is a duplicate presentation and belongs in CHROME_SEL alongside the playlist row list and the front page’s jump strip. Stripping it exposed a gap that had been there all along: textOf() removes chrome from its own clone, which handles chrome inside a chunk — but the chunker selects from the live document, so a chunk inside a chrome container was still indexed. The listing’s 33 <section> elements were excluded from the coverage denominator and indexed anyway: 34 records at 3000% coverage, a figure only visible because the run prints coverage per page. Step 3 now skips a chunk whose ancestor is chrome, which segmentByHeading() had always done. Verified as a no-op elsewhere by diffing every record against the committed index: 174 pages byte-identical, the only change the front page’s new masthead link.

SiteWiring, and the gates

whats-new.html is site furniture like Search: no collection badge, no card, outside the reading chain, reached from a new masthead pill. It joins the short, explicit exempt list in check-markup.mjs rather than being caught by a rule. Feed autodiscovery sits in the head of the front page and of What’s New. All eight gates at zero, and the page indexes at one record and 100% coverage — its own prose, none of the borrowed list.

2026 · September 5

The UN voted to change the world map, every headline got the reason wrong, and the resolution itself did not

Which Distortion is the fifth entry in Glimmers, written the day after the General Assembly adopted the “Correct the map” resolution 164 to 1. It is the news companion to You Cannot Flatten a Sphere (No. 44), which shipped three weeks earlier and needed no changes.

NewEqual Earth is not a more accurate map, and A/80/L.104 never says it is

Every outlet reported the vote as a swap to a more accurate projection. That is the one claim Gauss’s Theorema Egregium forbids: a sphere cannot be flattened, so every map trades away area, angle, distance or direction, and there is no undistorted map waiting for a more careful cartographer. Equal Earth is equal-area — it keeps size exactly and pays for it in shape, everywhere.

The resolution is more careful than its coverage. Read at the UN’s own document server, its preamble states that “no single projection can perfectly represent the curved surface of the Earth on a plane, and… each projection is therefore suited to particular purposes”, and it is “without prejudice” to navigational use. Its third operative paragraph claims only “a more accurate representation of the sizes” from “a relevant option”. None of which weakens the case — Africa really is about fourteen times Greenland, and area really is the property that matters for the job that map is doing.

NewThree equal-area maps, computed rather than drawn, that all disagree

The page’s one diagram is evaluated from each projection’s published equations. Gall–Peters, Eckert IV and Equal Earth each enclose exactly 4π square units and each has a local area scale of 1.000000 at every sampled point — and each pays a different price in shape: 2.00×, 1.40× and 1.35× at the equator.

Which turns up something the coverage missed. Gall–Peters — the map most people mean by “the fair map” — distorts shape worst at exactly the latitude the campaign is about. That is why three cartographers built Equal Earth in 2018, by their own account, after Boston Public Schools adopted Peters in 2017. And hours before the vote, France announced it was adopting Eckert IV instead: two supporters, one afternoon, two different equal-area answers. That is the consensus working, not failing.

CorrectionA sentence attributed to the resolution that is not in it

Al Jazeera reports the resolution as saying it “in no way challenges the use of the Mercator projection for maritime and aerial navigation, for which it remains fully suited.” That sentence does not appear in A/80/L.104. The document says without prejudice to the established practice with regard to the use of cartographic material for navigational purposes. The gloss is close in spirit and is not the text, so it is not quoted on our page as resolution wording.

Ukraine’s stated reason for abstaining is characterised from summaries of the meeting record rather than quoted, because we have not read the verbatim record. Said on the page, not only here.

CorrectionOne word for the US objection, where the whole statement was published

The page first reported only that the US representative “called the resolution ‘superfluous’”, following the Guardian. Ryan flagged the fuller remarks mid-build, which led to the primary: the United States Mission publishes its explanations of vote, so Yaryna Ferencevych’s statement can be read in full. The word “superfluous” is not in it, and it made a substantive objection sound procedural — the statement calls the resolution part of “a much larger and more radical ideological project” and such resolutions “barnacles on our work here”. Two paragraphs are now quoted verbatim instead.

Which turned up something checkable and worth having on the page. “Cognitive justice” is in scare quotes in the US statement, and it is the resolution’s own phrase — its preamble says correcting these distortions “constitutes an act of cognitive justice and memorial reparation”. The objection lands on language the document really uses. What it gets wrong is the premise that this was “presented as an anodyne effort” hiding something larger: the resolution states its reasoning on its own face, in its preamble. Both halves are on the page, because a piece about summaries losing what they were not built to keep should not summarise the one statement against.

CorrectionWe nearly put the error in Ryan’s mouth

A draft paragraph had Ryan clipping the “more accurate” framing on Friday night as his own belief, and then correcting himself. He had quoted it from another source as an example of wrongness. He caught it mid-build; the paragraph now says so. Recorded because the ledger is for our own errors first.

SiteA diagram that would have printed as three navy ink blocks

The figure’s map panels fill with a dark colour that the shared print stylesheet’s inversion list does not cover, and print flattens every stroke to the same grey — so on paper each panel would have been a block of ink with the graticule and the indicatrices lost inside it. No gate can see this: the contrast checker measures text, and these are shapes. Found by rendering the page under print emulation and reading the computed fill back off the elements. The panels now print white, and the indicatrices carry the heaviest line, since stroke width is the only distinction print leaves.

2026 · September 5 · later still

No. 88, a chain about a record with no words in it — and the title it was banned for was not the musician’s

The Name Was Already the Verdict is the fifteenth How We Got Here chain: thirteen links, nine documented, three contested, one leap. It spun out of the Indigenous punk rack shipped the same day, and the research changed it twice.

NewThe record was called Oddball

The Library of Congress essay for the National Recording Registry says plainly that stations banned Rumble “for its incendiary title.” And the title was applied afterwards, by somebody who had heard the record and thought of a street fight. The word that got it banned was not in the music, not in the session, and not the musician’s.

That discovery is what made the chosen title right, and we did not know it when we chose it. Two accounts name different people as the renamer — the Library of Congress says Archie Bleyer’s daughter and marks its own claim as legend; Rolling Stone says Phil Everly. Tagged contested and left there, because both agree on the part the argument needs: the name came from the listening side and was then treated as the record’s content.

CorrectionA pen through the tweeters, not a pencil through the speaker cone

The New York Times obituary and Rolling Stone both have Wray poking a pencil through the speaker cone, and that is the sentence that has travelled — into Wikipedia, into a hundred articles, and into our own first draft of the page.

Wray, quoted in Guitar magazine via the Registry essay: he used a pen, on the tweeters, and “I didn’t mess with the big speaker.” A more precise act than the version everyone prints — it is the high end he was after and he deliberately left the woofer alone. The smoothed version is easier to say and slightly wrong, which is this collection’s subject arriving inside its own sources.

MethodA figure declined, and it cost the zine a title

The claim that Harold Black’s December 1927 test cut distortion “by a factor of 100,000” is repeated widely. It is not in Ronald Kline’s 1993 IEEE Control Systems paper, which we downloaded and read, and we did not find its primary.

A Factor of One Hundred Thousand was a shortlisted title for this zine — it matches the collection’s numeric-title habit exactly. It was dropped because the number could not be traced, and the figure appears nowhere on the page. What Kline does give, and what the page uses, is the date, the Lackawanna Ferry, the blank page of that morning’s newspaper, and the problem statement.

NewThe link the chain would most like to have, refused

1954 gave the United States a working apparatus for judging a medium dangerous: Wertham’s Seduction of the Innocent, the Kefauver subcommittee hearings in New York on 21–22 April and 4 June, and the Comics Code. In 2012 Carol Tilley, working from an archive opened in 2010, documented that the case notes underneath it were falsified — ages revised, quotes distorted, causes omitted. Fifty-eight years unaudited.

It would be very satisfying to run a line from that to a programme director in Boston in 1958. There isn’t one. No federal body banned the record; stations declined to play it, privately. That joint is tagged contested and the spread says outright that deleting it leaves the chain standing — you lose the explanation of why 1958 was ready, and the explanation is good but not proved. A Burke chain is built to feel inevitable, which is exactly what the tags are for.

SiteWiring, gates, and two faults measurement caught

The reading chain extends to 153 pages, tail The Lizard That Was Never There → No. 88 → Star Gazing. All eight gates clean; the page indexes at 16 records and 100% coverage. The chain is registered in tools/gen-chain-spine.mjs as its own key rather than overwriting an existing one, and its tally, its cover line and its printed tags all read 13.

Both diagram faults were found by measuring, not by a gate. Both leader lines on the spread 9 figure started inside their own label’s text boxcheck-overlap.mjs cannot see that, because text over non-text is explicitly out of its scope. And two spreads used .spread-2col without .stacked, so their column classes styled nothing; check-classes.mjs did catch that one.

2026 · September 5 · later

Four dead embeds across the Sound shelf, and the rule that was supposed to catch them

Ryan opened We Were Punk First and two cards said Video unavailable. Both had passed the collection’s own embed check on the day they shipped — and both still pass it. Sweeping the whole shelf for what a reader actually depends on found two more, on racks that had been live for weeks.

CorrectionoEmbed confirms identity, not existence — so rule three passed a dead video

Rule three of the Sound collection says every embed is resolved through YouTube’s oEmbed endpoint before it ships, which returns the real title and channel for a video ID. That catches the fault it was built for: a card quietly pointing at a different recording. It is structurally blind to this one.

Both failing IDs return HTTP 200, with the correct title and the correct channel, today, while the player refuses to play them. The check was verifying that a video ID is what we said it is and never that it still works. All eight gates were equally blind, and correctly so — the markup is valid, the contrast is fine, the words are all indexed, the card is in the right place in the list. The rule has been corrected on the collection page rather than quietly patched.

FixedTwo more on racks that shipped weeks ago, found only because we swept all 269

Fixing the two Ryan saw would have left the shelf in exactly the state that produced them. The sweep found one dead embed on the Dolly rack (Linda Ronstadt’s 1975 I Will Always Love You) and one age-restricted video on the Bowie rack (The Stars (Are Out Tonight)) — and an age gate blocks embedded playback just as completely as deletion, while looking perfectly healthy from outside.

All four replaced, each with an official or institutional channel: KEXP for We Were Punk First, whose live take is the better card anyway — a demand read to a room is a different object from a demand on a record, and the note now says eighty seconds rather than ninety because that is how long the take actually is. The band’s own music video for No One Owns Anything and Death Is Real, from the company that made the Bad Indian video already on the page. Linda Ronstadt’s own channel. David Bowie’s own channel, for the album track rather than the restricted video.

SiteA ninth check that is deliberately not a ninth gate

tools/check-embeds.mjs asks each embed whether it still plays, and plays embedded. It reports age-restricted videos as failures, and skips /embed/videoseries playlist embeds, which have no single video to ask about.

It is an on-demand audit, not a ship gate, and the file says why. All eight gates are hermetic — no network, no third-party state — and check-sitemap.mjs names never touching the network as a virtue. This one asks a question about somebody else’s server, and the answer can turn red while nobody here touches anything. A red gate you cannot fix by editing the repo is a gate people learn to push past, which is how a gate stops being read at all. Promoting it is a decision somebody should make on purpose and write down.

Regression-tested against the actual broken state rather than synthetics: pointed at the four real IDs it names both the dead video and the age-restricted one, and stays silent on the playlist embed and on a working card.

MethodFound by a reader, which is the part worth recording

This site has eight automated gates and a rule written specifically about embeds, and the thing that found this was somebody opening the page and looking at it. The rule was not lazy — it was aimed at the failure mode we had already been bitten by, and a new one arrived from a direction it did not face.

Worth stating plainly because the shelf is 269 links to other people’s servers, and that number only goes up. Every rack added is more surface that can rot silently, on somebody else’s schedule, with every gate here green.

2026 · September 5

An eighth rack, on Indigenous punk and metal — and the shelf it sits on had three wrong numbers on it

We Were Punk First is thirty-eight recordings of Indigenous punk, metal and hard rock, with Gregg Deal and Dead Pioneers as its spine. It is the first rack on this shelf that argues with another rack, and recounting the shelf to add it turned up three published figures that were wrong — one of them wrong in two places by two different values.

NewA record with no words in it, banned for what people heard in it

Link Wray’s Rumble (1958) is an instrumental. No lyrics, no propositions, nothing anybody could point at — and radio stations banned it for inciting juvenile gang violence. Every listener who was frightened by it supplied the fright themselves, out of their own head, and then billed the record for it.

Wray was the son of a Shawnee mother, punched holes in his speaker cone to get the sound he wanted, and made the power chord so ordinary that people stopped hearing it as a choice. Pete Townshend said that without him he would never have picked up a guitar.

CorrectionOur own source was wrong twice, and the page prints both

The rack is built from Al Carroll’s Indigenous Punk (Microcosm, 2026), read in full. It states that Wray entered the Rock and Roll Hall of Fame in 2007. He entered in 2023, in the Musical Influence category, per the Hall’s own inductee record — eighteen years after his death, not two.

The same book names Dead Pioneers’ guitarist “Gregg Rivera” where he is Josh Rivera, and spells the singer “Greg Deal” at first mention where he is Gregg Deal. Neither error changes a claim the page makes. Both are on the page rather than quietly applied, because the sixteen-year gap is the argument for checking and not a footnote to it.

NewThe drumbeat everybody hears as Indian was sold by the page to silent-film organists

The tom-tom, four to the bar with a stamp on the first, over an open fifth: no Native tradition produced it. It is a concert-hall convention that hardened into a film convention, and by the 1920s it was a purchasable commodity — accompanists worked from cue anthologies indexed by mood and situation, of which Erno Rapée’s Motion Picture Moods (1924) is the canonical example. You looked it up while the reel was running.

Then listen to XIT putting Taos Pueblo drums on a Motown record and being kept off American radio while charting across Europe, and to 1876 covering the Black Lodge Singers’ children’s song “Mighty Mouse” as punk, with actual powwow drums, entirely unbothered.

NewA landscape does not silence a sound. It decides which parts survive

Air is a steep low-pass filter — distant thunder rumbles and near thunder cracks, same event, different amount of air. Fresh snow is one of the most absorptive surfaces in nature. And a temperature gradient bends sound toward the cooler air: down over cold ground, so a voice carries for kilometres; up over hot ground, leaving an acoustic shadow a short walk from the source.

Which is the punk rack’s overtones and the AURORA rack’s emission lines arrived at from the other side. Those two found a medium adding what is characteristic of it; this one finds a medium subtracting, and what it removes is just as characteristic. Marked a rhyme rather than a proof, as all three are. The collection page now reads three pages, one piece of physics, and still prints the Bowie rack’s refusal to join in.

CorrectionThree counts on the Sound collection page were wrong, and one was wrong twice over

The distinct-title figure could not be reproduced by any method we tried. The page published 182; our own fact-check ledger records 181 for the same set; case-insensitive matching gives 193. The 2026-08-27 ledger row names the cause outright — the number had been carried forward by delta from a base our normaliser already disagreed with, twice. It has now been replaced rather than incremented, and the page states its method: 231 distinct titles counted case-insensitively, 264 distinct song-and-artist pairs. The pairs method was validated by reproducing the existing figure exactly before it was trusted.

“The shelf is 146 embedded videos” was never an embed count. 146 was the card total on 26 August, and it was two racks stale besides. Derived: 269 embeds across 268 cards — the odd one out is a video inside the AURORA essay rather than on a card. And rule two’s “a hundred and twenty-one reasons” was the four-rack collection total from 12 August, used in a sentence about how long a single rack may get; it is now the longest rack, forty-four.

Every figure on the page was re-derived from the card markup rather than incremented: eight racks, 268 cards, replacing seven racks, 230 cards in six places including the og: and twitter: descriptions that a link unfurl quotes. No gate can read a number written out in a sentence, which is why this keeps happening and why the method is now printed next to the number.

MethodWhere we stop, and why the page says so out loud

The source book applies its own blood-and-culture test for who counts as Native and runs identity verdicts on named musicians. The rack reports his findings as his and extends none of them, says his criteria are contested including inside Native communities, and runs no verdicts of its own.

Three claims were declined rather than shipped, and the page prints the declining: Carroll’s attribution of the Hollywood idiom to Russian immigrant composers is not asserted; the positive description of powwow drumming is left to the people who play it; and two standard monographs are named as the route to settling the rest and not cited as though we had read them. The machine transcripts we worked from are visibly imperfect — one places the Argentine group Tacuara in Chile — so Deal is quoted from an edited published interview in preference to any of them.

And the refusal that took the most care: colonisation is not a figure of speech for neurodivergence. The structural rhyme — being handed a portrait made by other people and then graded on how well you match it — is real, narrow, and belongs to the reader. Deal has said publicly both that people connect to Bad Indian through their own not-measuring-up and that he accepts no duty to educate anybody. Both halves are on the page; the second half is the one that usually gets dropped.

SiteWiring and gates

The reading chain extends to 152 pages with no mismatches, Skepticism and Wonder → We Were Punk First → Print. 155 of 155 badges across sixteen collections. All eight gates clean, and the new page indexes at 55 records and 100% coverage.

All 38 video IDs went through the oEmbed endpoint before a word was written about them — 38 of 38 returned the expected title and channel. The embeds are youtube-nocookie, matching the newer racks rather than the older ones. No lyric is reproduced anywhere on the page, which is worth stating because most of this material is spoken word and unusually quotable.

2026 · September 4 · later still

A sixteenth collection, for bad news that comes with a way out — and its first issue, on the 1.5 °C overshoot

Triggers is bad news from a dying planet, and what we can do about it — the deliberate mirror of Glimmers, which this site already defines as “simply the opposite of a trigger.” The first issue is Overshoot: why 1.5 °C is not a small number, and eleven responses graded from deployed to speculative.

NewEvery response carries a readiness grade, and that is the whole point of the collection

The defect in every list of climate solutions is that it puts loft insulation next to direct air capture as though they were the same kind of object. So each response here is graded deployed, scaling, demonstrated, proposed or speculative, and marked individual or structural — the same job How We Got Here’s documented / contested / leap marking does for a Burke chain.

A grade is about deployment, not merit, and the page says so. Afforestation is graded deployed and is nearly useless at the scale required. Sustained net-negative CO2 is graded proposed and is the mechanism every “we can return to 1.5” sentence quietly depends on.

NewFive reasons a number that sounds like nothing arrives as fires

It is a global mean over a planet 71 per cent ocean — at a global 1.09 °C for 2011–2020, land was already at 1.59 °C. It is a twenty-year running average, so 2024 at 1.55 °C was the first calendar year above 1.5 and was not a crossing. Extremes move further than the mean, and rarer extremes move furthest: the once-in-fifty-years hot day over land becomes 8.6× more frequent at 1.5 °C and arrives 2.0 °C hotter, against 4.1× for a once-in-ten-years event.

The ice age was 6.1 °C colder in the global mean, which makes 1.5 a quarter of that distance travelled in a century and a half. And the surface figure is a receipt: the Earth system absorbed 381 zettajoules between 1971 and 2020, 89 per cent of it into the ocean and 1 per cent into the atmosphere — the part the thermometers read.

MethodReading the coverage produced the figure that reframes the issue

The issue was drafted from the UNEP report itself — all 68,000 words — and the IPCC’s AR6 WGI Summary for Policymakers, read directly. Ryan then supplied the two pieces of coverage, and reading them changed the page.

The report’s summary leads on 1.8 °C as the optimistic peak. The coverage carries the other number: current policies give 2.6 °C by 2100. Which reveals 1.8 as the good outcome rather than the forecast — and 1.8 is also, six pages later in the report, the level beyond which returning to 1.5 this century “becomes increasingly challenging.” The best case on paper lands on the edge of recoverable.

It also produced Mirey Atallah’s boiler analogy, which independently states the fifth mechanism from the report’s own coordinator, and two dissents from scientists not involved — kept because they disagree in opposite directions. And a headline-versus-source gap: the coverage is headlined “the 1.5 C threshold is lost,” while UNEP’s executive director, quoted inside that same article, says it “is still the goal,” to be approached from above. The body is accurate; the headline is not.

CorrectionOne of the questions this issue was written to answer is the wrong question

The brief asked how do we re-home climate refugees. The report answers by rejecting the framing: “Pacific Islanders have explicitly rejected the framing of ‘climate refugees’”, and both Pacific and Caribbean island communities have consistently expressed a preference to remain in place, with relocation a last resort.

Where movement does happen, the IPCC finds with high agreement that the degree of agency people retain over if, where, how and when they move is what determines whether mobility is adaptation or an additional harm — while consultation “remains very limited in practice, including with populations whose movement is being planned.” The report turns that into its own question, and the entry adopts it: “whose relocation is it?”

MethodThe two-member floor broken a third time, and graded as the weakest of the three

Easter Eggs broke it because the absence of an index section is its mechanism. Glimmers broke it because a running log is defined by its cadence and cadence cannot be observed retroactively. This break is weaker than both, and the collection page says so on its face: a convention cannot be demonstrated by a single instance — one graded ladder is a page, not a form.

It was opened anyway because the grading scale needed to be written down somewhere that is not inside the only piece using it; a convention held in one page’s head gets reinvented differently next time. The page calls itself provisional until a second issue, and states that without one it is the record of a form that was tried once.

SiteWiring and gates

Sixteen collections now, 154 of 154 badges. The reading chain extends to 151 pages with no mismatches, tail Shorthand Evolution → Triggers → Overshoot. A #triggers pill joins the front-page jump strip.

All eight gates clean. One figure fault was found by measuring rather than by a gate: the 39.2× label on the extremes chart sat inside its own bar rather than after it. check-overlap.mjs cannot see that by design — text over non-text is explicitly outside its scope — and the contrast pass was right to allow it, having correctly composited the bar behind the label. Fixed by rescaling the bar area, re-measured at exactly 8 px clearance for all five value labels.

2026 · September 4 · later

Two varieties of one pepper, the same solar panels, and two opposite answers — neither of which is the failure

Two Peppers is Zine No. 87, in Star Stuff: fourteen spreads, two figures, six refusals. Built from six agrivoltaics papers Ryan added to the SKS on 4 September, and then from the primary behind the one that mattered. The finding the reviews had smoothed away is the one the zine is built on.

NewThe light saturation point, and the surplus a panel can take for free

Photosynthesis climbs with light and then flattens, at a point that is specific to the species. Past it, more photons change nothing — the light-harvesting reactions are already full. Stallknecht and colleagues (Scientific Reports 13:1903, 2023) measured basil yield rising between roughly 6 and 12 mol m⁻² d⁻¹ and then not improving further, against an unshaded control near 20.

Which makes shade a dial rather than a verdict. As the Fraunhofer group put it in a technical handbook: “if the shading rates are adjusted accordingly, it is theoretically possible to grow all crops in an agrivoltaic system.” There is no unsuitable crop; there is a ratio nobody adjusted.

NewGoing to the primary put back the result that mattered

The review chapter reports the Arizona experiment as “chiltepin pepper and tomato showed a yield increase of 150% and 90%.” Fair enough as a summary — and it drops the third crop entirely. Read at the authors’ own manuscript (Barron-Gafford et al., Nature Sustainability 2:848–855, 2019, via the US Department of Energy’s open deposit, because the publisher’s copy sits behind an authorisation wall):

Chiltepin, the wild variety of Capsicum annuum: carbon uptake +33%, fruit three times greater. Jalapeño, the domesticated variety of the same species: carbon uptake −11%, water-use efficiency +157%, and roughly equal fruit on 65% less water. Cherry tomato: +65% uptake, fruit doubled.

One species, two strategies, and no way to rank them that does not begin with an arbitrary choice about whether you are short of land or short of water. The panels themselves ran about 8.9 °C cooler over the transpiring crops than over bare ground — which is the thing the zero-sum framing has no axis to express.

NewTwo papers in the same drop contradict each other, and the contradiction is the argument

Cherry tomato doubled under Arizona panels. In a Michigan greenhouse, Stallknecht and colleagues found tomato yield linear in daily light with no upper asymptote at all — every photon removed cost fruit, with the best coverings still 25% and 37% down on yield and 52% and 74% down on ripe fruit at harvest.

Neither measurement is wrong. In the desert, heat and water were scarce and shade removed a burden. Under glass, light was scarce and shade removed the supply. Shade tolerance turns out not to be a property of the plant at all — it is a property of the plant and the place, and it changes sign when the place does.

MethodWhat the field says about itself, printed rather than skipped

Spread eleven carries the costs in the reviewers’ own words: Weselek and colleagues write that the technology’s practicability and impact on crop production have hardly been investigated; Zahrawi and Aly report a contradiction between ASCE wind standards and wind-tunnel results, with a named knowledge gap on wind-load mitigation — for structures partly sold as climate adaptation; and Alves and colleagues screened 308 publications and found twelve on policy instruments. A corn result that looked surprising is printed as an unresolved oddity rather than as evidence, because its plot was 100 m² and the authors say so.

And one source we could not use is named on the page. The IISD report Agrivoltaics in India was in the reading pile, but the copy available to us contains only front matter — a title page and a JSTOR notice, no report body. Nothing in the zine draws on it, and the piece would have been better for having it.

SiteWiring, counts and gates

Star Stuff goes 38 pieces to 39, and its derived line — total minus the seven founders — from thirty-one of these pieces were made much later to thirty-two. The chain now runs No. 86 → No. 87 → How We Got Here, edited in both directions.

All eight gates clean: markup, sitemap, card order, contrast (0 screen / 0 print across 392 elements including 20 SVG labels), overlap (0 collisions, 0 clipped), dead classes (0 of 419 uses). Search index rebuilt — 14 records at 100% coverage, one per spread, and the front page went 161 records to 162 rather than merging the new card into its neighbour. Both figures were rendered standalone and looked at, and every label’s geometry measured with the spreads revealed — because a diagram that means the wrong thing is invisible to every gate here.

2026 · September 4

Glimmer Wire is a collection now, one page per edition — because two editions on one page was already a wall

A running log on a single page grows without bound, and the second edition had already buried the first. Glimmer Wire is now the fifteenth collection here, with each edition on its own page: 2 September and 4 September. The old single-page address permanently redirects to the collection. Nothing was rewritten in the move — both editions keep their text, their grades, their amendments and their anchor ids.

NewA fifteenth collection, and a fifth sorting axis: issue

The five register collections sort by the kind of argument a piece makes. Field Guides and How We Got Here sort by form. Print and Sound sort by medium. Glimmers sorts by occasion — something happened on a particular day. This one sorts by issue: a member is here because it is edition N of a serial, and its identity is the date it went out.

Editions are therefore dated, never numbered, for exactly the reason Glimmers entries are: the zine numbering says when and is referenced by number across the changelog, the fact-check ledger and years of prose with no redirects, so a serial inserting itself into that sequence would make the numbers mean two things. The collection page carries the argument, the grade definitions, and the reason Held is the section that earns the whole thing.

SiteWhat the split costs, said on the page rather than left to be noticed

An edition no longer sits in the immediate company of the one before it, and this scan makes cross-edition observations on purpose — the same held item declined twice so the pattern is on the record, a lag distribution confirmed by a second data point. Those are now links rather than a scroll, which is a real loss and is named on the collection page.

What it buys: an edition a reader can finish, a URL that means that week, and an archive still navigable at fifty editions instead of collapsing under them. The editions carry prev/next to each other — a local order through the archive, not a link in the site's global reading chain, which Glimmer Wire stays outside of for the same reason every working paper does.

MethodA ruling on an open question, and one collection loses a member

CLAUDE.md had listed glimmer-wire.html as one of two pages sitting outside the reading chain with no reason recorded — deliberate or not, nobody had written down which. That is now ruled and written down: Glimmer Wire is off the chain on purpose, because threading a weekly scan between two zines drops a maintenance document into the middle of somebody's reading. One open question left on that list.

Notes & Rationale goes from six working papers to five, and says on its own face that one moved out and why. It is also no longer the only collection page off the reading chain. Six member counts on that page were corrected in the same pass — the hero, the tier list, the off-chain paragraph, the colophon and a source comment — which is the standing counts lesson arriving exactly where CLAUDE.md says it will.

SiteTen inbound links repointed, so nothing relies on the redirect

A redirect is a safety net, not a fix. Every internal link that pointed at the old page now points at the edition it actually meant: seven in this changelog, one in Until There Were Ten, and the cards on the front page and in Notes. The two deep links — into edition one's Held section and its Kanzi seedbed entry — were rewritten in place, because a Netlify redirect does not carry a fragment.

The front page gains a Glimmer Wire section with its own accent and a fifteenth jump pill in the masthead strip. sitemap.xml trades one entry for three. Both editions keep every anchor id they shipped with, suffixes included, so an external link into a specific entry still lands on that entry.

2026 · September 4

The block lifted, we read the papers, and the two worst errors turned out to be ours rather than the coverage’s

The network restriction behind the edition above was widened hours after it shipped, so every source was tried again. One item upgraded to verified. Five stayed where they were. All six were corrected. That ratio is the honest result of a verification pass and it is the opposite of the one you would hope for: what reading primaries mostly buys is not confirmation, it is a list of things you had wrong. Two of the corrections are not the press releases’ fault at all — we misread a paper’s title, and we described a physics result using the wrong physics.

CorrectionWe built a correction on a grammatical misreading of the title we were correcting

The Science macrophage entry said the coverage’s “reverses ageing” overreached, because “the paper’s own title claims the impairment limits organ ageing.” The title is “Restored clearance of senescent neutrophils by tissue-resident macrophages limits organ aging.” The subject is the restored clearance — so the title says that restoring the clearance limits ageing, which is a good deal closer to the coverage than we allowed. The abstract then closes on impaired clearance as “a reversible driver of organ decline in aging.”

We had the grammar backwards and reprimanded a science desk for it. The entry now says so in place of the complaint. Two things came out of the same abstract: the paper has a human arm after all — elevated EP2 and senescent neutrophils observed in aged and diseased human tissue, with no human intervention — and the mouse ages and dosing duration we printed appear nowhere in it, so they are struck from the entry rather than carried on a summary. The withheld author list is resolved: the ordering we distrusted was right, and all thirteen names are printed.

CorrectionWe complained that a press release conflated two things, using the same conflation

The Nature Materials entry opened: run a current through a conductor, put it in a magnetic field perpendicular to the sample, and a voltage appears across the sides — that is the Hall effect, discovered by Edwin Hall in 1879, hence “century-old.” Then it reported this paper as finding that voltage with the field in-plane. It does not. The paper is about the anomalous Hall effect, which arises from the material’s own magnetisation and from symmetry, not from an applied field. Nothing in it touches Hall’s 1879 result or the sensors built on it. The paper stacks a low-symmetry semimetal on a ferromagnetic insulator so that a single mirror plane survives, breaks that symmetry with in-plane magnetisation, and gets a Hall response tracking both magnetisation components — offered as “a pathway for engineering tunable, symmetry-driven Hall effects.”

The flagged open question is answered, and in our favour: the prior in-plane literature exists in force. Papers reach back to 2022, with independent observations published in 2024 and a run of further work through 2025 and 2026, including a unified symmetry framework at the end of July — all now cited by number in the entry. So “century-old assumption overturned” is release language and appears nowhere in the paper. Being right about the release did not stop us reproducing its error one paragraph earlier.

CorrectionThree dates that describe cooling in sediment cores, not encounters with clouds

The heliosphere entry printed 13–14, 6–7 and 2–3 million years ago as the times the solar system crossed cold interstellar clouds. Those are not cloud encounters. They are stepwise cooling intervals read out of deep-sea sediment cores — the independent half of the argument — and the review says their driving mechanisms are “subject to ongoing debate” and that such cooling might be triggered by heliosphere collapse. Getting it backwards turned a proposed correlation into a reported observation, which is the specific move this page exists to refuse.

Two more, from the same abstract. It is not a group: the review has a single author, Merav Opher, who directs NASA’s SHIELD centre — we had written “a NASA-funded group.” And the superflare and nitrous-oxide strand is not in this paper, which we had filed as a “companion strand” of it; the review’s stated span is the Sun’s last ten million years, and almost certainly a second piece of work was folded in by the summaries. It has not been identified, and the entry says so. The title, author, volume, pages and DOI were all filed as not obtained and are now printed. On the figure: nitrous oxide is 273 times as warming as carbon dioxide over a hundred years, per IPCC AR6 — not 300, and the real defect was never the digit but the missing timescale.

VerifiedThe bats paper was open access all along, and two of its headline numbers are not in it

Upgraded from plausible to verified, read in full in PubMed Central, and it supplies the DOI the entry had been missing: Science Advances 12(31), eaeb6714, 10.1126/sciadv.aeb6714. The eight-author list and the date we filed from summaries were exactly right. Two of the claims were not.

“The largest bat family at more than 500 species” is nowhere in the paper. It calls Vespertilionidae the largest family and gives no number at all; the only count it prints is “over 1,500 known species of bats,” which is the whole order. The measured figures are 26 species carrying dual immunoglobulin heavy-chain loci on separate chromosomes, with one — the big brown bat Eptesicus fuscus — confirmed functional by single-cell transcriptomes, both loci generating diversity by different mechanisms. Our phrasing implied a family-wide trait. And the virus-tolerance explanation is not the authors’ claim: bats as reservoirs is the paper’s opening motivation, and its conclusion is “a foundation for analysis of humoral immunity and pathogen response in bats.” We had attributed the coverage’s framing to the group, in an entry whose own caveat was about being careful with verbs.

CorrectionThe tubes were photographed; the trading was inferred from gene content

The Asgard entry said the archaeon was imaged in contact with bacteria “joined by nanotubes and apparently exchanging material.” The imaging shows the connection — through tubular fibres assembled by the bacterium, not jointly. The exchange is inferred from complementary genomes: the archaeon can make hydrogen, acetate, formate and sulfite, the bacterium makes amino acids and vitamins, and the paper’s verb is that these “could be exchanged in a syntrophic partnership.” We had a genomic inference standing where an observation should be. We also said the group reported isolating the archaeon; it reports a highly enriched culture at 89%, which is not an isolate.

Everything the entry had withheld is now obtained: the DOI, the full fourteen-author list, the volume and pages, and both species names, which are printed for the first time — the archaeon Nerearchaeum marumarumayae and the bacterium Stromatodesulfovibrio nilemahensis. The 9 April 2026 date we filed from a summary is right.

CorrectionAn Ediacaran animal’s lag was nine days, not one, and the poison story was ours

The Conotubus entry printed its lag as “1 d, a floor,” because no online-first date could be found and the issue date had to stand in. The online-first date is 24 August 2026, so the lag is a measured 9 days. Three claims corrected with it. The proxy is molybdenum — extremely low δ98Mo in pyritised fossils — and the sulfur isotopes do a different job, showing that pyritisation preserved the original signal and that microbial sulfide oxidation was going on in the habitat; we had both isotopes doing the same work. The bacteria drawing down a lethal sulfide load is not in the paper; that was a summary’s addition and we repeated it. And the paper’s modern comparison is cold-seep tubeworms, where our own frame reached for a hydrothermal-vent animal. The full twelve-author list is obtained. The paper’s hedge, which the entry said was the thing it could not read, turns out to be stronger than ours was: Conotubusmay have engaged in chemosymbiosis.”

MethodGetting past the network is not getting past a paywall — and the lag axis cannot see a preprint

Five of the six items are still not read at source, and the entries now name the exact refusal instead of a summary. PNAS, Cell and Annual Reviews returned 403 at the article page. Nature Materials served its abstract and priced the full text at $39.95. Science paywalls past its abstract. Metadata and abstracts came from Crossref, PubMed, Europe PMC, arXiv and PubMed Central. One grade was deliberately not raised: the Hall paper’s authors posted a full preprint of the same experiment in May 2025 and it was read end to end — but a preprint is the authors’ text, not the version of record, so the entry stays contested and says exactly what was read.

And the page’s own axis is understating two items by years. The bats result was public as a bioRxiv preprint on 9 August 2024 — 753 days before the wire carried it, against the 34 we print. The Hall result was public on arXiv on 11 May 2025: 478 days, against 96. The lag axis measures journal publication, so a preprint is invisible to it by construction. Rather than redefine the axis mid-archive, both entries and the section intro now carry the preprint dates alongside the printed figure. The median is unchanged at 40.5 days, which is a coincidence and is labelled as one.

SiteA page that said “nothing was read” in eight places, including three link unfurls

The claim was load-bearing and it was everywhere. Updated: the hero’s Verified to date (1 → 2), the edition tally (0 verified1 verified), the colophon, and the meta, og: and twitter: descriptions, all three of which were still telling anyone who shared the link that nothing in the edition had been verified. The standing notice keeps its original account of the blockage — moved to past tense, not deleted — under a retitled heading, with the amendment set out beneath it. The Filed intro claimed one of the six carried a date inside the last seven days; after the Conotubus date correction, none does.

Two factual errors were corrected inside the “Not” refusals block, which is otherwise untouched: “Nothing here was read at source” is no longer true, and the refusal is restated so that it survives its own correction; and “a family of bats with two antibody loci” became twenty-six species. The seedbed’s no standard immune system entry keeps its hold, but for the better of its two reasons — not “half of it is a search summary,” which is no longer the case, but that a field guide built on two poles is an argument wearing a catalogue’s clothes.

2026 · September 4

This week’s digest could not open a single source, so nothing in it is graded verified — and we published it saying so

Edition two of Glimmer Wire, the weekly graded scan behind Glimmers. Six items filed, four held, three leads, none verified. The reason is not editorial: every publisher, aggregator, press wire and DOI resolver the scan reached for was refused at the network layer before the request arrived, so the whole edition rests on search-result summaries — which our own rules class as leads and never as citations. That is one step further out than edition one, which at least reached institutional press releases.

NewSix filed, sorted by lag, every figure marked as summary-sourced

An Ediacaran tube-dweller reported to have lived on sulfide-oxidising bacteria 550 million years ago (PNAS); the solar system’s passage through cold interstellar clouds proposed as part of Earth’s climate record (Annual Review of Astronomy and Astrophysics); vesper bats reported to build antibodies from two immunoglobulin heavy-chain loci where every other mammal has one (Science Advances); organ ageing traced to tissue-resident macrophages losing the ability to clear worn-out neutrophils (Science); a Hall voltage measured with the magnetic field in-plane (Nature Materials); and the archaeon–bacterium partnership at the root of complex cells imaged, joined by nanotubes, in a Shark Bay microbial mat (Current Biology).

Two are graded contested and the reasons differ. The heliosphere item is a review article plus a modelled trajectory, and “may help explain the ice ages” is a causal claim the method cannot close. The Hall item is contested for its framing: “century-old assumption overturned” reads as release language, and searching around it surfaced prior work on Hall responses in parallel magnetic fields — which, if it holds, makes the honest story a narrow real result inside an active field. We could not open the paper, the release, or the prior work to settle it, and the entry says so rather than picking a side.

What is withheld is on the page. The Science paper’s full author list (the ordering in the summary was garbled). The new archaeon’s species name (spelling unconfirmed). The bats DOI, the Asgard DOI and author list, and the heliosphere review’s title, authors and volume — none obtained. Two of the lag figures are flagged as provisional because the publication dates behind them are unconfirmed, which is the honest thing to do to your own axis.

Fact-checkFour held, and the first is the item most on-frame for this whole site

Attention patterns in ADHD as a creative advantage. It goes straight at the paradigm and we are not filing it. The sourcing traces to a congress presentation and a cross-field synthesis rather than a study; the summaries conflate a 2025 congress item with a separate 2026 design-task study, so a digest could not tell you which finding it was describing; and the framing on offer — creative activity as a therapy that channels defocused attention while strengthening focus and self-control — sits one inch from regulate yourself out of your material conditions. Here the superpower frame is not a risk downstream. It is the headline.

“Each extra hour of prolonged sitting linked to 9% higher cancer death risk.” Held because the sources disagree on the journal — the summaries name both PLOS One and PLOS Medicine for the same paper, and a scan that cannot say who published a result has not traced it. Held also because an observational hazard ratio about how a day is broken up quietly converts a question about who is permitted to stand up at work into personal advice.

A single dose of engineered immune cells said to protect aged mice for a year is declined as cure framing, and named on the page rather than dropped, because the filed macrophage item is the same field seen from a better angle and a reader is owed the neighbouring claim we chose not to repeat. Octopus, whale and corvid cognition is held for undated round-up sourcing — the same fault as edition one’s cow with a brush, held a second time on purpose so the pattern is on the record twice. That category is where our sourcing standard comes under the most pressure, because the items are the most fun.

CorrectionTwo of our own counts were stale, in two different files, and the digest says so on its face

Checking where a bats entry would go meant re-deriving the there is no standard X figure. It is fifteen field guides. CLAUDE.md says twelve; the guide to untranslatable words says thirteen in its own refusals. Both predate three more guides — bird, rainbow, and way to be moved — and those three were read here to confirm they arrive at the formula rather than merely mention it. The grep returns sixteen files; the sixteenth, the unfinished-animals guide, matches while explicitly declining the formula, which is why the answer is fifteen and not sixteen.

The standing rule held exactly as written: a count in the working notes is a lead about the site, not a fact about it. Both stale figures are named on the digest rather than quietly corrected, because a count that was wrong in two places at once is evidence for the rule.

MethodPlacement checked by argument, and two items were demoted for it

A new item can duplicate an old claim with none of its nouns, so the check is on the argument. Chemosymbiosis is not unspent here: A Field Guide to Life in Impossible Places already carries Riftia, the vent tubeworm, living on “oxygen and sulfide at once” — so the Conotubus item’s unspent claim was narrowed from animals live in partnership to the age, and to the evidence being isotopic rather than anatomical. The eukaryote-origin argument is spent too: No. 7 holds it and No. 84 holds the long-negotiation reading, citing the Asgard literature by name — so that item’s unspent claim was narrowed to partnership without engulfment, imaged rather than inferred. Unspent by grep, zero hits each: heliosphere, immunoglobulin, vesper, macrophage, neutrophil, efferocytosis, nanotube.

One stale sentence on the page itself was fixed while we were there. The hero read “nothing here has cleared the bar to be a page,” which stopped being true on 2 September when two of edition one’s items became Until There Were Ten and No. 85. It now states the ratio instead, which is the more useful claim anyway.

2026 · September 3 · later

We credited an elephant with recognising itself in a mirror. The study was of a different species — and the species is what made its control work

The corrective pass promised in this morning’s entry, done as its own commit rather than folded into the piece that found it. Two claims withdrawn from Field Guide No. 11, both traced to primary. One of the two faults is a kind nothing on this site had previously looked for.

CorrectionThe corvid card: two of five magpies, and a replication that failed

What we said. The crow card listed self-recognition among the things a corvid does without a neocortex, and its field notes said crows and ravens “use tools, plan for the future, and recognise themselves.”

What is right. Prior, Schwarz and Güntürkün (PLoS Biology 6(8): e202, 2008) marked five hand-raised magpies. Two showed statistically significant mark-directed behaviour, one a single spontaneous instance that did not reach significance, two none — with the authors’ own printed caution that the sample is too small for a definitive estimate of the distribution in the population. Soler, Colmenero, Pérez-Contreras and Peralta-Sánchez (Journal of Comparative Psychology 134(4), 2020) then failed to confirm it in a close, larger replication.

Hedged narrowly, in both directions. The replication did reproduce more social and more self-directed behaviour at the mirror than at the cardboard control; it failed specifically on the mark test. So “debunked” would be as wrong as the original overclaim, and the card says so on its face. Tool use and next-day planning are untouched, and were strengthened rather than left vague — Kabadayi & Osvath and Gruber et al. are now named on the card.

CorrectionThe elephant card: the wrong species, and the species was the control

What we said. The elephant card listed self-recognition alongside memory, grief and culture.

The first thing wrong is one we had never thought to check. Every figure on that card is the African elephant (Loxodonta africana). The mirror study — Plotnik, de Waal and Reiss, “Self-recognition in an Asian elephant,” PNAS 103(45), 2006 — is of three adult female Asian elephants (Elephas maximus) at the Bronx Zoo. And that is not pedantry, because the study’s own control depends on it. The paper notes that male African elephants often touch their heads owing to temporal gland secretion, whereas in female Asian elephants that gland is bilateral, vestigial and nonsecretory — which is precisely what let the authors rule out a general tendency to touch the marked area. Carry the finding across to an African elephant and you reintroduce the confound the species choice removed.

The second is the strength: one of three. Happy passed the mark test on the first day of marking, with a significant shift in her head-touching distribution. Maxine and Patty did not. Re-marked two months later, none of the three touched mark or sham. The paper’s title is singular for a reason.

Graded more gently than the magpie, deliberately. There is no failed independent replication here, and the authors answer the one-of-three objection themselves: even in chimpanzees, the most extensively tested species with mirror self-recognition, fewer than half of individuals may pass on some studies — and repeated mark tests on one animal are considered uninterpretable, because they compromise the mark’s salience. All three elephants reached the third and fourth stages of the standard progression and showed a total absence of social responses to the mirror image, which is evidence in its own right. So the card now says what is actually true: mirror self-recognition has been demonstrated in one Asian elephant, it is a real and careful result, it is not a general fact about elephants, and it is not a fact about this card’s animal.

A figure tightened while we were in there, and its source cited for the first time. Herculano-Houzel and colleagues (Frontiers in Neuroanatomy 8, 2014): 257 billion neurons, 97.5% of them (251 billion) in the cerebellum — the card had said ~98% in four places. The cerebral cortex has twice the mass of ours and holds 5.6 billion neurons against our roughly 16 billion. That last figure is new to the card and makes its point better than the wording it replaces.

MethodThe fix introduced a drawing fault, and the gate was right not to catch it

Changing the glyph label from cerebellum: 98% to cerebellum: 97.5% made it wider — wide enough to collide with the neighbouring cortex label. Measured in the browser: an overlap of about 1.1 px.

check-overlap.mjs reported zero collisions, and it was not wrong to. Its ink-ratio shrink and minimum-overlap floor are deliberately generous, so that the gate can only ever under-report — an under-reported collision still has a human to catch it, where an over-reported one is a gate nobody reads. At 5 px type, 1.1 px sits below the floor. Fixed by moving the labels apart, re-measured at 14.9 px of separation, and then rendered to an image and looked at.

The standing lesson, already recorded for zine diagrams and now for guide glyphs: editing the text of an SVG label changes its width, and the check that watches for text collisions is tuned not to see small ones. All 14 labels on the page were then measured directly — none outside its viewBox, none overlapping another.

MethodWhy this is a separate commit

Both faults were found while sourcing Field Guide No. 23 this morning, and neither was fixed in that pass. Patching a fault in the file where you happened to notice it is the failure mode this log keeps recording — it leaves the corrected version carrying the original defect with a fresher date on it. So the new guide shipped naming the error, and the error was then fixed on its own, against the primaries, with the species check applied to both cards rather than only the one that prompted it. No other card on the page was touched, and the guide’s argument is unchanged: it never rested on self-recognition, only on neuron density and architecture.

2026 · September 3

Three papers on one desk disagree about whether birds inherited the circuit or built it twice. Every popular version picks one

A new zine in Star Stuff, its 38th piece, and a companion catalogue in Field Guides, the 23rd. Built from nine bird-cognition papers Ryan added to the library this morning. One card corrects a claim we shipped in an earlier field guide.

New pieceOlder Than Either of Us

The checkable thing. Stacho, Herold, Rook, Wagner, Axer, Amunts and Güntürkün put pigeon and barn owl forebrain through three-dimensional polarised light imaging, which reads the orientation of nerve fibres from how they bend light, and found radially and tangentially organised fibres crossing at right angles along the entire extent of the Wulst and the sensory dorsal ventricular ridge. Lamina-like and column-like, in a brain that builds neither layers nor columns. The motif was iterative — it recurred across somatosensory, visual and auditory zones, across two regions, and across two species — which is what makes it a finding rather than a lucky slice. Science 369, eabc5534 (2020).

The boundary the paper printed, which a summary would drop. The motif was not everywhere: the non-sensory parts of the dorsal ventricular ridge showed a mosaic-like arrangement instead, patches of fibres running in different directions. The zine gives that its own spread. A finding that arrives with its own edge is worth more than one that arrives seamless.

Then the obvious explanation fails, on the numbers of the paper that supplies them. A kea carries about 1.28 billion pallial neurons, a raven 1.2 billion, a chimpanzee 7.4 billion — and all three perform comparably across a wide range of tasks. Güntürkün, Pusch and Rose say so plainly: corvids are on par with apes and their neuron numbers still differ widely. What makes the arithmetic survivable is where the neurons sit (about 19 per cent of a primate’s are pallial, against 62 in parrots and 78 in songbirds) and what they cost (avian neurons run on roughly a third of the glucose mammalian neurons use). A measure that fails in both directions was never measuring the thing.

The centre of the piece is a disagreement, and it was inside the same batch of papers. Stacho and colleagues close by suggesting an ancient microcircuit already present in the last common stem amniote, conserved and partly modified — inheritance. Güntürkün, Pusch and Rose argue the four features required for complex cognition convergently evolved, independently, and are therefore “hard to replace” — invention, twice. Zaremba and colleagues, sequencing the whole chicken pallium across eight stages inside the egg, report conserved inhibitory cell types alongside transcriptomic convergencepartly each, with the boundary not where gross anatomy would have predicted. Three papers, three answers, and “convergent evolution” is the one that travels — because two independent inventions of a mind is a headline and an unsettled question is a research programme.

Why we can print an open question and still make the claim. The belonging claim survives either answer, which is how you can tell it was never resting on the ranking. If it was built twice, the layered cortex is one implementation among at least two and is not the entry fee — the field’s own words are that an isocortex seems to be dispensable for complex cognition. If it was inherited, the kit is older than either lineage and neither of us designed it. A shared inheritance cannot be a hierarchy. Fifteen spreads, two figures, six refusals.

New pieceA Field Guide to Bird Minds

Thirteen birds, sorted by what we wanted each one to prove — and the sort is the guide’s finding rather than its plan. By taxonomy you get parrots, corvids and everyone else, which says nothing about minds. By cleverness you are building the ranking this site refuses. What actually divides the thirteen is the question a researcher brought to them, which is a fact about us.

Three sections hold the birds recruited into an argument: asked to mean it (Alex the African grey naming the colour of an object and the object of a colour; the budgerigar carrying open-ended vocal learning, a capacity we share with parrots, songbirds, hummingbirds and some cetaceans but not with apes), asked to make a plan (New Caledonian crows planning around tools that are out of sight; ravens refusing food they could eat now for a token worth something only tomorrow; cockatoos whose bin-opening reached 44 Sydney suburbs with site-specific styles and provoked a human counter-culture of bricks and bungees), and asked to remember when (a Clark’s nutcracker holding up to 30,000 caches for six months by landmark geometry — move the landmarks 20 cm and the bird searches 20 cm off — against a scrub-jay that must hold when as well as where, because its caches perish at different rates).

The fourth section is where the line arrives. The pigeon, the chicken, the barn owl and the ostrich were never candidates for cleverness, and between them they supplied the fibre architecture, the single-cell developmental atlas, the second species that turned one measurement into a finding, and the negative control that breaks brain mass as a predictor. Nobody put them on a poster. The evidence that dismantled the ranking came from the animals at the bottom of it, for reasons that had nothing to do with respect. The chicken card sits with that rather than tidying it: roughly seventy billion are killed each year, and it is the bird holding the map.

Two cards carry no reframe table, and the absence is the argument. A “how it circulates / as it checks out” table asserts that there is a verdict and that we hold it. The origin of the circuit has no verdict, and neither does whether the corvid-versus-ape neuron comparison is like-for-like — its own authors say it “is not entirely fair” in the same paragraph they make it. Same rule as Field Guide No. 10: a subject that cannot take the apparatus gets a different card, not a smaller one. Its line: there is no standard bird.

CorrectionWe said corvids recognise themselves in mirrors. Two of five birds did, and a replication failed

What we got wrong. Field Guide No. 11’s corvid card lists self-recognition among the things a bird does without a neocortex — and it lists it in the column a reframe table uses to say what is actually the case, which is the worst available place for a contested result. Its field notes say crows and ravens “recognise themselves.”

What is right. Prior, Schwarz and Güntürkün (PLoS Biology 6(8): e202, 2008) marked five hand-raised Eurasian magpies and gave them a mirror. Two showed statistically significant mark-directed behaviour. One showed a single spontaneous instance without reaching significance. Two showed none. The authors’ own caution, in the paper, is that the number of birds tested is too small for a definitive estimate of the distribution within the population. Then Soler, Colmenero, Pérez-Contreras and Peralta-Sánchez (Journal of Comparative Psychology 134(4), 363–371, 2020) ran a close replication with a larger sample. The mirror-versus-control difference in social and self-directed behaviour reproduced; the mark test did not — self-directed behaviour was more frequent in front of the cardboard control.

Held in both directions. That is not a debunking either: what failed is the mark test specifically, not every mirror response, and the new guide’s magpie card says so in the table. Tool use and next-day planning are unaffected and stand.

Who caught it and how. Nobody wrote in. It came out of checking a favourite fact while sourcing the new guide — which is the whole reason for this page. A first web search returned the birds’ names and a “two of five” framing partly from what look like content-farm pages; the figures above are from the open-access primary, whose own sentence is three out of five birds showed at least one instance of spontaneous self-directed behavior. Not the same claim, which is why the card gives the breakdown rather than a ratio. FG 11’s own wording, and a second instance the audit turned up — its elephant card lists self-recognition too, on evidence we have not yet checked — are queued as their own pass rather than patched where noticed. Fixing only the instance you spotted is the failure mode this file keeps recording.

DeclinedThe obvious bird zine was already written three times, so we did not write it again

The zine this material invites is birds have no cortex and are clever anyway; difference read as deficit. That is spent, and the check that found it was grepping the argument rather than the topic. No. 36 owns it in the harder case — the long-finned pilot whale counted above us at 37.2 billion neocortical neurons, the ranking surviving anyway, layer IV absent, “difference read as deficit, conducted by neuroscientists, about whales.” No. 85, published yesterday, owns the nomenclature. And FG 11’s crow card already says there are many roads to a mind.

A bird version would have been No. 36 with feathers. So No. 86 spends one spread naming those three and moves to the question they leave behind — if not that, then what is actually in there, and where did it come from? No. 36 cannot reach that dispute, because nobody argues about whether a whale is a mammal.

SiteCounts re-derived, and a figure redrawn after being looked at

Field Guides now reads twenty-two guides, 277 entries, 296 cards, with nineteen cards deliberately not filed as entries — corrected in all seven places those figures appear, from the meta description to the colophon. The there is no standard anything count went fourteen to fifteen, derived by reading every hit rather than counting them: the grep returns sixteen files and one of them matches the phrase in order to decline it. Star Stuff went 37 to 38 pieces, and its derived line — total minus the seven founding zines — from thirty to thirty-one.

Figure 1 was redrawn because somebody rendered it and looked at it. The mammal panel and the bird panel were both drawn as grids, so the picture did not distinguish a layered sheet from clusters — which is the entire point of the figure. Faint bands were added to the mammal panel. No gate could see it: contrast, overlap and dead-class checks all passed the ambiguous version, because a diagram that means the wrong thing is not a colour, a position or a class. And a first attempt to bounds-check the guide’s fifteen glyphs by regex reported eight of them out of their viewBox; it was reading relative path deltas as absolute coordinates. Re-measured properly in the browser: fifteen of fifteen inside, none clipped. A derivation nobody reads back is not a derivation.

2026 · September 2 · later still

A professional ethics code names the environment once in 6,825 words. Its replacement, out this November, names it not at all

A new essay in Foundations, the tenth — and the conduct half of the Creed. The question is Helen Edgar’s, asked after an evening on ethics in her BACP training. Both editions of the framework were downloaded and read.

New pieceSix Principles and a Room

The checkable thing. The BACP Ethical Framework for the Counselling Professions (2018) is public, free and binding on tens of thousands of UK practitioners until November. Its six core principles — being trustworthy, autonomy, beneficence, non-maleficence, justice, self-respect — are each a duty running between a practitioner and a client. Counted rather than asserted: in 6,825 words, client appears 173 times, practitioner 35, environment once (in a sentence about the practitioner’s own moral energy), and system, systemic, structural and institutional not at all. The only organisation named in the document is BACP’s own charity registration, on the copyright page.

Why that is not a complaint about counsellors. A professional code regulates professionals; its sanction is registration, and you cannot strike off a building. The essay says so plainly. The consequence is the argument: when the only parties to an ethic are two people, everything that is not one of those two people — the lighting, the timetable, the eleven-month wait, the commissioning incentive — has nowhere to be recorded except inside the person who came in.

Then the profession moved, and the essay had to be rewritten around it. BACP spent four years revising the framework. The 2026 edition is published, becomes mandatory this November, and puts “Working ethically is working within relationships” on its cover. It drops the Latin — autonomy, beneficence, non-maleficence and self-respect now appear zero times — goes from six principles to twelve, and adds anti-oppression as a named ethical principle. That is a bigger step than most professional bodies have taken and the piece says so before saying anything else.

Where the step stopped, by the same count. Environment falls from one to zero. Systemic, structural and institutional stay at zero. And both occurrences of relational in the new edition sit inside the anti-oppression principle — relational power dynamics, relational power imbalances — locating oppression in the space between the two people. Kadodia & Krueger (Philosophical Psychology, 2026) name the gap exactly: these injustices “are not merely interpersonal – they are structural.” The room does finally appear in the code, in the clause admitting that a contract or a context may “specifically exclude collaborative working”as a reason you could not do the ethical thing, with a duty to write down why.

Guattari’s three ecologies name the missing band, with the mapping marked as ours rather than his. The floor stays the Creed’s, unchanged: a relational ethic does not weaken do no harm, it lengthens the list of things capable of doing it. And the practice in the last section is Helen’s own Ethodivergent Hearth Buildingthe first time that essay has been cited anywhere on this site, which it should have been a year ago. Six refusals; the closing line is an ethic you can only point at a person is an ethic that will keep finding the fault in the person.

MethodTwo published dates, both printed, neither reconciled

The 2026 framework’s own copyright page says it “takes effect from 1 November 2026.” BACP’s Preparing for the 2026 Ethical Framework page says it becomes mandatory at midday on Tuesday 3 November 2026. Both are BACP’s, both are published, and they are not the same date — so both are on the page, per the house rule about printing an ambiguity rather than resolving it silently.

The word counts are the essay’s central claim, so the method is printed with them: both PDFs converted with pdftotext -layout, counted with grep -oiw, extracted lengths 6,825 and 4,124 words including front matter. Stated so a reader can reproduce it, or contradict it. A count you have not run yourself is a claim somebody made.

DeclinedThe paragraph No. 81 refused, refused again

The strongest available hinge for this essay was Aunty Mary Graham’s charge that settler law is incomplete — that it is “possible, even commonplace, to commit immoral and unethical acts of destruction that are not illegal” — run against a professional code. No. 81 declined that paragraph three days ago, by name, on the grounds that it would travel without its qualifier. It is declined here too. The essay instead states its own exposure through Zoe Todd’s aer nullius, credits Deleuze and Guattari for assemblage while noting the idea has older addresses, and recruits nobody else’s law to settle ours. Ryan’s call.

SiteFoundations said eight, and had nine

Fixed in the same pass. The Foundations collection page was carrying nine cards while its prose, its section heading, its residual count, its colophon, its meta description and both social cards all said eight — with a single stray nine in the hero count. Rainbow Serpents had been added without the sentences being swept, and its JSON-LD hasPart list had never included it either. All of it now reads ten, both new members are in the structured data, and the index’s own Foundations blurb — which also said eight — is corrected. No gate can read a number written out in prose, which is exactly why this file keeps recording them.

2026 · September 2 · end of the day

We repeated a critic’s charge that a headline had exceeded a paper. The sentence was in the paper’s own abstract

A fact-check on the fibromyalgia item in Glimmer Wire, after both papers were read in full. The grade stays contested — for a better reason than before.

CorrectionThe over-reach, if it is one, is the authors’

What we published. That a critic’s reading suggested “a central nervous system disorder with drug targets” was “well past what was measured” — framed, in our summary, as headlines outrunning a paper we admitted we had not opened.

What the paper says. Its abstract: “This study provides robust genetic evidence defining fibromyalgia as a central nervous system disorder.” It says so again in its closing paragraph and names two therapeutic targets. This is not a science-communication failure. It is a scientific claim by the authors, which may still be too strong — but arguing with a paper and arguing with a press release are different jobs, and we filed the wrong one.

The rest of the critique, adjudicated. Three figures hold and every one is the paper’s own: OR 1.090 for the HTT variant (“about 9% increased odds”), polygenic score AUC 0.59, and prevalence ranging sixfold across cohorts, 1.2% to 7.5% — which the paper discloses in the second sentence of its Results rather than concealing. One figure is wrong: heritability is 10.4% (95% CI 9.8–11.0), not “less than 10%.” One is unresolved: the one-billing-code claim needs the Methods supplement.

UpdatedTwo studies, one condition, one day, two answers

We had called the second paper a “companion.” It is not. Bright et al. in Nature Communications (85,139 cases; Yale and the VA Million Veteran Program) is a separate study by a separate group, published the same day, and it disagrees with the Nature Medicine meta-analysis where it matters most.

On sex: an inter-sex genetic correlation of 1.03 — “statistically indistinguishable from perfect”, “no sex difference in the genetic architecture” — against 0.73 ± 0.064, significantly short of identical. On autoimmunity: Nature Medicine finds no MHC signal and no immune-cell enrichment and concludes fibromyalgia is “not primarily an autoimmune disorder”; the Nature Communications structural model places it “mostly as a pain and autoimmune-related trait.” On heritability: 10.4% against 6.9%, on different scales. The coverage we filed from reported one of these papers and not the other.

And the finding nothing we read reported. The Nature Medicine group found the genetic architecture of fibromyalgia to be the same in men and women, while 87.7% of diagnosed cases are female. Their own conclusion is that the prevalence gap is “unlikely to be driven by sex-specific genetic risk variants, and may instead reflect nongenetic biological factors, environmental exposures or diagnostic bias.” That is the authors, in Nature Medicine, putting who gets believed on the list of explanations. The other paper puts that correlation at 0.73, so even this is contested — which is the honest state and is now on the page.

Fact-checkA seedbed card that left out the study’s central limit

The Kanzi card in Glimmer Wire’s seedbed was written from a single search summary and never checked. Checked now. The citation holds — Bastos & Krupenye, Science 391(6785):583, DOI 10.1126/science.adz0743 — and so do the 68.9% grape figure, Kanzi’s death in March 2025 aged 44, and the six-to-nine-million-year claim.

What was missing is the part that matters. The study shows Kanzi could follow a pretence a human set up; it does not show he could start one. Comprehension, not production — and that is exactly the distinction a card like this gets flattened into “a bonobo played pretend” downstream. The skeptic we had gestured at vaguely is Daniel Povinelli, and his alternative is specific: that Kanzi tracked which cup the experimenter had touched most recently. Both are now on the card, with the real-juice figure (77.8%) we had given only in words.

One thing stays unresolved and is marked as such. The institutional record dates the paper 5 February 2026; the journal’s own citation block says 10 February. An online-first versus issue split we did not settle, so the card cites volume and issue instead of a day. A lead written from a summary inherits whatever the summary left out — including, here, the sentence the authors were most careful about.

2026 · September 2 · last of the day

The counter-evidence was published in 1969. The Pulitzer-winning book that spread the model came out in 1977 — and it is one of the two books this site is built on

A new chain in How We Got Here, the fourteenth, and the collection’s longest at sixteen spreads. Built from a paper Ryan put on disk; the historical links were traced separately.

NewThe Lizard That Was Never There · Zine No. 85

The chain runs on two rails — what was told about the brain, and what was observed in it — and the shape is the argument. 1878: Broca names a rim of cortex le grand lobe limbique; limbus means border, and he claims no function whatever. 1937: Papez proposes a circuit for emotion, as a proposal. 1952: MacLean fuses the two into a system — a name for a place becomes a name for a job, and nothing was discovered at that step. The 1960s: three brains stacked by evolutionary age, each described as independently conscious, and chronology pointed at living animals becomes a rank.

Then the hinge. In 1969 Harvey Karten showed that the bird forebrain carries the same neuron types and the same wiring as mammalian neocortex, packed as nuclei instead of layers — the six layers are a packing arrangement, not the thing that thinks. That is eight years before The Dragons of Eden won its Pulitzer carrying the model into everyday speech. The observed rail goes live in 1969; the told rail runs another fifty-one years without touching it.

We are in this chain, and the page says so. Carl Sagan is one of the two figures this entire site stands on — it is named out of his line about star stuff, and its tagline comes partly from his 1973 book. The Dragons of Eden is also the principal vector by which a model that had already been contradicted reached the public. Spread 6 publishes that rather than keeping the flattering half. Reach is not a filter, and the better a communicator is, the more expensive their sourcing errors become.

What is actually there is better than the story it replaces. Finlay & Darlington (1995, 131 species) found one conserved developmental schedule rather than bolt-on modules. In 2005 an international consortium renamed most of the bird forebrain because paleostriatum, neostriatum and archistriatum were arguments disguised as labels. And in April 2026 Imam, Kielo, Trude and Finlay measured 182 mammalian species and found not three floors but two systems that trade: olfactory system against neocortex at r = −0.63, with the limbic components covarying positively with olfaction — so they do belong together, just not for MacLean’s reason. The division is not age but the shape of the information: sight, touch and hearing arrive with space already in them (spatial order 0.90, 0.86, 0.89) and can be laid out as maps; smell arrives with none (0.11) and cannot. The nine-banded armadillo spends its room on smell — hippocampus twice its expected volume, neocortex smaller by a factor of 2.8 — and is not a failed monkey.

Ten documented joints, two contested, one leap. The contested pair are named on their own spreads: that Sagan’s book is the reason the phrase entered common speech is a causal claim about culture with no study behind it, and the competition-for-space explanation is a modelling result the authors themselves only say “suggests” — the page declines to upgrade their verb. The leap is the final spread, which moves from the model is false to what “that’s your lizard brain” does when it is said to a person about their own nervous system. That move is ours and is marked as ours.

CorrectionOur own digest got the relationship wrong, twelve hours earlier

What we said. Glimmer Wire filed this paper that morning describing it as finding that “the limbic system and neocortex do not stack; they trade”, and gave its date as “vol 12 no 17, 2026, approximate.”

What the paper says. The inverse relationship is specifically between the olfactory system and the neocortex. The limbic components — amygdala, septum, schizocortex, hippocampus — covary positively with the olfactory system and with each other, and sit on its side of the trade. Calling the whole limbic system the thing that trades against neocortex inverts where half of it belongs. The date is 22 April 2026. Both were caught by reading the paper, which the digest had said plainly it could not open.

One figure on the new page is second-hand and flagged there. The Cesario, Johnson & Eisthen textbook counts — 20 books sampled 2009–2017, 14 discussing brain evolution, 86% carrying at least one inaccuracy, two matching consensus — come from summaries of that paper rather than the paper, which would not open. Its abstract, quoted verbatim, supports the claim in kind but carries no numbers. The colophon says to treat the counts as provisional, and the open item is logged.

SiteA cover collision no gate can see, found by measuring instead of looking

The cover motif’s fractured violet strokes ran straight through “Zine No. 85” in the .cover-issue line. The overlap gate passed the page, correctly: it measures text against text, and artwork over text is explicitly outside its scope — that judgement is left to eyes. The motif also sat inside the clean zone recorded in a source comment on an earlier cover, which turned out not to transfer.

It was caught by reading the bounding boxes back out of the browser rather than by squinting at a screenshot: four motif elements inside the band the eyebrow occupies. The motif is now wrapped and lifted, with 13px of measured clearance above the eyebrow and 52px from the corner numeral, and the source comment says what was measured and why. Four shipped covers have made this mistake; a comment is a note, not a control.

A second collision, this one inside the gate’s scope, was caught by it: two panel headers in the spatial-order diagram overlapped by 12.9×8.4px. Shortened and split rather than shrunk.

2026 · September 2 · later still

Saturn’s hexagon was the only one of its kind for forty-four years, and one example held still that long is very hard to tell apart from a rule

A new entry in Glimmers, the fourth, written and published the day the paper appeared. It is also the first item this site has moved from plausible to verified by getting hold of the paper.

NewUntil There Were Ten

Saturn’s north pole has a hexagon on it — a jet stream bent into six straight sides near 78.5°N, found by Voyager in 1980–81 and present in every image since, a lifetime exceeding 44 years. In all that observing, nobody had ever reported a second one anywhere on the planet. The southern hemisphere was tipped out of view from mid-2012; when it came back in 2023 there was a ten-sided wave at planetographic latitudes 58°S to 63°S, mean zonal wavelength 16,782 ± 1,100 km.

The piece is built on the paper’s refusal of the tidy reading. Two poles, two polygons, how balanced is not what was found. Where the hexagon’s sides and corners are equally contrasted, the decagon is “not uniform in longitude” — three corners very prominent, four less so, three barely defined. Its corners oscillate with a mean period of 32.5 days and amplitudes of 4.6° to 8.4°, and the wobble travels, each corner peaking about 2.7 days after its neighbour: “a complex dynamical behavior, never observed in the hexagon.” It did not exist in Saturn’s previous year, and the authors say it “could be a transient evolving phenomenon, whereas the hexagon is a robust wave.” Two candidate causes — a jet instability, or a 4,000-km red anticyclone at 55°S resembling one Voyager saw in 1981 — and three shallow-water runs, none of which reproduces the observed drift. Nobody knows yet is the honest state, and it is not the same as baffled.

The turn is epistemic rather than decorative. One example, unchanging, for forty-four years, is a terrible basis for a general claim and an extremely convincing one. The second case is different in almost every measurable way. The hexagon did not become less real; it stopped being the only way for a jet on Saturn to arrange itself. Three diagrams, all drawn from the paper’s own reported values. A rhyme, not a proof — and the refusals say plainly that nobody’s belonging rests on what a gas giant does with a jet stream.

One design decision worth recording, because no gate can see it. The decagon’s unevenness is drawn with stroke-width and never with stroke colour. The shared print block flattens every SVG stroke to #444444, so a difference carried in colour would have been invisible on paper — and the unevenness is the finding, not a drawing style.

Fact-checkFirst upgrade from plausible to verified — and two things we had filed wrong

Glimmer Wire filed this story that morning graded plausible, sourced only to the NASA release, with a standing notice saying no paper on the page could be opened. The paper was then obtained and read in full, and the entry is now graded verified — the first on this site to make that move. Two things we published are corrected by it.

We wrote “nobody knows why it arrived now.” That overstates the authors. They name two candidate mechanisms and say they cannot discriminate between them, which is a different and more interesting condition than not knowing. And the formation window is bounded at mid-2012, when the southern hemisphere stopped being observable from Earth — not 2017, which is circulating in coverage. A third thing is worth naming without calling it an error: the widely-quoted 16,782 km is the wave’s mean zonal wavelength. For a ten-sided figure that is within about 2% of a side length, so “one side exceeds 16,700 km” survives — but it is not the measurement the paper reports.

The digest’s own counts were updated rather than left to rot: the standing notice, the hero dateline, the edition tally and the colophon all said none verified, and all four now say one. That is exactly the class of stale prose figure no gate on this site can read.

2026 · September 2 · later still

A weekly science digest that publishes what it declined to tell you — and whose first edition contains nothing we were able to verify

A new working paper in Notes & Rationale, and the sixth page in that collection. It is the scan that sits behind Glimmers, published with its grades showing rather than kept in a drafts folder.

NewGlimmer Wire

What it is. A weekly read of what is going well in science and medicine, graded before it is enjoyed. The first edition files seven items, holds three, and lists five leads. Saturn’s ten-sided south pole against its famous forty-year hexagon; rocky planets possibly forming a hundred million years after the Big Bang; diamond — ruled non-piezoelectric for a century — turning pressure into charge at its irregular grain boundaries, which is the Bone Song fact arriving from the opposite direction; human microglia taking four to eight years to mature against a mouse’s three weeks; and the triune brain retired across 182 species.

Nothing in it is graded verified, and that is on the page’s face rather than in a footnote. Six publishers refused a direct read on the day it was compiled — paywalls, an authentication redirect, three 403s and a reCAPTCHA — so the sourcing stops at institutional press releases, publisher metadata and DOIs. Every entry names what was actually read and what was not, and figures that arrived only through a news summary are marked as such. The diamond membrane’s numbers are flagged that way, and so is the critique of the fibromyalgia paper, which we have not checked against the paper either.

The section that earns the page is Held. This changelog records what we got wrong and fixed; the fact-check ledger records what we checked. Neither has ever recorded the story we declined to tell. The first edition declines a lovely one: humpback “super-groups” of more than a hundred whales off the South Orkney Islands, reported as a first in a century. It traces to an uncited conservation round-up, and the peer-reviewed survey of that same water — fin and humpback abundance across the austral summers 2011–2025, in the ICES Journal of Marine Science — reports humpback densities between 0 and about 0.12 individuals per square kilometre. Not contradicted in spirit; contradicted in the primary.

Why weekly, decided by the digest’s own data. Items are sorted by lag — how long a finding had been public before a news feed carried it here. In the first edition the median gap was 36 days and exactly one item of seven was same-day; two were over a hundred days old. A daily digest would mostly re-encounter what it had already seen, and the real bottleneck is not finding stories but opening the papers.

Off the reading chain, on purpose, like every member of Notes & Rationale. The collection page’s counts were re-derived while adding it, and one was stale in a way worth naming: it said the reading chain ran to a hundred and nine pages when the chain measures 143. That is the failure mode our own notes warn about — no gate can read a number written out in prose.

SiteA dead class the gate caught, and a search fast path we were hijacking

Two faults found by the tooling while wiring the page in, both invisible to a reader. The dead-class gate caught a .mono declared under .notice and .seed but used inside .caveat, so one span asked for a monospace face and silently did not get it — the exact shape that gate was built for. Declared once, unscoped.

The second was worse and had no symptom at all. The page’s items were marked up as <article class="entry">, which is the selector the search-index builder uses for field-guide entries — a fast path that fires at three or more matches and returns early, before the section chunker and the remainder pass ever run. The page indexed 7 records covering only the filed items: the standing notice, all of Held, all of Seedbed and the refusals were unfindable, and the run reported 7 records 100%, because the coverage figure is computed on a path that had already been skipped. Renaming the class to .wire-item and giving each item a real id takes the page to 21 records, every one of them anchored, with each held story and each seed independently findable. A per-page record count is not a coverage measurement, and a coverage percentage printed by a path that did not execute is worth nothing.

2026 · September 2 · later the same day

We reported an accessibility bug in 163 headings. There was no bug. We had read a tool’s output instead of the thing the tool was named after

A correction to the entry below, posted hours after it. Nobody caught this but us, and only because the fix was being measured before it shipped.

CorrectionThe accessible name was never wrong

What we said. That a <br> with no space beside it makes a heading announce as one run-together word — that No. 84’s cover read as “There Have BeenSo Many Earths”, that Bone Song’s title read as “BoneSong”, and that 163 headings across 48 pages were affected.

What is actually true. textContent does run the words together — that part is real and checkable. The accessible name does not. Chrome inserts the whitespace itself when it computes the name, and it does so in every shape we could construct: a bare <br>, a <br> between two <em>s, between two <span>s, after a comma, and inside a link and a button as well as a heading. Measured directly with the browser’s own accessibility tree, against copies of the pages from before and after the change: “Bone Song” both times.

How the error was made, which is the part worth publishing. The finding came from a tool that reports what it calls the accessibility tree, and the line it printed was the element’s textContent. We treated the label on the output as the thing itself. This site already has a rule for exactly this shape — aggregators and summaries are leads, not citations; go to the primary — and it had not occurred to us that the rule covers our own instruments. A tool that says “accessibility” is a lead. The accessibility tree is the primary.

The sweep is not shipping, because it was measured and it does nothing. The 347 edits were written and checked before being thrown away. They were pixel-identical at 2× on the worst-affected covers; the search index came back byte-identical, 2,069 records either way, because its builder already pads these boundaries and had always indexed the heading as “Bone Song”; and the accessible names were unchanged because they were already right. Three fragments that looked like proof of harm in the search index were false positives: nevertheless, everythingisaremix.info, and — the one that should have been the tell — our own changelog entry, quoting the mistaken claim.

The count was wrong too, in the other direction. The first pass reported 163 breaks on 48 pages. Re-derived properly — by reproducing textContent semantics rather than pattern-matching the source, which cannot see </em><br> and mishandles a heading with two breaks — the real figure is 348 across 74 pages. More than double. Both numbers are in this changelog now; the first one is wrong and is left standing above with a pointer here, which is what this page is for.

One thing the exercise did establish. The related fault written down in our notes — two adjacent <span>s with nothing between them producing “NeurodiversityParadigm” — is a real accessible-name defect, and it reproduces. It is a different fault from the one we misdiagnosed: no <br>, nothing for the browser to turn into a space. And a footnote we cannot fix from here: because Chrome inserts that space, Underground’s cover, which splits the single word across two lines, announces as “Under ground”. That is the browser being helpful in the one place we would rather it were not.

Scope of the check. Chrome only. We could not test WebKit or Gecko here and are not claiming they behave the same, only that the defect we published does not exist in the engine we can measure.

2026 · September 2

Only three of the most important things that ever happened were moments — and the famous thirty seconds turns out to be a television documentary, not a finding

A new chain in How We Got Here, and the collection’s second scrolling zine. Built from a Hank Green video, with two of the video’s own citations corrected against the papers that dispute them.

New pieceThere Have Been So Many Earths — Zine No. 84, in How We Got Here

Hank Green asked what the most important thing that ever happened was, and then did the harder thing, which was to say what he meant by important — how much depended on it, how easily it could have gone otherwise, and the sharper move underneath both: importance is not a property of the universe, so the real question is what had to happen for mattering to exist at all. With Cali Moore of PBS Eons and a clip from Joe Hansen of Be Smart, the candidates were the origin of life, the eukaryotic cell, the Earth–Moon system, the Chicxulub impact, the ribosome and oxygenic photosynthesis.

Put them in chronological order and something a list cannot show comes out: only three of them were moments, and all three are impacts. Even those are not three of a kind. Chicxulub is in the ground — a crater, an iridium layer on every continent, drill cores. Theia is an inference from a moon and has never been found. The rock that may have carried life is imagined, a hypothesis about a mechanism we know is possible, standing in for a transition nobody can describe. One documented, one inferred, one imagined.

Everything else that made us was a duration. Photosystem II learned to pull electrons out of water once, in an ancestor of the cyanobacteria — and then the sky did not change for something like a billion years, because every molecule of oxygen was consumed on contact by dissolved iron, volcanic gases and rock. The invention and the consequence are two different events. Eukaryogenesis was, in Green’s own words, a bunch of things happening in succession. And Pangea, which most of us picture as a moment, was over a hundred million years of being a continent — roughly a C curled round the Tethys, with an equatorial desert so effective that one landmass still held two worlds. On a linear chart of these spans, the two entries everybody can name are the two whose bars cannot be drawn at all.

The form is the argument, for the second time on this site. This is the collection’s second scrolling zine, and here a section’s height is the length of the thing it describes: Chicxulub is one screen you fall past, and the wait between oxygenic photosynthesis and the sky changing colour is three, most of it empty, with a rail down the side so the emptiness reads as elapsed time rather than as a layout fault. A globe on every link shows the state of the land at that moment — and they are drawn dashed and faint before 1 billion years ago and solid after it, because that is exactly as far back as a continuous full-plate model reaches (Merdith et al., Earth-Science Reviews 214:103477, 2021). A crisp coastline older than that would be an invention wearing a map’s clothes. The art carries its own epistemics, the way the joint tags do.

The turn is the demand for a moment. When did you know. When were you diagnosed. What happened to you. Every version of the question assumes an impact — something arrived, at an angle, on a date. Mostly there is no crater: mostly a difference we always had met an environment with no room in it, slowly, across years of encounters too small to itemise, and the word arrived long after the thing it named. The diagnosis is not the event; it is the sinks finally filling. Ends on four models of the next supercontinent — Amasia, Novopangaea, Aurica, Pangaea Ultima — drawn all four and chosen none, because the models disagree and Earth has never held an arrangement. Fifteen sections, nine links: six documented, two contested, one leap. Endosymbiosis is not re-argued here — No. 7 owns it, and the spread says so. A rhyme, not a proof.

Fact-checkTwo corrections, both against sources the video itself cites

The famous “thirty seconds later and it would have hit ocean” is not a research finding. It traces to the 2017 BBC documentary The Day the Dinosaurs Died, made around Jo Morgan and Sean Gulick’s drilling of the Chicxulub crater — excellent work that does not contain the number — and the popular-science article that put the figure in its own headline states plainly that there is no causal evidence for it. Green flags his scepticism about it in his source list. The zine refuses it rather than using it. What the papers actually say is better: Kaiho & Oshima (Scientific Reports 7:14855, 2017) found the killing mechanism depended on the target rock being rich in hydrocarbons and sulfur, present under only about 13 per cent of Earth’s surface — their paper’s own title is the low probability of mass extinction — and Collins et al. (Nature Communications 11:1480, 2020) put the trajectory at 45–60° from horizontal, from the north-east, a range that lofts more climate-altering gas per kilogram of impactor than either a grazing blow or a vertical one. A stopwatch is not a smaller version of thirteen per cent. It is a different kind of claim — and it is the kind that makes contingency feel like a near-miss in a film. Filed alongside Too Good to Check. We have also declined the press framing that rounded Collins’s range to “sixty degrees, the deadliest possible angle”.

The video’s citation for the earliest evidence of life is disputed, and the dispute is not in its source list. It cites Nutman et al. (Nature 537, 2016), reporting 3.7-billion-year-old stromatolites at Isua in Greenland. In 2018 Allwood et al. went back to the same rocks and published in the same journal, reading the structures instead as deformation features in carbonate-altered metasediments formed long after burial — and the plainest piece of evidence is that some of the bumps point downward, which stromatolites, growing toward the light, do not do. The floor the field broadly accepts is younger and further south: the 3.48-billion-year-old Dresser Formation in the Pilbara, where stromatolites, microfossils and fractionated carbon and sulfur isotopes agree — and even that has had a volcanogenic-pseudofossil challenge. The joint is marked contested, and the page says on its own face that the date it is least sure of is the one everything downstream sits on.

Three things are hedged on the page rather than smoothed. The isotopic crisis — models say the Moon should be made mostly of the impactor, while its oxygen isotopes are almost indistinguishable from Earth’s — is stated as unresolved instead of skipped, so the zine says a collision took place without claiming to know what hit us. The claim that the Moon stabilises Earth’s tilt enough to matter for complex life is given as genuinely contested (Laskar, Joutel & Robutel, Nature 361, 1993, for; Lissauer, Barnes & Chambers, Icarus 217, 2012, much weaker) and nothing in the argument rests on it. And the photosynthesis-to-oxygen lag is written as something like a billion years, because the figure moves with whichever origin date you accept.

The title is ours, compressed from Green’s, and the colophon says so rather than letting a paraphrase pass as a quotation. His verbatim line, quoted in full on the page, is “there have been a lot of earths and this is just one of them and there could have been a lot of other earths”; he also calls the history of the planet “a sequence of impossible worlds.” And a guard spread carries the naturalistic-fallacy problem in the open: the early appearance of life here is not evidence that life is easy, because we could only ever have found ourselves on a planet where it went this way and went this way early enough. That is a selection effect, not a plan. Rare and inevitable look identical from inside the one case you get to observe.

FixedA stale prev label, and a collision no gate measures at the width it happens

The Star Gazing collection page’s previous-link label said “Oblivious to Encounter” while its href pointed at Four Decimal Places. The chain walked correctly in both directions — our chain check compares hrefs — so a reader following the arrow got the right page under the wrong name. Found while wiring this zine in, and now consistent.

Its bar chart rendered as five labels and no bars. The tracks are <span>s, and an inline box ignores height and gives an absolutely-positioned child nothing to sit in — so the spread that carries the piece’s central comparison displayed nothing at all. No gate can see this either, and each is right not to: the class is live and a rule reaches it, the markup is well formed, nothing collides, and text that is not there has no contrast to fail. Then a second fault behind the first: the bars are painted with background, which browsers omit on paper by default, so with the reader’s usual settings the chart would have printed as five empty boxes — the same fault that once sent forty-four of this site’s pages to paper blank, in miniature, on the one spread that is pure evidence. The fills now carry print-color-adjust: exact, which is this site’s way of saying this background is content, and the result was checked by rendering the PDF with background graphics off rather than by trusting print emulation, which paints them regardless.

A third thing we thought we had found here was not real, and the correction is the entry below. This spot originally reported that the cover heading announced itself as “There Have BeenSo Many Earths”, and that 163 headings across 48 pages shared the fault. The accessible name was never wrong. See the correction, posted the same day.

The new zine’s timeline rail collided with its own prose below about 1,240 pixels, and the overlap checker passed it clean. That gate measures one viewport, 1280×900, which is written down in its own notes as a known limit — and at 1280 the rail labels clear the text column by a hundred pixels. At 800 they ran straight through a pull-quote. Caught by opening the page in a narrow window rather than by any check. The labels are now gated behind a 1,240-pixel breakpoint, measured at 48 pixels of clearance at the breakpoint itself rather than eyeballed; the hairline stays at every width, and each section’s eyebrow already names its span in words.

2026 · September 1

A dandelion root changes the soil for seventy micrometres and nothing at all beyond that — and a line credited for years to the writer who was quoting it

A new zine in Star Stuff, written the day after the essay that prompted it. Two primaries, one attribution moved back a step, one publication year corrected, and one famous quotation left out because we could not confirm it.

New pieceThe Width of Itself — Zine No. 83, in Star Stuff

Burr-Hersey, Ritz, Bengough and Mooney built the hostile ground on purpose — sandy loam compacted to 1.8 g cm⁻³ with a penetration resistance of 1.55 MPa, roughly fifteen atmospheres — grew three wild dicots in it for 28 days, and imaged the soil by X-ray computed tomography so the pore structure could be measured without taking it apart (Journal of Experimental Botany 71(19), 2020). All three species are plants a lawn is designed to exclude. It is a study of weeds that never calls itself one.

For the dandelion, porosity was 6.9 per cent in the mantle 0–70 µm from the root surface and 3.9 per cent at 70–140 µm — and the paper states plainly that changes were not observed at the whole-column scale. Seventy micrometres is about the width of a human hair. The dandelion does not fix the lawn; it opens a channel the width of itself. Which makes the sentence everyone repeats — dandelions break up compacted soil — a claim that kept the verb and dropped every condition attached to it. The conditions were the finding.

Then a complication the metaphor does not survive intact. Most dandelions are clones: the genus reproduces largely by apomixis, setting viable seed without fertilisation, and apomicts are triploid or tetraploid while the sexual minority are diploid. Majeský, Vašut, Kitner and Trávníček found apomictic accessions “genetically highly homogeneous,” with the genus’s real variety “most likely of sexual origin” — inherited from its past rather than being made now. So the tidy reading, grass monoculture against dandelion biodiversity, has a clone-field on both sides.

The piece was prompted by Nick Covington’s “Every Dandelion is a Triumph” (Human Restoration Project, 31 August 2026), and it sharpens his argument rather than disputing it. His closing line holds: in an environment of total control, every dandelion is a triumph. Triumph is the right word; solution is not — and if even the weed is not the answer to the lawn, the answer was never going to be among the things growing in it. The turn is ours: the Autistic kid who found one corridor, the Disabled worker who found the one manager who said yes. A channel opened by force, the width of one person, in ground that stayed exactly as hard — then read back by the institution as evidence that the column was fine. Thirteen spreads, two figures, six refusals. A rhyme, not a proof.

And the closing spread turns on a second dandelion that points the other way. In W. Thomas Boyce and Bruce J. Ellis’s 2005 borrowing from Swedish, the dandelion child is the low-sensitivity one — who does tolerably almost anywhere — while the orchid is exquisitely sensitive to context. Lionetti, Aron, Aron and colleagues later added the tulip in the middle across 906 adults (Translational Psychiatry 8: 24, 2018): 29 per cent, 40 per cent, 31 per cent. The orchid half is not fragility — under good conditions orchids do better than dandelions, so every orchid failing in a compacted room is also a result nobody got to see. Set the two dandelions side by side and they agree about the ground: hard ground does not produce variety, it selects for whoever needed least from it, and the survivors then get counted as the normal range. Behaviourism is the machinery that presses down, and its offer is precise — the ground can stay exactly as hard, if the child is trained to tolerate it. Unmaking is mostly subtraction; remaking is Cavendish Space, built for caves, campfires and watering holes alike — David Thornburg’s primordial learning spaces, whose set is actually four, with life the one that usually gets dropped. Not one room made kinder: several conditions available at once. The history of behaviourism is not re-argued here — No. 70 and No. 42 own it, and the spread says so on its face.

One hedge is printed on the spread rather than kept in the ledger. The tidy three-flower sorting is contested within its own literature — susceptibility looks continuous rather than bimodal — and the continuous reading is the one that happens to suit this argument, so the page says that out loud instead of letting the convenient version pass. It also cuts our way: if you cannot sort people into three flowers, you cannot run a programme per flower. You can only build ground that holds the range.

Fact-checkA quotation credited to the wrong person, a year that is wrong nearly everywhere, and a line we left out

“A fine carpet of green grass stamps the inhabitants as good neighbors, as desirable citizens” is not Elizabeth Kolbert’s. It is regularly credited to her, including in the essay that prompted this zine. She is quoting it. The line is Abraham Levitt’s, of Levittown, by way of Ted Steinberg’s American Green (2006) — one of the two books Kolbert’s 2008 New Yorker essay reviews. This is the same shape as the misattribution this site shipped once before, when a line of Martin Luther King Jr.’s was credited to Baldwin because a secondary summary was trusted. We have not opened Steinberg at primary, so the line is graded plausible rather than verified, and the zine prints the chain instead of collapsing it.

Etta Kralovec’s Schools That Do Too Much is 2003, not 2002. The 2002 date is widespread, including in the source essay; Beacon Press’s own record gives 2003. And the sentence usually quoted from her — that how schools spend time and money are not facts of nature but decisions that can be unmade — we could not confirm against the book, so we did not print it. Spread 10 paraphrases the argument and says on its own face that it is a paraphrase. If the book comes to hand the line can be restored with quotation marks it has earned.

A number printed as a range because the headline is disputed. Turfgrass cover in the United States is often given as ~163,800 km² from Milesi et al. (Environmental Management 36(3), 2005), usually attached to the claim that lawns are the country’s largest irrigated crop. That figure is a modelled satellite estimate rather than a census, and the “largest irrigated crop” framing is contested — including by the turf industry’s own trade press. Kolbert gives nearly fifty thousand square miles. The zine prints both, takes the range, and declines the headline.

We also looked for the study that would support the popular claim and did not find it. The zine says that, rather than implying no such study exists. It is not an argument against gardeners: taproots do open channels. The dispute is about the size of the claim.

FixedA unit that rendered a thousand times wrong, found by opening the page

Two measurement cells on spread five were written µm inside a label that sets text-transform: uppercase. Uppercasing µ produces Greek capital Mu, and in Space Mono that glyph is indistinguishable from a Latin M — so both cells rendered as “0–70 MM FROM ROOT”. Millimetres. A factor of a thousand, on the one number the whole zine turns on, in a piece whose argument is that seventy micrometres is almost nothing.

All eight gates passed it, twice, and none was wrong to. The markup is well formed, the class is live and doing its job, nothing collides, and a wrong character has exactly the same contrast as a right one. This is not a colour, a tag tree, a position, a page count, a URL or a dead class — it is a glyph substitution performed by CSS at paint time, with correct source text underneath. The unit is now spelled out. The SVG labels were never affected, because <text> there carries no text-transform.

The same look found a second fault in the same figure: the magnifier tie-lines ran straight through both of its caption lines. Our overlap checker measures text against text and deliberately declines to judge text over artwork, which is written down as needing eyes at render size. The captions moved below the funnel. Both were caught by actually opening the page, which is a step in our own publishing routine and is there for exactly this.

A third, caught by Ryan after this went live: on the front page the new card shipped inside the previous one. The insertion was anchored on the previous card’s closing </details> rather than on the </div> that closes its wrapper, so the new box opened before the old one shut. The collection page had the identical edit anchored one line later and was correct. Every gate passed it, and none was wrong to — a wrapper inside a wrapper is valid HTML with balanced tags and no nested links, so the markup checker sees nothing, and the card-order checker reads the cards in document order, where they still ascend. It cost more than the look of it: our search builder treats the wrapper as the chunk and lets the outermost one win, so the nested pair indexed as a single record — the front page went from 151 records to 152 once the two were separated, which means the new card’s text had not been independently findable. Fixed, and verified in the rendered document rather than by reading tags.

SiteFive pages had no heading at all — two of them had none of any kind

The check we added an hour earlier reported five pages it could not examine, because they had no <h1>. Their titles were styled <div>s and <span>s that looked like headings and were not. On the L★S broadside and the L★S playlist there was no heading element of any kind — so a screen reader’s headings list, which is how many readers get an overview of a page before reading it, came back completely empty. That is the same fault this site’s own front page carried until last month.

All five now have a real title headingEternal Sunshine, Love You Down To Your Star Stuff, the Neurodiversity Paradigm guide, and the two above. Nothing moved. These pages already reset margins to zero globally, so the only thing to pin was type inheritance; every one was measured before and after and is identical to the pixel in position, size, weight and spacing.

One trap worth naming, because it would have shipped silently. The Neurodiversity cover sets its title in two pieces, and putting them on one line inside the new heading made it announce as “NeurodiversityParadigm” — no space. The two pieces sit on separate lines on screen, so nothing looked wrong; the missing space exists only in what a screen reader reads. Caught by reading the heading back as text rather than by looking at it.

With the last of them fixed, the check stops counting and starts enforcing: a page with no title heading is now a build failure rather than a number in a report. The count existed so it could shrink. It shrank to nothing, so it becomes a rule.

SiteAn eighth markup check: the page’s title must be inside its main landmark

The check we added yesterday counted main landmarks, and a count is true of a landmark holding nothing. That is how a front page with an empty <main> passed. The new check asks the question that actually matters — is the page’s own <h1> inside it? — and one rule catches both shapes of yesterday’s fault: a landmark opened inside a box that closes before it, and a grid container promoted into a landmark.

The obvious implementation would have been wrong, which is worth recording. Checking that the landmark and its container nest tidily fails 131 correct pages: our zine template closes its shell just before its main, so the browser closes the landmark at that point — exactly where it should close — and those pages carry 98 to 100 per cent of their text inside it. A check that fails 131 good pages to catch 24 bad ones is not a check, it is noise with a true statement inside it.

It also skips the document head, because a structured-data block or a description tag can contain a literal heading tag as text. Counting those is exactly what produced our first, wrong figure of 25 affected pages when the answer was 24.

Five pages cannot be checked, and the number is printed rather than quietly folded away: they have no <h1> at all, their titles being styled <div>s and <span>s, and two of them have no heading element of any kind. That is a real gap on an accessibility-first site — a screen reader’s headings list is the table of contents, and on those two it comes back empty. Fixing it means changing those pages’ own markup rather than repairing a mistake, so it is logged as work to do rather than silently bundled in here. A count that shrinks is a count somebody can act on.

Regression-tested against the four real broken files from yesterday’s history — it names the right line on each — and confirmed silent on their fixed versions, on the zine shell pattern, and on heading tags appearing inside metadata, scripts, stylesheets and comments.

SiteThe main landmark was pointing at the wrong thing on 24 pages — including an empty one on the front page

Yesterday we gave every page a <main> landmark — the region a screen reader jumps to in order to skip the navigation and reach the page. The stated rule was that it opens after the last </nav> and closes before the footer. On 24 pages it did neither.

On the front page, <main> was opened inside the masthead and closed by the masthead’s own </div> a line later. The browser repairs that silently, and the result was a main landmark containing nothing: zero characters, zero children, none of the 137 cards. Anyone jumping to “main” on the front page of this site arrived at an empty element. It now holds the whole page.

On the 22 field guides it was worse in a subtler way. Rather than adding a landmark, the pass had promoted an existing grid container into one — <main class="field-grid"> — so the landmark was one grid, not the page. On the guides that run several grids that meant main held a fraction of the entries and none of the title: the guide to ways of being a family had 2 of its 14 entries inside main, and 8 per cent of the page. Eggs had 3 of 16. Ways to rest had 3 of 17. Every one of those grids is a <div> again, with a real <main> around the page: those three now sit at 81, 88 and 86 per cent, with every entry and the title inside.

And a search regression is repaired. Our index reads the main landmark, so on the LYDTYSS page the hero title and the Table of Contents heading had dropped out of it entirely — the site’s own signature phrase, unsearchable on the page that is about it. That page is back from 22 records to 24.

What we got wrong in describing this, too. The first pass at measuring it reported 25 affected pages by matching <h1> in the raw file; two of those hits were inside <head>, and the manifesto was never affected. It is 24. A second measurement said the field guides’ main was empty, which was an artefact of reading the pages without running their scripts — the entries are built in JavaScript. Both numbers were re-derived against live pages before anything was changed. No layout changed anywhere; no rule in our stylesheets or scripts selects main at all.

SiteA seventh markup check, so the card-in-a-card fault cannot ship a third time

Our markup checker now verifies that every card sits in its own wrapper — that no .card-wrap opens inside another, and that each one holds exactly one card. The wrapper is the box: it draws the border and the accent rule. Anchor a new card’s insertion one line too early and the new box opens before the old one closes, which is how the card above shipped inside its neighbour.

The bar we set for adding a check is that a fault be invisible to every other gate and have recurred often enough to prove that remembering is not a control. This one qualified on both counts: it happened once before, in July, and again this week with a written note about it in front of the person doing it. That is what a convention with no gate behind it is worth.

Regression-tested against the real broken file from this week’s history rather than only against synthetic cases — it names the offending line and the wrapper it opened inside — and confirmed silent on the things that must not trip it: the same class name in a stylesheet, inside a script, and inside an HTML comment; a card-wrapper that merely starts with the same letters; and a legitimate card whose Details section contains nested boxes of its own. 160 pages, 155,807 tags, zero findings on a clean tree.

FixedStar Stuff’s counts, stale again one day later

The collection said 36 pieces and its derived figure said twenty-nine of these pieces were made much later. With this zine they are 37 and thirty. Both were re-derived by counting cards and subtracting the seven founders, not by incrementing the numbers that were there — which is the only method that survives a count having already been wrong. Yesterday’s entry fixed the same two figures. No gate can read a number written out in a sentence, so this will keep happening; the defence is the derivation, not the memory.

2026 · August 31

Forty-five bees, nine hundred and ten rolls, and a proposal re-scoped after it collided with its own author’s zine

A new zine in Star Stuff, built from a primary read in full. It began as a different piece, and the record of why it changed is on its own colophon rather than quietly performed.

New pieceThe Play You Keep — Zine No. 82, in Star Stuff

Forty-five bumble bees produced 910 ball-rolling actions in a laboratory where a clear, unobstructed lane led to sugar water they could reach without touching anything. Nothing was hidden under the balls and no bee was ever rewarded for moving one. Galpayage Dona, Solvi, Kowalewska, Mäkelä, MaBouDi and Chittka tested the behaviour against Gordon Burghardt’s five criteria for animal play, in Animal Behaviour 194, 239–251 (2022), and it met all five — with foraging, clutter clearing and mating excluded by the design of the apparatus and by watching what the bees did.

The first criterion is the whole zine. To count as play, a behaviour must produce no immediate adaptive outcome. Uselessness is not the absence of a category here: it is the entry condition, it is written down, and it can be failed. A brain of well under a million neurons meets it. A second experiment showed the activity was rewarding in itself — bees trained to find movable balls in one of two coloured chambers still preferred that colour when both chambers were empty. They came back for the room, not the toy.

And the sentence the piece is built on is in the paper’s own limitations section. Male bees rolled individual balls longer than females, which the authors attribute to the males having more “free time” in laboratory conditions — less motivation to stop — while the females had constant access to pollen and a colony objective. Play expanded into the hours function had not claimed, which is a claim about environments rather than appetites. Twelve spreads, two figures, six refusals. A rhyme, not a proof.

Fact-checkWhat we took out of the proposal this zine came from, and why

The piece arrived as Helen Edgar’s proposal The Weird You Keep, built on the drift of wyrd from fate to insult. That spine is already here, and it is hers: No. 28 Wyrd & Weird, her own guest zine, whose spreads already run the word before, worth, the web, the Weird Sisters and becoming — and No. 33 was built as its companion with an explicit note on its spread 9 keeping the two apart, so a third piece would have landed on both. Two further collisions: neoteny is No. 61, whose colophon reserves the domestication half for a piece of its own, and the history of behaviourism is No. 70 and No. 42.

The proposal’s founding animal also broke its own argument. The bowerbird was offered as attention with no utilitarian payoff. A bower is a courtship structure under sexual selection — mating success is precisely the payoff — and our own nests field guide already says so. The bumble bees do that job honestly, because Burghardt’s first criterion is the absence of an adaptive outcome. Helen’s own first open question was whether the bowerbird was earning its spread, and it was the right question.

Three citations were corrected or cut before anything shipped. Wassell’s study of Autistic joy is Disability & Society 41(1), 236–261 — the proposal carried the online-first pagination, 41(3), 1–26, which is not the citable range. The neuronormative paradigm is now cited to Nick Walker, Neuroqueer Heresies (2021), rather than to our own glossary entry about Walker. And an etymological over-claim went with the rest: the proposal said weird became a synonym for wrong in the nineteenth century, where etymonline gives 1820 for the weakened “odd-looking, strange” sense and assigns no “wrong” sense at all. Mark Fisher and Tuck & Yang were dropped with reasons rather than silently — Fisher’s weird carries a sense of wrongness that, set against a reclamation, hands the exclusion a theory; Tuck and Yang’s refusal is bound to Indigenous sovereignty and research extraction, so carrying it to masking is a borrowing that would have to be marked as ours.

FixedA prev link that named the wrong page, and two stale counts

How We Got Here’s previous-page link pointed at one zine and was labelled with another — the href read You Cannot Correct the Sky while the label read The Mushroom That Cannot Be Farmed, so a reader clicking it landed somewhere other than the label promised. This is the same fault class found on Sound while Field Guide 16 was being wired, and it is invisible to every gate: the chain check compares hrefs only, and the markup check validates the collection badge’s label but not prev/next labels. Found while inserting this zine into the chain, and fixed.

Star Stuff’s own counts were stale before this piece was added. The collection said 35 pieces against 35 and now reads 36; its derived figure for how many were made after the founding ten said twenty-eight and now reads twenty-nine. Re-derived by counting cards rather than incrementing the number that was there.

2026 · August 31

A new collection for hopeful science news — a telescope that will need its thrusters forever, and a qualifier that keeps falling off

A fourteenth collection, sorting on an axis this site has not used before, opened deliberately at one member and naming the word it took out of a zine two days ago. Three entries by the end of the day.

New collectionGlimmers — hopeful science news, told with a Star Stuff angle

Ryan’s call. Everything else here is slow on purpose: a zine takes one settled fact and follows it until the belonging claim is already inside it, and settled facts can wait. News cannot, and rather than loosening an existing collection to make room, the timeliness gets its own shelf. Glimmers is for science news that stokes wonder, awe, interdependence and belonging — written close to the event, dated on its face, and held to exactly the same sourcing standard as the slow work.

The axis is occasion, which is a fourth kind of sort here and is disclosed on the page as the convention requires. Five collections sort by register, two by form, two by medium. This one sorts by something happened on a particular day. Three constraints follow, and all three are constraints rather than permissions: entries are dated rather than numbered, because the zine numbering is load-bearing across the changelog, the ledger and years of prose references and should not have news inserted into it; every entry carries the date of the event and the date of publication, because a piece written close to an event was written with less than the full picture; and the same eight gates, the same ledger row and the same changelog entry apply. Timeliness is not a discount.

New pieceFlying Free — an essay by Ryan Boren, in Glimmers

The Nancy Grace Roman Space Telescope lifted off from Launch Complex 39A at 7:26 a.m. EDT on Sunday, 30 August 2026 aboard a Falcon Heavy, separated 31 minutes later, and began a hundred-day cruise to a halo orbit 1.5 million kilometres out. The piece starts as an account of watching it — the teamwork, the decades, the Star Trek feeling of competent people building something together — and then checks every claim the broadcast made.

Two of the three things Roman is built to measure have no agreed explanation at all. NASA’s own page says dark energy is “just the name that astronomers gave to the mysterious ‘something’” causing accelerated expansion, and its dark matter page says physicists “don’t even have a very good idea what the mass of dark matter particles might be.” The third, the exoplanet census, works only because two detection methods with opposite blind spots run at once: transit finds big planets on tight orbits, microlensing finds cold wide ones and rogue planets bound to no star. Neither is better. A census built on one would have returned a confident, precise, wrong picture.

And the best fact about Lagrange Two is the one usually left out. Nothing parks there. L2 is one of the three unstable Lagrange points, with an instability timescale of roughly three weeks, so Roman flies a wide halo orbit and will fire its thrusters on a schedule, forever, with propellant budgeted for at least ten years of it. Nobody at NASA files that under failure to be independent. A rhyme, not a proof — and the page says so.

CorrectionA hedge added to a NASA page, and a word we removed from a zine two days ago

Einstein’s “biggest blunder” is contested, and NASA’s dark energy page repeats it without saying so. Essentially every version of the line traces to one source: George Gamow, writing in 1956, the year after Einstein died, reporting a private remark made years earlier. Mario Livio’s investigation concluded Einstein probably never used the phrase; later work has argued Gamow may be unfairly accused. No document in Einstein’s hand has been produced. The essay states the dispute rather than repeating or dismissing the line, and it is logged as the category Too Good to Check exists for — a quotation with one witness and no document. We are not correcting NASA; we are marking the line.

And the collection is named for a word this site removed from a zine two days earlier, which the page says out loud. No. 78 shipped on 29 August framed around glimmers and was repointed within hours, because the argument had correctly been moved off contested ground and the word was kept as the frame after its foundation had been removed. That failure was specific: a zine’s frame is load-bearing, and this one could no longer hold. A collection name is not a foundation — it is a label, and what it has to be is true of the pieces under it. The word is Deb Dana’s (2018), it arrived inside polyvagal theory, which is influential and contested, and the reading we use is Helen Edgar’s: simply the opposite of a trigger. That is stated on the collection page rather than left as invisible editorial history.

RevisedA photograph added to Flying Free — and a licence question answered rather than assumed

Ryan’s own screenshot of the broadcast at T+00:04:23: the second stage through 141 km at 14,452 km/h, the side boosters still on the overlay at 2,392 km/h and falling. It is not the clean “it’s NASA, so it’s public domain” case it looks like, and the page says so on its face. The frame is a SpaceX onboard camera with SpaceX’s webcast overlay, carried on NASA’s stream, so the federal public-domain rule does not automatically reach it. NASA’s media usage guidelines cover informational use with NASA credited, and state that third-party copyrighted material is marked with its owner’s name — this frame carries no such mark. What we could not find is a published SpaceX licence covering webcast footage, and its terms for still photography have changed more than once, so the reporting is contradictory and was not laundered into a citation. Credited, not relicensed.

The real exposure was our own footer. Every page here ends in CC BY-SA 4.0, which would have implied Star Stuff was relicensing somebody else’s footage. An .artcredit block now sits directly above that footer saying the image is not covered by it — the same move Rainbow Serpents made for Kaya Oldaker’s dragon the day before. The NASA insignia in the frame is protected separately and is not public domain; it is incidental to a broadcast frame, not cropped to feature it, and the page states that nothing on it should be read as NASA endorsing us.

One new fact came with the picture. That orange is not a warning light. The Merlin Vacuum engine’s thin niobium-alloy nozzle extension has no air to carry heat away, so it sheds heat the only way left — by radiating, which at that temperature means glowing. The light in the photograph is the cooling system. It earns its place because it is the same shape as the argument the piece already makes about station-keeping at L2: the part that looks most like it is failing is the part doing its job most visibly. Print checked under emulation rather than asserted — the image lays out on paper with a raster object in both the Letter and A4 PDFs — and the 4.2 MB source PNG was converted to a 196 KB JPEG, because a photograph is not a PNG.

SiteThe print-ink bug we logged this morning, fixed — one line, and a 159-page sweep to prove it

Earlier today we recorded, and deliberately did not patch, a specificity bug in starstuff.css’s print block. It is fixed now, and the reason it needed a whole-repo run behind it is that the gate could never have caught it.

The print block sets svg text { fill: #111111 } on purpose — darker than the #222222 body ink — because a diagram label often sits on a coloured shape that survives print as content rather than background. It also sets svg [fill="#f9fafb"] { fill: #333333 } to invert light shape fills. An attribute selector is (0,1,1) and a type selector is (0,0,2), so the shape rule was outranking the label rule fourteen lines above it, and every <text> carrying one of those fill literals printed at #333333 instead. Both rules are !important, so specificity decided it silently.

Measured before touching anything: 127 label elements across 18 pages were taking the lighter ink. Nothing was broken — #333 on a bare sheet is 12.6:1 against #111’s 18.8:1, both comfortably past AA — which is exactly why no gate ever complained. The fix is one rule, svg text[fill], svg tspan[fill], matching the shape rule’s specificity and placed after it.

The verification is the interesting part, because a clean gate proves nothing here. A full check-contrast.mjs sweep before and after — 159 pages, 116,617 text elements, 9,280 SVG labels — returned byte-identical summaries: 0 screen failures, 0 print failures, same 8 elements in the background-graphics warning tier, same 399 unmeasured, and not one per-page line changed. That is the safety result, not the proof. The proof needed a separate probe under print emulation: every <text> with a fill attribute on eight sampled pages now computes to rgb(17, 17, 17), where Came Back Clean’s first figure alone had eight labels at rgb(51, 51, 51) this morning. An identical diff can mean the fix worked or that the CSS never applied, and only the second check tells you which.

One risk was checked rather than assumed: a label darkened to #111 sitting on a shape inverted to #333 would be 1.6:1. A Field Guide to the Star Stuff You’re Made Of is the page the original comment cites for labels-on-discs, and its discs are filled from a runtime template rather than one of the inverted literals — measured at 0 of 280 print failures both before and after.

New pieceCame Back Clean — an essay by Ryan Boren, in Glimmers

About a thousand volunteers buried more than two thousand pairs of cotton underpants and twelve thousand teabags at a thousand sites across Switzerland, for the University of Zurich and Agroscope, under the excellent project name Beweisstück UnterhoseProof by Underpants. Cotton is nearly pure cellulose, so a buried pair is a standardised meal: how much disappears tells you how much life was down there eating it.

Land use mattered more than soil chemistry, texture, climate or altitude — and the ranking is the part worth sitting with. Private gardens had the highest soil biological activity of any land type studied. Lawns had the lowest. The most managed surface most of us own is the deadest, which is No. 8’s argument about monoculture arriving as a measurement rather than a metaphor. The pair that comes back clean is the one to worry about.

And around 240 of the citizen scientists are listed as co-authors. Not acknowledged, not thanked in supplementary material — authors, alongside researchers from Zurich, Wageningen and the Joint Research Centre. That is a claim about who counts as a knower, and here it is the methods section rather than a slogan. Four SVG diagrams, including the burial protocol so a reader can run it in their own garden.

Held honestlyWe could not read the paper, and the page says so in those words

The draft cited a PDF at a path that does not exist in the repo, and Spotlight could not find the file, so it was never read here. The publisher’s full text returned HTTP 403, as did Science’s companion piece — which is therefore cited unread and marked as such. Every quantitative finding on the page comes from the University of Zurich’s own media release and contemporaneous coverage. That limitation is printed in the Sources note rather than papered over, because a page that implies it read the paper when it did not is the exact failure this site exists to avoid.

One consequence is visible in the artwork. No mass-loss percentages by land use were obtainable, so Fig. 2 shows order and not magnitude and says so on its face. Drawing a bar chart from a press release would have been inventing data. Same discipline as the escape-velocity comparison declined on the previous entry.

The 59% needs its error bars, and the draft printed it flat twice. “Soils harbour 59% of global biodiversity” is 59% ± 15% — a 44 to 74 per cent range — and its own authors say the estimate should be treated with caution. A 2025 reanalysis argues it is a large underestimate and puts soil biota above 99% of global species. The page prints the range, notes that it is contested in both directions, and records that S. Franz Bender authors both that paper and this one, so the citation is partly a self-citation. The soil function and threat tables are marked REPORTED, NOT VERIFIED: they are the study’s citations presented as the study’s citations, and the one figure we did check independently turned out to have a ±15 and a live argument, which is a fair indication of what the others would yield.

The instrument has published critics and they are on the page. A 2020 paper titled “Not our cup of tea” argues the Tea Bag Index is problematic in most environments because macrofauna damage gets recorded as decomposition. That objection applies harder to a whole pair of underpants, which is bigger, more tearable and buried whole — our extension, marked as ours.

SiteA figure we could clear, and drawings that took three passes

The underwear-decomposition scale is adapted under CC BY 4.0, with attribution, a licence link and an explicit indication that it was adapted, as the licence requires: the vector artwork, palette and typography are ours; the four-step structure and the 10/20/40/≥60% breakpoints are the paper’s. Worth setting beside the opposite outcome one entry earlier: Flying Free’s broadcast screenshot could not be cleared and carries credited, not relicensed. Same question asked twice in a day, two different answers, both because somebody looked.

The briefs took three attempts to stop being buckets. First pass: no hip flare and the leg openings not actually cut, so they read as plant pots. Second: hips flared outward, which is wrong for this garment and left the waistband looking detached. Third got the topology right — widest at the waistband, tapering down, the bottom profile a W with two rounded leg lobes lowest and the centre notched up between them. Nine instances across four figures, generated from one shared path definition so they could not drift apart. And Fig. 4 first drew the underpants floating above the soil line, contradicting the very protocol it illustrates; they now straddle the surface with the waistbands showing and the leg openings at the 8 cm mark. Every one of those wrong states passed contrast, overlap and markup.

New pieceNone of Those Miles — an essay by Ryan Boren, in Glimmers

Sunlight is the cheapest electricity we have ever made, and the piece is largely about the fourteen words that keep falling off that sentence. Four diagrams: a supply line with no gate in it, two and a half centuries of energy crossovers, the photovoltaic effect, and a learning curve derived from the data rather than quoted.

The star-stuff hook is literal in both halves. Silicon is the eighth most abundant element in the universe and its main isotope comes overwhelmingly from massive stars, dispersed by the Type II supernovae that end them. A solar panel is star stuff, arranged so that it catches starlight. And a panel is not a fuel — it is a device for being in the way of something that was going to arrive regardless.

Also in it: that every fuel we have ever burned was sunlight first, and the only question was how long ago the light arrived; that community solar is a watering hole in the Stimpunks sense; and that “join us now and share the sunlight” is playing on Richard Stallman’s Free Software Song, which is credited on the page because an unattributed echo of a well-known line reads as authorship.

CorrectionThe headline we started from was bigger than its own source — the same fault as two days ago

The draft opened with the claim as it usually arrives: solar is the cheapest way to produce energy in human history. What the IEA actually wrote in 2020 is “for projects with low cost financing that tap high quality resources, solar PV is now the cheapest source of electricity in history.” Two things go missing between those sentences. The fourteen-word condition — on the cost of capital and the quality of the site, which for a technology that is nearly all up-front cost is most of what sets the price. And electricity becoming energy, which silently extends a claim about 22% of final energy consumption to all of it.

This is precisely the fault Rainbow Serpents is about, two days later in a different field, and the page says so rather than leaving a reader to notice. A qualifier is the part of a sentence that makes it longer without making it better to repeat, so it is the part that dies in transmission. Both halves are kept: the claim is true, and it is conditional.

Two of our own draft figures were also wrong. We wrote that the Strait of Hormuz narrows to “twenty-one miles”, conflating nautical with statute miles — it is about 21 nautical miles, roughly 33 km, and the recognised shipping lanes inside it are two miles wide each. And we wrote that electricity is “roughly a fifth” of final energy when it is about 22% — rounding the wrong way in a paragraph whose whole argument is that the qualifier matters. Both caught before publication.

Held honestlySwanson’s law is not a law, and a quotation with three versions and no original

The learning rate is derived on the page, not quoted. Our World in Data’s series was downloaded as CSV — 50 annual observations, 1975 to 2024 — and fitted here. Module prices fell from $128.269 to $0.258 per watt, a factor of 497, while cumulative capacity grew from 0.54 MW to 1.85 TW: 21.7 doublings. On a log–log fit the slope is −0.3871 at R² = 0.9792, so price falls to 76.5% per doubling — a learning rate of 23.5%. An endpoint-only calculation gives 24.9%; OWID’s own summary and the usual statement of Swanson’s law both say about 20%. The page prints all three and calls none of them the number.

And iterating the series contradicts the word “law”: prices rose year-on-year six times — 1989, 1990, 2005, 2006, 2007 and 2022, the last by 10.2% as polysilicon tightened. Six reversals inside a 497-fold decline is a trend with exceptions. Fig. 4’s geometry was generated from the CSV by script rather than drawn by eye, so the curve cannot flatter the argument.

Bill McKibben’s line has three circulating versions and none matches another. Our draft carried Scientific American’s, inside quotation marks. The page now quotes a dated, sourced one — Democracy Now!, 30 April 2026 — and records the variance. It is not a misattribution: the line is unmistakably his and he is entitled to restate it. It is a quotation being tightened in transmission and presented as verbatim, which is the Too Good to Check pattern in its mildest form.

The refusals name the costs. Polysilicon production is concentrated and forced-labour allegations in parts of that supply chain are serious and contested; batteries need materials that are mined by somebody under conditions not automatically better than the ones we are leaving. A panel has no exhaust. It is not therefore free of harm — and a solarpunk politics that cannot say so is just optimism.

SiteThree diagrams were wrong at render size, and no gate could see any of it

The four SVGs passed every gate on their first run and three of them were still wrong. Fig. 1’s strait was drawn as two stroke-only shorelines and read as an X crossing rather than a narrowing, because the eye completes two converging lines; it is now two filled landmasses pinching a channel. Fig. 2’s last two markers merged with the axis arrowhead into a single blob. Fig. 3’s return wire ran straight through its own layer labels, and the freed electron’s arrowhead landed on top of the words n-type · silicon + phosphorus. Fig. 4’s two annotation lines sat on the data curve.

`check-overlap.mjs` passed all four throughout, and was right to — it explicitly does not measure text over non-text, and a drawing that means the wrong thing is not a collision. This is the standing lesson about diagrams on this site restated with four fresh instances: they have to be looked at, at render size, by a person.

One incidental finding about the shared stylesheet, recorded and deliberately not acted on. The print block sets svg text { fill: #111 } on purpose rather than the #222 body ink, because diagram labels often sit on coloured content shapes. It also sets svg [fill="#f9fafb"] { fill: #333 } — and an attribute selector outranks a type selector, so any label whose fill is one of those literals prints at #333 rather than #111, on every diagram on the site. Both clear AA comfortably (12.6:1 against 18.8:1 on paper) and the gate passes, so nothing is broken; but the stated intent is partly defeated. A page-local override would be the wrong fix and the mechanism-level one needs a full-repo contrast run behind it, so it is logged as an open item in FACTCHECK.md rather than patched in passing.

RevisedThree more frames and the broadcast itself — and a claim worked out, then cut

Flying Free now carries four of Ryan’s screenshots and NASA’s full launch stream. The boosters landing at T+00:07:33 and T+00:07:36 are stacked as a sequence rather than set side by side, because they are three seconds apart and the telemetry is the part worth reading — and reading it gives the best small finding on the page: the two boosters do not come down together. The altitude readouts disagree in both frames, 0.1 and 0.7 km then 0.1 and 0.4 km, so one is on concrete while the other is still four hundred metres up. That is why the second pad is empty in the right-hand camera. The engine diagrams show one lit ring out of nine: the landing burn is a single throttled centre engine.

One photograph checks a number we had taken from a news source. The separation frame is stamped T+00:31:44, which independently corroborates the reported 31-minute spacecraft separation. It is also the frame the piece’s title comes from, and the only one in which the subject of the essay is absent — Roman is already gone. Its hardware is deliberately not identified, and the page says so in its own sentence: we could not reliably say which strut is which, and a confident caption naming the wrong part is worse than an honest one naming none.

A claim we worked out and then cut. Whether 36,459 km/h at 755 km is above or below Earth escape velocity would have been a lovely line. It turns on whether the overlay reports inertial or ground-relative speed, and the two differ by roughly the Earth’s own rotation — so the claim is not made, and the figure is simply converted to kilometres per second. Logged because a declined claim is worth as much as a kept one.

The video is click-to-load, and the id was confirmed rather than trusted. Nothing is requested from YouTube until a reader presses play — checked by reading the network log, not by reading our own stylesheet — and the plain URL prints on paper, where a player means nothing. 9wq3VHsL_bE was resolved through oEmbed to “Nancy Grace Roman Space Telescope Launch”, author NASA. An embed is the one thing on this site no gate can check: a wrong but plausible id renders a perfectly healthy player pointing at the wrong film. Print re-verified — four raster objects on both Letter and A4, 18 sheets — and the four source PNGs, 1.6 to 4.8 MB each, ship as JPEGs totalling 680 KB.

SiteThe two-member floor broken on purpose, for the second time

This site holds that collections are outputs, not inputs — made when a form has already been observed in finished work, never as a folder opened in advance — and the floor is two members. How We Got Here was deferred until a second chain arrived; Stars We Grew Up On carried two for a long time. Glimmers opens at one. The reasoning, recorded rather than left to look like drift: a running log is defined by its cadence, and cadence is the one property you cannot observe retroactively. Waiting for a second entry would have meant holding the first until it was no longer news, destroying the exact property the shelf was made to hold. Easter Eggs is the precedent, and it is the relevant one because it makes the same trade: a break written down on a visible page beats a quiet exception inside a tool.

Also new here: an entry with a personal byline. The first person in Flying Free is one person, so the page carries By Ryan Boren and the JSON-LD names a Person as author. The masthead is shared; authorship is not. All eight gates clean, and the fourteenth collection brings the badge count to 140 members across 14 collections.

2026 · August 30

Entropy increases in an isolated system — and the qualifier keeps falling off

An essay that begins by correcting one of our own sentences, and ends by declining to explain something that is not ours.

New pieceRainbow Serpents — an essay, in Foundations

The second law says entropy tends to a maximum in an isolated system — one exchanging neither matter nor energy. A closed system exchanges energy but not matter, and its entropy can decrease. An open system exchanges both, and there the law is not suspended but restated: internal entropy production stays non-negative while total entropy can fall, because the system exports it. That is not an exception to the second law. It is how anything alive works — on Earth, paid for by low-entropy sunlight arriving and high-entropy infrared leaving.

Tyson Yunkaporta, of the Apalech clan in western Cape York, argues that applying the second law to open interconnected systems is a curse — in a sense he defines precisely, and which is not superstition: not a lie but “a true law or pattern applied where it doesn’t belong,” powered by something in constant motion. The essay checks the physics half and finds it correct. It also reports his carved club, which is the argument as an object: an ouroboros etched around the head that, rolled across clay, prints “an endless procession of snakes, head to tail.” One carving, the closed figure and the open one.

And it features Kaya Oldaker’s Autism Infinity Dragon, which she released into the public domain and which is the first artwork by another artist to appear on this site. Its place in the argument is geometric and you can check it by looking: the head does not take the tail. The mouth is open and the violet plume passes beneath it. That is a lemniscate — a curve that crosses itself and continues — where an ouroboros closes by eating. The autistic community chose an unclosed figure for itself.

CorrectionWe wrote “closed” where the physics says “isolated”

The Elimination of Waste (No. 43) says “the second law governs closed systems and cyclic processes; a person is neither.” The precise word is isolated. Conflating the two is a well-documented teaching error and we made it in print. The argument survives — a person is neither isolated nor closed, and neither is the Earth — but the essay corrects our own wording in the same breath it clarifies Yunkaporta’s, who writes closed as well, as does a great deal of physics writing. We are not entitled to do the second without the first.

Held honestly on the page: the thermodynamic definitions are given from physics-teaching sources rather than a named textbook read for the essay. On a piece whose whole subject is a dropped qualifier, that is the first open item.

AttributionAn image licence, corrected against the artist’s own words

The Autism Infinity Dragon was released by Kaya Oldaker into the public domain: “This is a public domain drawing and anyone can use it for any reason.” It is credited here anyway, because attribution is courtesy where it is not obligation.

A discrepancy we are publishing rather than quietly working around: stimpunks.org/together/ currently attributes the drawing as CC BY-NC 4.0 — more restrictive than the release the artist announced. Stimpunks is outside this repository, so the correction is handed upstream and noted on the essay’s face rather than held until it is fixed.

CorrectionWe wrote a number we had not counted, in an essay about dropped qualifiers

The essay opened: “This essay is about a qualifier. Six words long…” — and never said which six. There are four: of an isolated system. The count was a flourish written without counting, which is precisely the fault Four Decimal Places (No. 79) is about, committed in the first sentence of a piece on dropped qualifiers. Caught by Ryan Boren, who asked which six. The opening now prints the law with the qualifier and without it, so the reader can see what goes missing.

And the essay never answered its own question. It argued that the running-down picture is misapplied without ever saying what is happening instead. A new section, Running through, not down, gives two answers: ours — Earth absorbs energy carried by low-entropy photons from a source at around 5,800 K and radiates it as high-entropy infrared at about 255 K, energy in and out nearly equal, far more entropy leaving than arriving, and every ordered thing here paid for out of that difference — and Yunkaporta’s, quoted in full on why an assumed isolation produces a straight line of time. No entropy ratio is printed: the commonly quoted figure depends on which fluxes are compared and published treatments differ by a factor of two or more, so the mechanism is given and the number withheld.

A correction that turned out to run the wrong way. The essay had said Yunkaporta writes closed where the precise word is isolated, implying he shared our imprecision. He does not. He uses closed system for the thermodynamic shorthand and, where he describes what the worldview actually demands, writes “systems must be isolated and exist in a vacuum of individual creation” — the stronger word, in the place it belongs. The imprecision was ours alone and the page now says so.

And the closing line was simply wrong. It read “It also never ran down — not here, not yet”, which contradicts itself and, read strictly, denies that the universe’s total entropy increases. It does; heat death is standard cosmology, and on Penrose’s account gravitational clumping is entropy increasing. The new ending concedes the cosmology and keeps the argument: the running-down story is a fact about a box that exchanges nothing with anything, and nothing you care about is that box.

RevisedThe essay’s first open item, closed the same day

The physics in Rainbow Serpents was given from teaching sources rather than a named authority, which the page flagged as its first thing to fix. It is now cited to Singh & O’Neill, “The climate system and the second law of thermodynamics,” Reviews of Modern Physics 94(1), 015001 (2022)read directly, and open access on arXiv.

It supplies both halves verbatim. Their equation (1) is the restricted form, “entropy S of an isolated system must not decrease with time,” and their equation (3) is the general one, dS/dt = Še + Ši, introduced with the observation that the climate system exchanges energy with space as radiation “and it is therefore not isolated.”

And the paper hands the essay its own thesis in miniature. The qualifier is not in their preamble or a footnote — it is printed as a parenthetical label on the equation itself: (isolated system). In the literature the condition travels attached to the formula. It is on the way out to daylight that it comes off.

Two consequences. The temperatures moved from ~5,800 K / ~255 K to the review’s own ~6,000 K / ~250 K. And the decision not to print an entropy-export ratio is vindicated by the source, which says “vastly more” and prints no multiplier either. The textbook behind them — de Groot & Mazur (1984) — is named and declared unread.

A coda was added at the same time, at Ryan’s suggestion: Yunkaporta on serpent law, ending “to recognize ourselves as processes rather than objects.” It is transcribed from speech, and the page says so twice — a false start elided, the punctuation ours, and no word changed, added or reordered. It sits before the sources so the last substantive word is his rather than our summary of him. What follows is marked as ours: an isolated system is a thing and an open system is a process, which is exactly the difference between the two equations — a box with contents, against a flux across a boundary somebody had to choose.

Also caught during the revision, by a gate rather than by eye: a .pull.cyan class carried over from the zine template, where pull-quotes have colour variants. The essay’s do not, so the class styled nothing. Removed — exactly the fault check-classes.mjs exists for.

CorrectionA heading that argued with the artwork — and the contradiction it exposed

The section featuring Kaya Oldaker’s dragon was headed “The dragon that is not a serpent,” sitting directly above the image, and its first sentence was a second negation. Three refusals before anything positive was said about the work. Ryan Boren flagged that it read as a categorical argument with the picture underneath it.

Retitled “The head does not take the tail” — the actual finding, which sends the reader into the image rather than against it. The positive account now comes first, and the conflation note moves to the end and is reframed as ours: the resemblance is an artefact of our running order, and it is “ours to manage, not hers to disclaim.” A settler-run essay has no business annotating an autistic artist’s work with a disclaimer about somebody else’s cosmology.

And fixing it exposed something worse two inches below. The next heading read “A deficit assessment is a closed-system model of a person” while its own body said “isolated-system model” — the precise conflation this essay corrects No. 43 for, committed in a heading here. An audit of every instance on the page found four loose usages of ours, all now isolated. Six remain and each was checked: one definitional, two quotations of No. 43, two describing Yunkaporta’s own usage, and one direct quotation of him.

SiteWhere the essay stops, and why that is the point

The essay does not explain the Rainbow Serpent. It is not one being, not one nation’s, and not ours — Yunkaporta says so himself of the one he describes: “many different names in different regions.” It is quoted and left there, with the reason for the restraint named plainly: the figure has one of the heaviest histories of commodification in Australian art, and a settler-run project adding one more explanation to that pile is not a contribution.

This continues the fence set in Already an Entity (No. 81) a day earlier rather than undoing it. The traffic runs one way: a criticism of our physics, from outside our discipline, checked. Three infinities are held apart — the ouroboros, the Rainbow Serpent, the autism infinity loop — and lineage between them is explicitly refused. They rhyme. Rhyming is not descent.

2026 · August 30

A river is the first author of a law journal article — and the flattering version of that story is wrong

The one zine in this series that ends without a claim about neurodivergent belonging. The last spread explains, at length, why not.

New pieceAlready an Entity — Zine No. 81, in More Than Human

In 2020, Transnational Environmental Law published “Recognizing the Martuwarra’s First Law Right to Life as a Living Ancestral Being.” The first-listed author is Martuwarra RiverOfLife — the river itself, in the Kimberley. It is reported as the first article in a law journal authored by a river, and it holds a research profile at Nulungu. The same year a paper in Challenges by eight Indigenous authors across four continents carried a dagger on its authorship line: “We formally acknowledge Mother Earth as our senior author, with her own presence and voice.” Both are indexed and citable. Neither is a metaphor.

The zine follows that bibliographic fact into the law behind it — and audits settler law rather than explaining anybody else’s. Aunty Mary Graham (Kombumerri) holds that ours is incomplete: “it is possible, even commonplace, to commit immoral and unethical acts of destruction that are not illegal.” She is quoted from her own Parrhesia paper rather than through an intermediary — “I am located therefore I am,” and the Land is the law.

Then the hinge, from Deborah Bird Rose: terra nullius rested on an ecological claim. Elkin, in print in 1938, gave “the mark of scientific authority” to the view that Aboriginal life was “parasitical” — and, in Rose’s sentence, “the idea that the land was untransformed led directly to the idea that land was unowned.” The management was there the whole time; it did not look like a fence. Rose’s own analysis reads totemism as “a jurisprudence of responsibility and right” with sanctuaries, species prohibitions and named parties who can forbid. Zoe Todd (Métis) shows the same move repeating on the climate and names it aer nullius.

And the celebratory rights-of-nature story breaks on its own primaries. Poelina and Perdrisat record increasing ambivalence about legal personhood among traditional landowners, because “the River is already an entity” and should not have to depend on settler law to achieve that status. To celebrate the conferral is to celebrate the gatekeeping.

Held honestlyThe zine makes no claim about us, and a book we own is named as a gap

Every other zine here ends by finding a claim about neurodivergent belonging inside a settled fact. This one does not, and spread twelve is the reason. Running that move on First Law would make physics or statute the validator of another jurisprudence, and Aboriginal Law an instrument for an argument of ours. The spread quotes Yunkaporta’s own definition of Indigenous and states plainly that this project does not meet it. Every person quoted is attributed to a nation, on the page, in a table: three Aboriginal nations with three bodies of law, and they are not a chorus.

Two cited papers were not read in full and say so — the Martuwarra TEL article, from which only the authorship fact is claimed, and “Stop Burying the Lede.” Graham’s 1999 paper is held as extracts only. And C. F. Black’s The Land Is the Source of the Law arrived too late to read, so it is named on the page as a gap rather than used as a source — a book we own and did not cite is a more honest line than a book we skimmed and did.

SiteA protocol two zines reached independently — and a numbering collision caught before shipping

While building this, we found that Nothing Melts (No. 77), built on Leanne Betasamosake Simpson’s Theory of Water, had already arrived at the same three refusals: no metaphor extracted from somebody’s cosmology, no physics validating the reading, and mark plainly which spread is ours. That convergence was not designed, and No. 81 cites No. 77 as a sibling in method rather than presenting the protocol as new.

And a correction to our own process. This zine was built as No. 76 against a working tree that had moved on — eleven commits had landed since No. 75, carrying Nos. 76 through 80. No. 76 is Forty Minutes to See. Renumbered to 81 across the zine and both cards, with the collection’s membership and the chain slot re-verified as unchanged and the five new zines checked for subject overlap. Numbers are load-bearing here and there is no redirect for a wrong one — the fix is cheap before a push and expensive after.

2026 · August 29

The most expensive smell on earth, and the reason it is not in the mushroom

Third piece today on the same fungus, and the one that goes into the nose rather than the economy. Smell had never been a subject on this site before.

New pieceThe Mushroom That Cannot Be Farmed — Zine No. 75, in Star Stuff

Matsutake is among the most expensive foods on earth and the entire price is for a smell — principally 1-octen-3-ol and methyl cinnamate, both of which decline as the fruiting body ages, which is why the grading, the button-stage picking and the airfreight all exist. Then the same molecules elsewhere: deer choose it over other mushrooms, bears dig ditches for it, Oregon pickers told Anna Tsing of elk with bloody muzzles from driving their faces into pumice soil to reach it — and in the same ground, “slugs, other fungi, and many kinds of soil bacteria are repulsed by the smell, moving out of its range.” An elk digs until it bleeds; a bacterium leaves. Nothing about the molecules changed between those two sentences.

So the fact the zine follows is ordinary sensory biology: a smell is not a property of an object. It is a binding event between a molecule and a receptor, and if the shape does not fit, nothing happens — not a faint smell, nothing. Humans carry about 400 intact odorant receptors, and somebody counted how much they vary. Mainland and colleagues, in Nature Neuroscience in 2014: “63% of the odorant receptors we examined had polymorphisms that altered in vitro function… on average, two individuals have functional differences at over 30% of their odorant receptor alleles.”

The worked case runs from a letter of DNA to a word said out loud. Keller and colleagues (Nature, 2007) found androstenone “variously perceived by different individuals as offensive (‘sweaty, urinous’), pleasant (‘sweet, floral’) or odourless” — and traced the difference to two amino acid substitutions in one receptor, OR7D4. Foul, lovely, or absent; three people, one bottle, and nobody misperceiving. Which is what Tsing was already describing about the autumn aroma: “Many people never learn to love it… Some people liken it to rotting things and some to clear beauty.”

And the title’s other half sits underneath it. Seventy years have not produced a cultivated matsutake either, because it is a fungus and a pine root exchanging. You cannot farm the first and you cannot standardise the second — it is the same refusal, twice. The turn: “normal” is a statistic about a population, not a fact about a person, and there is no reference nose kept in a vault.

Held honestlyThe zine’s central join is ours, and it says so three times

No study links matsutake aroma to odorant receptor genotype. The receptor work is general and names other molecules; Tsing’s observation that people split between “rotting things” and “clear beauty” is ethnography gathered over years of fieldwork, not a controlled study. Joining the two is the zine’s own move, and it is printed as a plausible mechanism rather than a demonstrated one — on the spread, in the refusals and in the colophon. A piece arguing against overstating what arrived in somebody has no business overstating its own case.

Both receptor papers are read at their abstracts only, obtained through the Europe PMC API after nature.com returned a paywall redirect and PubMed a cookie wall. Everything quoted is verbatim from those abstracts and nothing is characterised from the bodies. The papers’ own hedges are kept: Keller’s carriers are less sensitive “as a group,” and Mainland’s OR10G4 effect explicitly does not hold for the weaker agonists vanillin and ethyl vanillin — a limit printed on the spread rather than rounded off.

One claim softened and one number refused: “most expensive food on earth” is written as “among the most expensive,” and no price appears anywhere, because matsutake prices swing by an order of magnitude with season, origin and grade and a figure would be obsolete before the page was.

SiteThree pieces on one fungus in a day, and how the overlap was avoided

No. 74, Field Guide No. 21 and this all use matsutake, which is a real duplication risk rather than a theme. So the cultivation fact — the payload of No. 74’s links 8 and 9 — is demoted here to a single spread of setup, and the satoyama material is not reused at all, because it belongs to No. 74’s tenth link and the field guide’s first card. What was left unspent was the smell: no page on this site had treated smell as a subject before — not one carried more than two mentions of olfaction, anosmia or the sense of smell. Star Stuff moves to 32 pieces, and its derived line about how many were made much later moves with it.

2026 · August 29

Thirteen habitats we made by accident — and, on every card, the improvement now removing it

The catalogue for the chain published earlier today, built out of its tenth link. Not one of the improvements named on these cards should be reversed, which is the difficulty the guide is about.

New pieceA Field Guide to Third Nature — Field Guide No. 21, in Field Guides

Anna Tsing’s third nature is what manages to live despite capitalism. This asks what it is actually living on — and the answer, thirteen times over, is a by-product of human work that nobody recorded as a support. Corncockle did not tolerate farming, it was farming: harvested, stored and re-sown with the grain every year, until better seed cleaning screened its large seeds out of the sack. The corncrake needed a late, slow cut; when that requirement was finally written into a scheme the population went from 480 to 589 calling males in five years and 1,289 by 2014 — and slipped again when the prescriptions changed. The high brown fritillary is the card that embarrasses an instinct: leave the woodland alone is the mechanism of its loss, because it needed the coppice rotation to keep opening clearings.

Calaminarian grassland is the sharpest case. Lead and zinc mining left ground so toxic that almost nothing grows — which is why something rare does, and why it is now Annex I habitat 6130, protected under European law. The metallophytes are not tough; they are poor competitors that win only where everything else has been poisoned out. Spring sandwort was known to miners as leadwort because it showed them where the galena was, and then colonised what they left. The North Pennines survey records the whole guide in one sentence: a lichen “was abundant around the remains of Nenthead smeltmill until the restoration of Nenthead Mines.”

The section on structures runs as a gradient of dependence — black redstarts breeding on Blitz rubble and declining city by city with regeneration; swifts losing gaps that insulation closes; chimney swifts, who turn out to have kept a wild option after all; and the eastern purple martin, of which there is no documented nesting in a natural cavity, an arrangement first recorded in Choctaw and Chickasaw gourd housing in the 1700s. The peregrine closes that section going the other way, because a catalogue that only ran one direction would be a mood rather than an argument.

Twelve cards carry a “sounds like / actually” table. One deliberately does not — see below. It arrives at a support nobody named is a support nobody defends, and it does not join the collection’s “there is no standard anything” pattern; that count was re-derived and left at thirteen.

Held honestlyOne card gets no reframe table, one figure was refused, and one source did not say what we expected

The Chernobyl Exclusion Zone card is dashed and carries no “sounds like / actually” table. Deryabina and colleagues (Current Biology, 2015) report large-mammal abundances comparable to uncontaminated reserves and wolves at more than seven times the density; Møller and Mousseau’s programme reports the reverse for other taxa. The disputes are methodological — sampling concentrated in the Red Forest, treatment of ingested and inhaled dose, reanalyses finding effects only at higher doses. Filling in an actually column would mean picking a winner in a live scientific dispute and presenting it as a correction. The guide takes no side and says why on the card.

A figure refused. Popular accounts of the peregrine’s pesticide crash often give “only three breeding pairs” at the 1963 low. We could not reconcile that with the national survey history, so the card prints no low-point figure at all rather than repeat one we cannot stand behind.

And the obvious source did not support the obvious claim. The calaminarian card’s argument is that remediation removes the habitat — so we went to JNCC’s own Annex I account for it, and it is not there: JNCC describes the toxicity as maintaining the habitat and lists no reclamation threat. The threats quoted on the card come instead from Janet Simkin’s report for the North Pennines AONB Partnership, read directly. We say on the page that we checked JNCC and it does not make the claim, rather than quietly sourcing it elsewhere and letting the stronger name sit next to it.

CorrectionA textbook case fell over in October 2025, and the Field Guides page was quoting an impossible number

The London Underground mosquito — sealed into the tunnels from the 1860s, speciating underground — was one of the best short stories in evolutionary biology for twenty-six years. In October 2025 a Princeton team published a genomic analysis of around 350 samples in Science placing the origin of Culex pipiens f. molestus above ground in the Mediterranean basin over a thousand years ago, plausibly with early agriculture. The accidental habitat was real and three orders of magnitude older than the Tube. Nobody was careless: Byrne and Nichols read the 1999 data correctly, and the genomes that overturned it did not exist. Richard Nichols’ reported response — that the new work is convincing, and that this is how science works — is printed next to the correction.

And a count of our own. Field Guides read “Nineteen guides, 234 entries. Or 231 cards” — which is impossible, because cards must outnumber entries. The entries figure had been updated when the rainbow guide landed and the cards figure had not. Re-derived from the anchored records in the search index: twenty guides, 263 cards, seventeen withheld, 246 entries, corrected in all six places it appears. Not one of the eight gates can read a number written out in a sentence, and this one had been contradicting itself in public.

2026 · August 29

Sameness had to be built, and the bill was paid by people — a chain from the sugarcane plantation to the mushroom nobody can farm

The eleventh chain in How We Got Here, and the first piece on this site to draw on Anna Tsing. It withholds its own format on one link, on purpose, and says so on the page.

New pieceOblivious to Encounter — Zine No. 74, in How We Got Here

Sugarcane is propagated by pushing a cut piece into the ground, so every plant is the previous plant again. It can be multiplied forever without anything ever meeting anything — which is what Anna Tsing means by “comparatively self-contained, oblivious to encounter.” Portuguese Brazil assembled that cane with land emptied by conquest and with enslaved Africans taken far enough that there were, in her words, “no established routes for escape.” Interchangeability was not discovered in people. It was produced in them, by force, because the mill needed it as an input.

Sidney Mintz supplies the mechanism. On Barbados, holdings were cut into equal ten-acre parcels planted and harvested seriatim, “assuring a steady flow of cane to the mill”; the mills “operated unceasingly”; the only break in the work week ran Saturday night to Monday. The land was re-cut so the machine would never be idle. And part of that pace, Mintz notes, came from what he calls a “somewhat misleading idea” about when boiling syrup may be allowed to cool — so the demand had already outrun the chemistry it claimed to serve.

Tsing names the resulting idea of progress scalability: the ability to change scale “without any change in project frames.” Its price is one sentence, and the clause after the comma is the whole argument — it “banishes meaningful diversity, that is, diversity that might change things.” Difference that changes nothing is fine. What cannot be admitted is difference that would make you re-plan. She adds the line that ought to be printed larger: “Scalability is not an ordinary feature of nature. Making projects scalable takes a lot of work.”

Then the chain crosses rails. Matsutake has defeated seventy years and millions of yen; the 2020 Mycoscience review still reports cultivation “mostly unsuccessful.” The only field successes used pine already colonised — so the only way to farm it is to already have the relationship, and wait. It exists solely as an exchange with a tree, which is why it will not travel. And in Japan it was lost not to destruction but to abandonment: fossil fuel replaced firewood, the unworked woodlands went shady, the shade-stressed pines died of a nematode, and by the mid-1970s it was rare. A support nobody had ever named, removed by improvements aimed at something else.

The turn is tagged leap and argues against itself on the spread: an accommodation is, by definition, a difference that requires the frame to change — which is exactly what a scalable system is specified to exclude. Ten links and a turn; nine documented joints, one contested, one leap. Refuses enslaved people as metaphor, ruin as an aesthetic, thriving through adversity, and “nature says be kind.”

Held honestlyWe kept a hedge we could have dropped — and left out the book’s most famous line entirely

Mintz’s strongest claim is that industry existed on the colonial plantation before it existed in the homeland. Every source we could reach independently was an aggregator or an essay mill citing “(Mintz 47)”, so Ryan Boren supplied the page from his own copy. Two things came back. The page argues priority, not transmission — a different and harder claim than the gloss that cites it, and one the chain was rebuilt around, upgrading that joint from contested to documented. And Mintz marks it, in his own words, “I believe it was probably the closest thing to industry that was typical of the seventeenth century.” The zine prints the hedge. It would have been punchier to write “Mintz proved”; he did not say that.

And the line everyone quotes from Tsing is deliberately absent. The Mushroom at the End of the World opens on the story that the first living thing to emerge from the Hiroshima blast was a matsutake. Her own text prefaces it “it is said.” Her endnote says traders told her the story, “which I took to be urban legend,” that a scientist confirmed it had run in Japanese newspapers in the 1990s — the story, not the event — and then: “I have not yet found it.” Status: unverified at source. Not false, not confirmed. It is now logged in Too Good to Check as the cleanest case on that page of a hedge that died in quotation while the author did nothing wrong — she qualified it twice, in print, and the qualifier is simply the part that makes a sentence longer without making it better. That page’s worked-correction count goes from seventeen to eighteen.

CorrectionWe had the wrong number on one of our own zines, four times over

The new chain hands off to The Elimination of Waste, and cited it as No. 50 in four places — its series list, its hand-off callout, its colophon, and both index cards. It is No. 43. No. 50 is The Sky Was Not Regular Enough. The error came from reading a membership list in our own working notes and assuming the order matched the numbering. Caught before shipping, by re-deriving the collection’s joint tally from the pages instead of trusting the figure — which is the habit that also confirmed the eleven-chain totals below. The number says when; assuming it says anything else is how this goes wrong.

SiteThe chain collection’s tally re-derived rather than incremented

How We Got Here now runs eleven chains. Its tally was recounted from the pages themselves — every joint tag that opens its own paragraph, across all eleven zines — giving 102 documented joints, 25 contested, 10 leaps, and confirming the previous figure of 93/24/9 had been right before this addition. The hero count moved 10 → 11. Two faults were also found by eye that no gate here can see: the cover motif cleared a label by a single pixel, because shape-over-text is explicitly outside what the overlap checker measures; and the mycorrhiza diagram drew the mushroom beside the underground colony rather than rising from it, which is a drawing that means the wrong thing and is invisible to tooling.

2026 · August 29

Trauma work built a dozen words for a nervous system going badly. The opposite got one, in 2018

The piece three earlier attempts could not write, because they kept filing it in the wrong collection.

New pieceOne Word for the Opposite — Zine No. 80, in Star Gazing

Write down the words for a nervous system going badly — trigger, flashback, hypervigilance, activation, dysregulation, rupture, freeze, fawn, shutdown, overwhelm. Now write down the words for a small moment in which one registers that things are all right. There is one. It is glimmer, and it was coined in 2018. That asymmetry is the whole finding, and it needs no laboratory: language grows where the pressure is, and nobody ever had to convince an institution that a moment of quiet was real in order to be believed.

The word is Deb Dana’s, offered as the counterpart to triggers, and it arrived inside polyvagal theory — influential, and contested. So the zine answers the obvious question head-on: does a good word stop being good if the theory it arrived in is wrong? No. Words and theories are different objects with different failure modes. Helen Edgar puts it plainer: glimmers need not relate to polyvagal at all, being simply the opposite of triggers — moments of joy and comfort, sensory or cognitive. Her monotropic reading is the definition the piece works from, and it explains why glimmer lists fail as advice: the alignment is between a particular bodymind and a particular room, and nobody else is standing in it.

Held honestlyA glimmer is probably not a dopamine hit, and two of the five theories are having an argument

The dopamine question, answered rather than dodged. Berridge and Robinson separated wanting from liking: dopamine carries incentive salience — wanting — and is conspicuous for failing to raise the pleasure of a sweet taste. Liking runs on opioid and endocannabinoid signalling in hedonic hotspots about a cubic millimetre across, where mu-opioid activity can more than double liking reactions. A glimmer is not the pull toward something; it is the quality of a moment already arriving. So it is probably the wrong molecule — and that is better news, because the dopamine story quietly makes a glimmer into a reward that has to be chased. It is on the page as a correction, not as a foundation, which would have reintroduced the error the zine exists to avoid.

And a note on the five theories. The list circulated in trauma-informed circles — Porges; Thayer et al.; Grossman & Taylor; Lehrer; McCraty & Childre — reaches us via Janae Elisabeth’s Trauma Geek, crediting Sarah Schlote. They are five competing readings of largely one measurement, and two of them are the opposing sides of an unresolved argument: Grossman & Taylor (2007) is the standing critique of polyvagal theory. That observation is ours, and it is not a criticism of her article — a practitioner naming the models she works between is doing something reasonable. The point is only that they cannot be stacked.

The filing was the fix. Three earlier attempts at this piece failed the same way, and No. 78 shipped and had to be repointed because of it. Each tried to put glimmers in Star Stuff, whose register demands one settled fact. Glimmers has none, so each attempt either leaned on shaky ground or tied rigorous physics to the subject by a thread. The topic was never the problem. The collection was. Star Gazing exists for possibility rather than proof, and the colophon says so on the page rather than leaving it as invisible editorial history.

2026 · August 29

A number to four decimal places said where a human life begins to go well, and a part-time student took it apart by reading the source everyone had cited

The twelfth chain, and the one whose moral this house has been printing on every page for a year.

New pieceFour Decimal Places — Zine No. 79, in How We Got Here

Lorenz published Deterministic Nonperiodic Flow in 1963 — a real result about atmospheric convection, checked exhaustively ever since. What travelled fastest afterwards was the register: nonlinear dynamics acquired a rigorous-sounding authority outside physics that was hard for a non-specialist to check. In 1999 Marcial Losada fitted Lorenz-type equations to speech coded as positive or negative in business meetings — equations derived for fluid convection, applied to things people say at work, justified by both being complicated. Being complicated is not a shared mechanism.

In 2005, in American Psychologist, Barbara Fredrickson and Losada produced a number: flourishing begins at a positive-to-negative ratio of 2.9013, and fails again above 11.6346. Four decimal places, on the ratio at which a life begins to go well. The precision was doing specific work — a number given that precisely claims an instrument was involved. Fredrickson’s 2009 trade book then rounded it away on its own cover, as the 3 to 1 ratio that will change your life. The decimals bought credibility at the journal and were friction at the bookshop.

Then a part-time student. Around 2012 Nick Brown, in his fifties, taking an applied positive psychology master’s at the University of East London with no mathematics past school, met the paper on his course and could not find where the data entered the equations. So he went and read Lorenz 1963. With the original in front of him the equations turned out to have no connection to the emotion data at all — they would generate the same numbers whatever anyone had reported. He wrote to Alan Sokal; with Harris Friedman they published in American Psychologist in July 2013; the modelling and both ratios were withdrawn, Losada declining to co-sign.

Ten joints — eight documented, one contested, one leap. The contested one is what survived the retraction, which is a live disagreement between named living researchers that this chain does not adjudicate. And it judges the paper rather than the people: Lorenz was right, borrowing across fields is how much good work happens, and Fredrickson corrected her own paper, which is the system working — slowly and embarrassingly, which is the only way it ever works. The failure worth studying is not that somebody was wrong. It is that it took eight years and a stranger.

Substantially revisedA coda added the same day, and its main finding is that there is no connection

Ryan asked the obvious next question: is the positivity ratio used directly by ABA, PBIS or behaviourism? Schools run on ratios of exactly this shape — 4:1 and 5:1 praise to correction, repeated throughout positive behaviour support training. So a fourteenth spread was added to answer it.

The answer is no, and the spread says so rather than inventing one. We could not establish a citation from that literature to Fredrickson & Losada. Asserting an undocumented connection would have been this chain’s own error committed in its final spread, so the coda carries no joint tag and no spine and declares itself not a link — which leaves the joint count at ten and the collection tally untouched.

What is there instead is a genre, with its own ancestry: Gottman’s 5:1, which is an empirical description from observed couples and was never claimed as a constant derived from mathematics — and he is widely reported as saying he never understood the Fredrickson–Losada mathematics and got no reply when he asked — and Flora (2000), where 5:1 becomes the magic ratio in education. A chain can be cut at the retraction. A genre reproduces without a source, so there is nothing to retract, and the classroom ratio is entirely untouched by what happened to 2.9013.

And the field has already audited itself, which the spread credits. Sabey, Charlton and Charlton (2019) report good face validity and “a lack of empirical support for any specific ratio” — the same correction Fredrickson made, from inside. Positive greetings at the door is the worked example precisely because it is a good practice, and the tell is what its evaluation measured: academic engaged time and disruptive behaviour, not whether any child felt welcome. With Ehrenreich on positive thinking as an apology for the crueler aspects of the market economy, whose flip side is a harsh insistence on personal responsibility. The spread closes by stating its own limits: greeting children warmly is good, a high ratio is better than a low one, and the claim is only that no specific number has support, and that specifying one turns a disposition into an instrument.

Held honestlyA chain about reading the primary source, which has not read its own

The hinge of this chain is a man reading Lorenz 1963, and we have not read Lorenz 1963. It is cited at the level of its standard description. The colophon says so in those words, because a piece whose moral is go and read it cannot quietly not have, and it is flagged for closing before any reprint. Two smaller items: Brown’s biography is assembled from contemporaneous press accounts rather than from him, and nothing is quoted from him; the 2005 and 2013 papers are cited from their publication records and consistent secondary accounts rather than read in full.

The chain draws a boundary with our own shelf, and it is the sharpest thing in it. Five Times a Crab (No. 31) borrows attractor from that same 1963 paper — openly, as a named image, with the source given. Same paper, two borrowings. The difference is whether you say which one you are doing. Found by grepping our own corpus before writing, which also turned up a false positive worth recording: the “Losada” in Even Fallen Light Glows is Editorial Losada, Neruda’s publisher.

The joint tally was re-derived rather than incremented. Twelve chains now carry 110 documented joints, 26 contested, 11 leaps, up from eleven chains at 102 / 25 / 10 — and the derivation independently reproduced the page’s existing figures, which is the check that the method is sound.

2026 · August 29

Knowing exactly where a problem lives does not make it cheap to fix — it only makes it impossible to keep blaming the wrong thing

Shipped in the morning pointed at the wrong argument, and repointed the same day. The account of that is in the zine, not only here.

New pieceYou Cannot Correct the Sky — Zine No. 78, in Star Stuff

A star that appears to be flickering wildly is not flickering. Its light crossed the whole distance without incident and reached the top of the atmosphere still steady; everything that happened to it happened in the last few microseconds, crossing air made of cells at slightly different densities. The control experiment is free every clear night: through the same air, planets barely twinkle, because a star is effectively a point and a planet presents a disc whose parts sample different cells at once. Their angular diameters are so large as to quench the scintillations — quench, not resist. Nothing about a planet is tougher.

Then the hinge. Every remedy is applied to the conditions, never to the star: wait for altitude, spend billions to get above the air, or cancel the distortion with adaptive optics — which needs a guide star, covers a small patch, and blurs again within milliseconds of the loop opening. It was never a fix. It is a subscription.

And somebody already made this argument about people. The social model of disability performs the same relocation — a person is disabled by a world built to a narrow specification, not by their body — and that move was necessary. It is also the free part. It costs nothing, takes an afternoon, and has never by itself produced a single ramp. Everything after it is the deformable mirror, with the mirror’s properties: expensive, limited in coverage, needing somebody to keep it running, and failing at once when the funding stops. The people who locate the problem in the person are wrong, and being right about that has never built anything. What it settles is whose problem it is, which is the argument that has to be won before anybody is asked to pay.

Substantially revisedThis shipped hours earlier as The Star Is Not Flickering, and was pointed at the wrong thing

The zine was published this morning framed around glimmers — Deb Dana’s coinage, read through monotropism in Helen Edgar’s essay, which is what sent us to the subject at all. That framing had a defensible reason and a bad result. Glimmers belongs to polyvagal theory, which is scientifically contested, and a piece in this collection is meant to rest on one settled fact — so the argument was moved onto optics while the word was kept as the frame.

Ryan named the failure and he was right. The tie was thin, and removing the framework had removed the feeling. A glimmer is the counterpart to a trigger: it is about a moment registering as safety. The optics is about the attribution of unsteadiness. Those are not the same idea, and the zine was left pointing at something it could no longer reach — more rigorous and less alive, which is a bad trade.

So it was repointed onto the sentence already sitting in it doing nothing. Glimmers, Deb Dana and polyvagal theory are out of the argument entirely; they are named once in the colophon, because they are why the piece exists and because deleting the record of a wrong turn is the opposite of what this page is for. The optics is unchanged. The last four spreads, the title and the cover are new, and the old slug redirects rather than 404ing.

2026 · August 29

Separate things can become a structure that carries weight without any of them ceasing to be separate

A zine held until its framework could be read at the book — which then turned out to contain the zine’s own title, in a parenthesis.

New pieceNothing Melts — Zine No. 77, in Star Stuff

Walk on hour-old snow and you go through it. Walk on the same snow two days later and it carries you. Nothing was added and nobody packed it. Sintering joins a heap of loose grains into a material — and the obvious way to do that, melting them so they run together, is precisely what does not happen. The grains bond below the melting point, never liquefy, and stay individual crystals with their own boundaries.

The best fact is why the bond forms where it does. Ice sublimes constantly, and the rate depends on the shape of the surface: a convex grain gives up more vapour, a concave hollow gives up less. So vapour leaves the rounded outsides and condenses in the crevice between two grains, because that is where the vapour pressure is lowest. The neck fills in because it is a neck — and nothing arrives from outside, so the joint is paid for out of the substance of the things being joined. It happens only at genuine contact, and only when conditions allow: fast near zero, nearly stalled in deep cold. What it buys is not hardness but load-sharing. Each grain stays as fragile as ever; no grain has to bear the whole thing alone.

Then the cost, which the piece marks clearly as ours and not our sources’. Sintering is also how a cohesive slab is made, and a cohesive slab over a weak layer is the avalanche condition — the same connectedness that carries weight is what lets a fracture cross the whole of it at once. And the failure is not in the necks. It is in the weak layer underneath, which the bonding above cannot reach. Bonding to each other does not fix what you are all standing on.

Held honestlyThe framework is not ours, the title turned out not to be either, and the page numbers were never wrong

The reading of sintering as coalition is Leanne Betasamosake Simpson’s, in Theory of Water: Nishnaabe Maps to the Times Ahead, ch. 4. Helen Edgar applied it to neurodivergent community in Sintering: Neurodivergent Community Building, which is the seed of this zine. Only the physics and the avalanche are ours, and spread ten sets out that order — her framework, Helen’s application, our physics — because it is the order the knowledge actually travelled.

The zine was written with spread ten visibly unfinished, carrying a dashed panel saying we had not read her chapter, rather than quoting her at second hand. Reading it changed three spreads. It also contained our title. We had named the piece from the physics; Simpson makes the same point herself, in a parenthesis, describing bonds forming “at temperatures below zero (this is not a melting process).” Spread three now credits her for it. She also names the cost better than our draft did — “Sintering is slow deformation,” and “Sintering in the forest is easy for me; sintering with people I’m currently sharing the planet with, much more difficult.”

And a non-discrepancy, published so it is not mistaken for one later. Helen cites the passage at page 18; the copy read here shows it at page 28. Neither is wrong — she reads the paper edition and this was the Kindle edition, and their pagination differs. The zine therefore cites by chapter, because a page number that holds in only one edition is not a citation another reader can follow. An earlier draft of our own ledger row framed this as an error in Helen’s citation; it was not, and that has been corrected.

2026 · August 29

The most-repeated result in vision science is a promotion of a claim about a cell into a boast about an organ

A zine held until its load-bearing paper was read at source — which then corrected the famous sentence and merged two spreads into one argument.

New pieceForty Minutes to See — Zine No. 76, in Star Stuff

Your eyes do not gradually get used to the dark. Two systems hand over, and the handover leaves a visible kink in the measurement. Cone thresholds fall fast and flatten in five to ten minutes; then the curve breaks downward and keeps falling — the rod–cone break — to a second, far lower plateau at forty to fifty minutes. The satisfying part is over in ten. The part that delivers the sensitivity takes four times as long and produces no sensation of progress at all, so anyone judging by feel concludes they have finished when they have just completed the shallow part.

The costs are stated rather than skipped: one pigment, so colour is not a defined quantity; heavy pooling buys the sensitivity and is paid for in acuity; and forty minutes is forty minutes. A tuning is not a ranking. Then the geometry — the fovea is rod-free, so a faint enough star goes out when you look straight at it, and observers train averted vision deliberately.

It closes on the asymmetry and its fix. Forty minutes to build, an instant to destroy, and the person holding the torch spends nothing while the person who waited pays in full. But rods barely respond to long wavelengths, so red light lets you see and keeps the forty minutes. Observatories, ships’ bridges, submarines and darkrooms are lit in red. Nobody arrived at that by asking the observers to adapt faster. Assemble the whole description — needs forty uninterrupted minutes, gives no signal while working, resets to zero at no cost to the interrupter, no colour, poor detail, only works off-axis — and it reads exactly like a deficit list. Nobody has ever treated it as one, because everybody has it.

Correction“The eye can detect a single photon” is not what the paper says

The zine was held until Hecht, Shlaer & Pirenne, “Energy, Quanta, and Vision” (Journal of General Physiology 25, 1942, 819–840) could be read at the paper rather than through reviews. It was, and it corrected the sentence everyone quotes.

The circulating version is the human eye can detect a single photon. The paper’s own conclusion is narrower: “in order for us to see, it is necessary for only 1 quantum of light to be absorbed by each of 5 to 14 retinal rods.” One quantum per rod; five to fourteen rods for a person to see anything. The single-photon claim is true of the receptor and false of the observer, and the popular telling quietly promotes a precise statement about a cell into a boast about an organ. That is the smoothed-retelling failure Too Good to Check catalogues, sitting on one of the most-cited results in the field.

And reading the methods merged two spreads into one argument. The measurement was taken “20° temporally on the horizontal axis” — recorded as convenience, but not optional, because the fovea is rod-free and there are no rods at the centre to catch the quanta. Averted vision had been drafted as a separate idea two spreads later; it is in fact the precondition of the number. The most precise determination of the limit of human sight was obtained by looking away from the thing being measured.

Held honestly: the adaptation timings, the rod-free fovea and the density peak near 20° come from review literature rather than named primaries and are stated as approximate. Three things are refused on the page rather than only in the colophon — that interrupted attention and bleached rhodopsin are the same phenomenon, that retinal anatomy licenses anything whatever about how a person should be looked at, and that forty minutes is universal.

2026 · August 29

Eighteen beautiful words for Autistic joy, and what is actually holding each one up — which turns out not to be one kind of thing

A guide whose sort is a finding rather than a plan, and which corrects three of its own words’ provenance on their faces.

New pieceUnder the Word — Field Guide No. 22, in Field Guides

Built on Words: Inspired by the experience of being monotropic, a free open-source community e-book by Helen Edgar (Autistic Realms), Marion McLaughlin (Aurora Consulting) and Felicity Goodhall (Flappy Inky Feathers), who credit @aesthetic_logophile and Tom Read Wilson’s On The Tip Of My Tongue among their own sources. The edition read here is the January 2025 PDF, and the guide says so — the booklet is living and still being added to. The words are theirs and the monotropic reading quoted on every card is theirs. What this guide adds is the provenance and the mechanism.

The plan was to sort by feeling — joy, longing, solitude, kinship — and it collapsed immediately, because the feelings overlap almost entirely and the sort carried no information. What actually divides these words is what you find under them, and it is not one kind of thing. Thirteen have a mechanism, startlingly often variation: a brook is air bubbles ringing at a frequency set by radius alone, so the sound only works because no two bells match (Minnaert, 1933); the bright spots under a tree are pinhole images of the Sun, which is why they all become the same crescent in a partial eclipse; the glitter path on water points at you and nobody else’s road shares a single wave; blossom order is four thermostats rather than four runners. Five have a person instead — and that is a firmer foundation, not a weaker one, because a person can be checked.

Its own line: there is no standard way to be moved. The mechanisms are public and identical for everyone; what a given bodymind does on meeting one is not.

Held honestlyThree of these words are not what the word-lists say they are, and the cards say so

Coddiwomple is not old English slang. It is sold as such almost everywhere it appears; there is no historical attestation, and the evidence points to an online coinage of the late 2010s. Marmoris does not mean “the shining surface of the ocean” — it is the genitive of Latin marmor, marble, and the oceanic sense appears to have been assigned on an aesthetic word-list. Hyompora has no attested source at all, in Greek or anywhere else, and we looked.

None of that is a failure of the booklet, which credits its own sources plainly as “various sources across the internet” — the honesty is what made this work possible to do. And a community that reaches for a word, does not find one, and makes one is the most Star Stuff thing in the collection. What would be dishonest is selling recent invention as inheritance, so the cards grade provenance instead of flattening it.

Two glosses are corrected more gently: the famous English definition of toska is Nabokov’s translation note rather than a dictionary entry, and duende’s aesthetic sense was argued by Lorca in a lecture in 1933 — the ordinary Spanish word names a house-sprite. And one card’s honest answer is that there is no finding: limerence was coined by Dorothy Tennov in 1979 and has never entered any diagnostic manual. A guide claiming to put science under words has to be able to say when the answer is a word, and no finding yet. The bouba/kiki figure is printed as 17 of 25 languages after Ćwiek et al. (2022) rather than “universal,” because the three where it failed are the interesting part.

SiteThe Field Guides collection was miscounting itself, and disagreeing with itself

Counts re-derived rather than incremented: summing per-guide records in the search index across the twenty-one collection guides gives 281 cards, and subtracting the seventeen cards deliberately not filed as entries gives 264 entries. The page said twenty guides, 246 entries, 263 cards.

It was also disagreeing with itself in a way nobody would notice by reading: the visible page said twelve guides arrive at “there is no standard anything” while its own structured data said thirteen. Reading every hit rather than counting them gives thirteen before this guide and fourteen with it — one guide matches the phrase precisely in order to decline it, and must not be counted. Corrected in all five places it appears. Not one of the eight gates can read a number written out in a sentence.

2026 · August 29

Six ways a moss fails as a plant, every line of it true — and the review paper that shows the list is running backwards

A zine that spent a day visibly unfinished on one spread, because the book it needed was not in the house and we would not quote through two intermediaries to avoid saying so.

New pieceMeasured Against a Tree — Zine No. 73, in Star Stuff

Take a tree as the definition of a plant and a moss fails at six points: no roots, no vascular tissue, no way to lift water, no height, no control of its own moisture, and no photosynthesis at all while dry. Every line is accurate, and the zine keeps the whole list intact to the last spread. Botany has proper names for the split — a moss is poikilohydric, its water content tracking the air around it, where a vascular plant is homoiohydric and holds an interior against the outside. The tree’s entire apparatus is the price of that holding, and its failure mode is not a pause but death.

Then the finding that inverts the list, and it came from the review paper rather than from any essay about moss. Proctor, Oliver, Wood, Alpert, Stark, Cleavitt and Mishler, in The Bryologist in 2007, record that desiccation tolerance is a primitive character of land plants, lost in the course of evolution of the homoiohydric vascular-plant shoot system, but retained in spores, pollen and seeds, and re-evolved in the vegetative tissues of vascular resurrection plants. The moss did not fail to acquire the tree’s solution. The tree discarded the moss’s — kept it for the one job where nothing else would do, which is why every seed in a packet is doing what a moss does, and some lineages later evolved their way back to it.

What drying is gets stated without comfort: the cytoplasm enters a glassy state, and a 2013 paper is titled for the result — “Evidence for the absence of enzymatic reactions in the glassy state.” It is not resting. It has stopped, and stopping is what conserves it, at the cost of the whole of the time. Then water arrives and net photosynthesis is substantially normal again within thirty to sixty minutes, because nothing had been dismantled. Chorisodontium aciphyllum regrew after at least 1,530 years frozen in Antarctic permafrost — and the zine keeps that apart from the drying case on the spread, because freezing is a different mechanism and one impressive number should not stand for two.

It closes on peat: Sphagnum holding, on 3% of the world’s land, roughly twice the carbon in all the world’s forest biomass — the careful wording, kept because the loose version travels further. Six refusals, including that moss is not secretly tougher than trees, that small is beautiful is not on offer, and that resilience is never a demand. Twelve spreads, three figures. Developed after Helen Edgar’s Mossy Minds & Monotropism, whose line about moss’s “quiet deep greenness of a million shades” is why the zine is green.

Held honestlyOne spread shipped to the editor with a dashed box on it saying we had not read the book

The boundary-layer spread needed Robin Wall Kimmerer’s Gathering Moss (2003). We did not have it. Helen’s essay credits the book but reaches it through Maria Popova’s account at The Marginalian, so quoting Kimmerer from there would have been three removes from the source — the same shape as the Baldwin misattribution this site has already published and corrected. Our own library was searched first and settled it: Braiding Sweetgrass is on the shelf, Gathering Moss is not.

So the spread was built with the physics it could stand on and a dashed panel on the page saying plainly that it was unfinished and why, and the zine was held rather than shipped around the gap. Ryan supplied the chapter; it was read at the book; the spread was rebuilt. We are publishing that sequence rather than the tidy version, because the tidy version is the one where nobody ever finds out how close a three-step citation came to going live.

The book then changed the spread twice, and both changes beat the draft. The draft had the boundary layer as somewhere a moss is small enough to enter — true, and static. Kimmerer has it built: friction makes the layer, and leaf texture makes friction, so “the greater the resistance, the deeper the boundary layer” and “the larger the boundary layer, the larger the moss can be.” A loop, not a niche. And boundary layers nest — a rock’s sits under the forest’s umbrella, so the tree that wins every contest for light is also the reason a moss can be large. That argues against the zine’s own title, which is why it is on the spread and in the closing line rather than left out.

Three source items remain open and are named in the zine’s colophon: the Proctor review was read at its abstract and secondary accounts rather than the paywalled full text; the recovery figures are pinned to review literature rather than one primary paper; and the peat numbers came from UNEP’s framing rather than the Global Peatlands Assessment. None is a quotation, and all three are marked as approximate where they are used. Kimmerer’s carbon-dioxide baseline of ~380 ppm is from 2003 and has moved since, so the spread quotes the multiple rather than reprinting the reading.

SiteTwo counts on the Star Stuff collection page had gone stale, as they always do

Adding the zine pushed Star Stuff to 31 pieces; the page still said 30, and its derived line about how many were “made much later” — the total minus the seven founding zines — still said twenty-three. Both corrected. Not one of the eight gates can read a number written out in a sentence, which is why these are checked by hand on every addition and why they go wrong anyway.

2026 · August 29

Ten bows drawn to one scale — and a 22° ice halo turns out to be half a rainbow’s radius, on the other side of the sky

A third drawing sheet, behind a third door in the footer. Its organising idea is a measurement rather than a motif: put every bow on one angular scale and most of the “kinds of rainbow” genre stops needing to be argued with in words.

New pieceThe Bow-ery — a drawing sheet, in Easter Eggs

The third of the “-ery” sheets, after The Hatchery’s twelve cosmic eggs and The Quillery’s eight Esmx, and the companion to A Field Guide to Rainbows. Same rule as both: every drawing carries one checkable thing, with its source under it. What is new is the device. Every plate is drawn at three units to the degree around a shared centre, and carries the 42° primary as a faint dashed ghost whether or not the primary is what the plate is about. Radii are true against each other, so a bow that looks half the size of another is half the size of it.

That single decision does the work of several paragraphs. A 22° halo is not a small rainbow: it is a different phenomenon at about half the radius, made of hexagonal ice rather than spheres of water, and centred on the sun — to see the ghost arc on that plate you would have to turn around. Every listicle files sun dogs and the “fire rainbow” alongside real bows because they are coloured arcs in the sky, and coloured arc in the sky is a description of appearance. The mechanism, the medium and the direction you face are all different, and one drawing shows it.

The sheet leads with the one bow the field guide has no card for — a plain rainbow, uncardable in a catalogue that sorts by what changed, because in this one nothing has. Its fact is that the bands are ours: Newton’s optical lectures of 1670–72 name five colours, and Opticks in 1704 prints seven, with orange and indigo added at the points where the half-steps fall in the diatonic scale. He offered the sound–colour correspondence as an analogy and hedged it carefully; the seven survived the hedge and became what children are taught. The light has no bands in it at all.

Also drawn to scale: Alexander’s dark band at its true 7.3°; the supernumeraries geometric optics cannot produce; the circumhorizontal arc that needs the sun above 58°; the glory, tiny against the ghost and carded as still unexplained after van de Hulst 1947; the third-order bow in the glare that kept it unphotographed until 2011; and the full circle, whose lower half runs off the bottom of the plate because that is where the ground is. Eight of the ten reproduce their counterpart glyph from the field guide at a third scale — the guide’s own markup, extracted from the rendered page rather than retyped — so you can see what a 104×96 diagram had to give up.

It closes on the thing only a drawing sheet could admit. Magenta is not in the spectrum. No wavelength produces it; it is what the visual system builds when the long- and short-wavelength cones fire without the middle one, closing a ring the physics leaves open. This site’s pink appears on nine of the ten plates. There is no version of these drawings that fixes that, and it is the most interesting thing on the page.

SiteA third door in the footer, and it performs the argument before you click it

The front page footer has carried two doors since August — a drawn cosmic egg to Easter Eggs, and Esmx to The Quillery. There are now three. The new one is a bow that sits as a continuous ramp of colour, built from 34 thin arcs rather than a gradient, and snaps into seven discrete bands on hover.

That is the page’s own argument, made before the reader has clicked anything: the continuum is what the light is, and the seven are a decision somebody made in 1704. It carries a text label so a screen reader announces it as plainly as About or Search, it is keyboard-reachable, it opts out under prefers-reduced-motion, and it is hidden in print with the other two. An egg only sighted readers can find is not an egg, it is an exclusion.

Held honestlyOn paper this sheet loses its colour, and three entries were declined for a reason worth printing

A page made of coloured arcs prints in grey, and that is the right trade. The shared print stylesheet flattens every SVG stroke, because our five accents measure between 1.7:1 and 2.9:1 against white paper and not one clears even the 3:1 a graphic needs to be legible. So the printed Bow-ery is line art. The geometry — which is the whole point — survives intact; band order does not, which is why every plate whose argument is a colour order also prints that order as a label. A print-only note says so on the paper itself.

Three entries were declined and the reason is on the page. The sea spray bow differs from a rainbow by 0.8°, which at this scale is about the width of the stroke it would be drawn in; the twinned bow turns on drops flattened by one or two per cent; a Titan bow at 49° would look like a slightly larger rainbow and teach nobody anything, because the interesting part is the liquid. A sheet organised around scale has to decline the entries where scale is not the story. The reflection bow was cut for a worse reason, admitted rather than buried: drawing it honestly needs a second centre on the plate, and the sheet’s entire premise is one shared centre. That is a limitation of the format we chose, not a fact about the bow.

The two figures carrying the most argumentative weight — the circumhorizontal arc’s London 140 hours a year against Los Angeles 670 — reached no primary computation and are flagged as the numbers we would most like to improve. That is precisely when a figure should be flagged rather than trusted.

2026 · August 28

Every list of rainbow kinds sorts by how they look and ranks them by how rare they are — and both sorts are wrong, one of them measurably

A catalogue against a genre. Sorting rainbows by appearance fails twice in opposite directions, and “rarity” turns out to be a fact about the reader’s latitude rather than about the sky. Also: a new guide nearly duplicated a zine that had shipped the day before, and the search that should have caught it could not.

New pieceA Field Guide to Rainbows — Field Guide No. 20, in Field Guides

Sixteen rainbows, sorted by what physically changed — the drop, the path the light took inside it, the light arriving, the surface the cone lands on, the instrument receiving it. The sort came out of the entries: we tried the genre’s own sort first, by appearance, and it broke twice in opposite directions. A fogbow looks nothing like a rainbow and differs only in the size of the drop — its colours are all present and diffracted so wide that they overlap into white, and the effect runs on a slope rather than a switch, so waterfall spray gives bows that are neither. A sea spray bow looks identical to a rainbow and is a genuinely different bow: salt raises the refractive index, shrinking the radius by about 0.8°, so the two can stand visibly misaligned in one sky. Appearance gets both cases wrong, and no amount of looking harder fixes either.

Then the rarity ranking, which is the genre’s real engine. The “fire rainbow” that heads most lists is a circumhorizontal arc — hexagonal ice plates in cirrus, not spheres of water, so not a rainbow at all — and it needs the sun above 58°, which makes it impossible north of 55°N. Where it is possible, the sun clears 58° for roughly 140 hours a year in London against 670 in Los Angeles. Same crystals, same cirrus, same physics; a once-in-a-lifetime sight in one city and a regular summer one in the other. The rarity was never a property of the arc.

The rest is what the counting finds. Supernumerary arcs cannot be produced by geometric optics at all — Thomas Young explained them by interference in 1804 and they became evidence for the wave theory of light; Airy dismissed him in 1838 as “the imperfect theory of interference” for predicting the wrong angles, and Young had merely missed a 90° phase shift. Third- and fourth-order bows stand around the sun, not opposite it, and although predicted for centuries were first photographed in 2011, by people who knew exactly where to look. A moonbow carries every colour and a long exposure records them: it is the rods, not the bow, that cannot report them. A dewbow is a hyperbola because a cone met a plane, and a full-circle bow is the only kind there is, seen from somewhere the ground is not in the way. No bow can be sharper than the sun is wide. Rainbow light is about 96% polarised, so a lens can switch a rainbow off while the sky is unchanged. And the glory is carded as openly unfinished — the surface-wave consensus has held since van de Hulst in 1947, and the literature still calls the precise mechanism “rather obscure.” A guide that only carded solved things would be teaching that the sky is solved.

Three cards get no reframe table: the ice halos, because they are not rainbows and there is no bow there to have misread; the antisolar cone, which is the whole of No. 69; and the flag and the song, which live at the Sound rack. The guide also refuses a word on its own page. Nearly every popular account of the observer-anchored cone lands on “the ultimate optical illusion,” and an illusion is a mistake perception makes. A rainbow is occurring, calculable to a fraction of a degree, and recordable by instruments with no perception at all. Unique to each observer is not the same as unreal. Companion to Your Shadow Is the Centre (No. 69) and Both Arcs, One Drop (No. 70).

Caught before shippingThe new guide duplicated a zine that had shipped the previous day, and a topic search could not have found it

The guide’s observer section was originally built around a full entry on the antisolar cone — that a rainbow is centred on the shadow of your own head, and that no two people have ever seen the same one. That is the entire thesis of Your Shadow Is the Centre (No. 69), which had gone live the day before, with Roger Bacon’s Opus Majus cone, the measured 42°, and the turn that Bacon reasoned from the un-shareability to the mechanism. The prior-art search run at proposal time found the double-rainbow zine and the Sound rack and missed No. 69 entirely.

Why it missed is the part worth publishing. The search was a grep for the topic word, and the sibling’s title contains no rainbow noun at all — it is called Your Shadow Is the Centre. A piece can restate another piece’s whole argument without sharing a single one of its nouns. The entry was rebuilt as a withheld hand-off card that cites the geometry and sends the reader to the zine, and two other entries now lean on the cone while explicitly declining to retell it. Grep the argument, not the topic — and check what shipped this week, because a one-day-old sibling is invisible to habit.

ReversedThe double rainbow was withheld, and Ryan moved it back: a field guide is a handoff

Following the No. 69 fix, the double rainbow was filed the same way — a dashed card with no reframe table, handing the reader to Both Arcs, One Drop (No. 70) on the reasoning that a second telling would be a worse telling. Ryan disagreed, and was right. Withholding the mechanism cost the catalogue its single most useful card and saved nothing, because the thing worth protecting was never the physics.

So the double rainbow is now the marquee of the section on what the light did inside the drop, with its figures printed: one internal reflection leaves at about 42.7° and two at about 50°, the colour order reversed so the reds face each other, the outer bow 43% as bright because a longer path loses more light, and Alexander’s dark band between them — noticed around 200 CE — a direction into which neither bow returns any light at all. All four figures follow Stull’s Practical Meteorology and are deliberately the same ones No. 70 prints; a catalogue and its zine disagreeing about a number is worse than either being wrong alone. The argument the card declines to take — that “secondary” is a rank the physics does not contain — is still the zine’s, and the card says so. The handoff survives inside the card rather than in place of it.

2026 · August 28

A teaching that reads like a contract, until you read the next line — and a phrase we have been attributing to Barry Lopez that he never wrote

A zine built out of two of our own glossary entries, which is how we found that one of them puts a compressed phrase in a dead writer’s mouth and attributes a father’s teaching to his daughter. Going past our own notes to the books is the whole story here.

New pieceThe Place Knows You’re There — Zine No. 72, in More Than Human

“As long as we protect nature, nature will protect us.” To anyone who has been handed belonging on terms — as long as you mask, as long as you keep up, as long as you are not too much — that opening is the most familiar and most frightening phrase in the language, and hearing a contract in it is a well-trained ear doing its job. It is just aimed at the wrong sentence. Jessica Hernandez’s own extension settles it: remove ourselves from nature and nature “will not be able to protect us.” Able, not willing — a claim about capacity, and a contract has nothing to do with capacity. A party who is not paid withholds; it still could, and that is what makes it leverage. What she describes is the other thing entirely: not a payment withheld but a relation severed. Nobody is keeping the account, and the gate you were braced for was never there. Barry Lopez arrives at the same relation from outside and names what makes it — intimate attention, a storied relationship, and living in some sort of ethical unity — then says what it is for: “a fundamental human defense against loneliness,” because “the place knows you’re there.” That is a claim about recognition, which is where Hari Srinivasan’s Presence Without Belonging (2026) comes in: Autistic loneliness happens in the middle of social participation, and belonging needs recognition, access and sustainability. A room denies all three routinely. A place denies none — and Lopez’s “intimate attention” is the thing we get pathologized for. Not nature being therapeutic. A relation whose access requirements we happen to meet. Closes on Hernandez’s Zapotec, which has no direct word for conservation — only gapanú, to take care of, and rianda, to heal — and on Seattle’s 2018 straw ban, where boxing the world into systems produced an environmental solution that stripped disabled people’s access. Twelve spreads, eight figures, seven refusals.

CorrectedBarry Lopez never wrote “reciprocal ethical unity” — and it is our glossary saying he did

Two Stimpunks glossary entries and one Stimpunks post present “reciprocal ethical unity” as Barry Lopez’s phrase and his framework. We went to the essay — A Literature of Place, Portland Magazine, Summer 1997 — and the phrase is not in it. What Lopez wrote is: three qualities, “paying intimate attention; a storied relationship to a place rather than a solely sensory awareness of it; and living in some sort of ethical unity with a place.” The word reciprocal turns up in the next paragraph, in a question he asks on the reader’s behalf — “How can you find such a reciprocity?” — and again much later. So the familiar phrase welds two separate moves together, and in doing so it does something worse than shorten: it hardens a deliberate hedge into a term of art and turns a question into a listed quality. Some sort of is Lopez being careful about somebody else’s relationship to the ground, and the compression deletes exactly that care. The vector is traceable — a secondary paraphrase in a Medium essay, which our glossary drew on — which makes this the aggregator failure mode with our own notes as the aggregator, the thing our own rules warn about most loudly. The zine keeps the hedge on its spreads and states the correction in its colophon. The three pages are flagged for the same fix.

CorrectedThe sentence is not Jessica Hernandez’s. It is her father’s, and she says so

Both glossary entries attribute “As long as we protect nature, nature will protect us” to Jessica Hernandez. Fresh Banana Leaves attributes it to her father, in the sentence that carries it: He always told me that as long as we protect nature, nature will protect us” — and later, “taking care of nature, and nature taking care of us in return, is the greatest teaching my father has taught me.” Hernandez is Maya Ch’orti’ and Binnizá; the teaching is transmitted, father to daughter, inside a named tradition. That is not a footnote, it is the first spread. A teaching has a direction and a household, and a slogan keeps the words while dropping who said them, to whom, and out of what. The zine cites it as a reported teaching throughout, and quotes Hernandez’s own restatement separately, in her own voice.

CorrectedAnd a line of Robin Wall Kimmerer’s, filed under Lopez

Found in the same pass, checking the neighbours of a source that turned out wrong. A Stimpunks post attributes to Lopez the line about living “as if your children’s future mattered.” That is Robin Wall Kimmerer, in Braiding Sweetgrass. The half that is ours to own: we could confirm it only against quotation sites, so we left it out of the zine entirely rather than dress an unverified line as a source. It stays logged as open until someone opens the book.

Fact-checkA full re-derivation of every count on the site — and this time the pages were nearly clean and the working notes were not

Second full count sweep, after the one in August that found two dozen drifted figures across seven collection pages. The result inverted. The thirteen collection pages were almost right — twelve of thirteen hero-counts correct, and every meta, Open Graph and JSON-LD figure correct. Only Star Stuff was stale, saying 29 pieces for 30, along with a figure derived from it (“twenty-two of these pieces were made much later” is the total minus the seven founding zines, so it is now twenty-three). What had really rotted was the working notes, which no reader sees and which therefore nobody corrects: five of nine membership lists were missing zines, the page totals said 120 of 135 against 125 of 140, the reading chain said 118 against 123, and the count of pages carrying our signature phrase said 54 against 73. Three cross-page references had drifted too, and those are the worst kind, because the page holding the wrong number is not the page the number is about: Foundations called the Field Guides “the eleven guides in that collection” when there are eighteen; Field Guides cited “Sound prints 121 cards and 111 songs” when Sound prints 230; and Start Here welcomed readers to “a wall of fifty-six zines and fourteen field guides.” All corrected. The rule this adds: grep for a count wherever it is quoted, not only where it is owned.

CorrectedTwo of our own counting instructions were wrong, which is worse than a wrong count

A stale number is one error. A bad derivation reproduces itself every time someone follows it. Two were found. Our documented way of counting how many field guides arrive at there is no standard… returns thirteen files, and the answer is twelve: A Field Guide to Unfinished Animals matches the search while explicitly declining the formula — “This one cannot, because what varies here is not the animals — it is us.” Its own line is there is no final draft. And our check that every cover’s ghosted numeral is hidden from screen readers reported 70 of 71, which looked like a real gap; No. 68 simply puts the attribute on the parent element, where it covers the numeral by inheritance. Both instructions now say so. A derivation whose output nobody reads back is not a derivation. Separately, The Ladder We Don’t Print now states the date on its own survey: it read sixty-two zines on 23 August, ten have shipped since, and that number is left as written rather than quietly raised — raising it would claim a survey that did not happen.

2026 · August 28

Escape velocity is the number you need if nothing is pushing — and two of the five Lagrange points cost nothing at all to sit in

The second of Helen Edgar’s twenty constellations to grow into a zine. It also corrects an attribution almost everyone gets wrong, including the textbooks’ shorthand — and it declines to print the one number it originally set out to use.

New pieceNothing Is Pushing — Zine No. 71, in Star Stuff

The 11.186 km/s quoted for Earth is a coasting number. Escape velocity is defined for a ballistic trajectory — it is the speed you need if nothing pushes you afterwards — and it is local, falling as √(1/r), so the requirement drops as you rise. NASA’s Dawn is the worked example: on 5 September 2012 it left Vesta not by jumping from the floor but by climbing on ion thrust until the bar came down to meet it. The zine says on the spread, not only in the colophon, that Dawn did eventually cross the local threshold — a version implying it dodged physics would have been exactly the smoothed retelling Too Good to Check catalogues. Then the half the piece was built for: of the five Lagrange points, L4 and L5 are genuinely stable, and whether they are depends on one number about the system — not on what is sitting there. The same rock stays at Jupiter’s L4 for the age of the solar system and wanders off from the L4 of a pair whose masses are too even. And even the unstable places are cheap: JWST holds an orbit Petersen calls “inherently unstable” on burns of tens of seconds every three weeks, three of which were skipped during commissioning “because the computed correction was negligibly small.” The final spread is the one the zine exists for — Webb cannot brake: thermal limits forbid sunward-facing thrusters, so every burn is deliberately thrown short, and nobody calls that the telescope’s failing. Twelve spreads, seven figures, seven refusals. Read against Buckle et al. (2021) on Autistic inertia, whose finding is that what supplies the burst is another person. A rhyme, not a proof.

CorrectedThe stability threshold is Gascheau’s, 1843 — not Routh’s, 1875

The criterion for L4/L5 stability is almost universally called Routh’s value, after his 1875 paper. Bruno Sicardy (Celestial Mechanics and Dynamical Astronomy 107, 2010) says plainly that it “should actually be called Gascheau’s value in view of the precedence of his work”: Gabriel Gascheau, a professor at Toulouse born in 1798, published it in Paris in 1843 — more than thirty years earlier. The value is μG = (1 − √(23/27))/2 = 0.0385208965…, the smaller root of 27μ(1−μ) = 1. The correction is printed on spread 8 rather than buried in the colophon, because a piece arguing that the environment decides the outcome had no business misattributing the theorem that proves it. Open, and stated on the page: we have read Sicardy’s account of Gascheau 1843, not Gascheau 1843 itself.

VerifiedA number we went looking for, could not source, and left out

An annual L2 station-keeping budget of about 2.4 m/s is widely quoted, and it was the figure this zine originally set out to build its comparison on. It could not be confirmed at a primary source. Petersen’s station-keeping paper gives per-manoeuvre figures in cm/s; Rigby et al.’s commissioning paper gives cadence and duration; neither states an annual total, and the secondary sources quoting one do not say where it came from. So the spread argues from burn duration and cadence instead — which turned out to be better, because “three station-keeping burns were skipped because the computed correction was negligibly small” makes the point more sharply than any budget figure would have. All four primaries were read as PDFs rather than from summaries.

SiteA drawing fault that every gate passed, and was right to

Figure 7’s label “the only push there is” was first centred over the thrust arrow and ran straight through the sunshield bar and the observatory itself. All eight gates passed the page. check-overlap.mjs was not wrong to: it measures text against text, and text crossing a line or a circle is the case CLAUDE.md explicitly marks as a legibility judgement that still needs eyes at render size. It was caught by looking at the figure. The drawing has been rebuilt in horizontal bands — labels above, objects in the middle, labels below, caption at the foot — and the source comment records what went wrong so the next figure does not repeat it. Figure 3’s spiral was resampled from π/4 to π/8 steps for the same reason: it read as a polygon on screen.

2026 · August 27

A song told a six-year-old that rainbows have nothing to hide — and in 2023 a school district banned it, after banning the song it was brought in to replace

A rack of forty rainbow songs and the essay under it. Five of the forty links carried no artist at all, and four of those we would have got wrong by guessing — which is the argument for resolving every embed before writing about it.

New pieceSkepticism and Wonder — a Sound rack, in Sound

“Rainbow Connection” — Paul Williams and Kenneth Ascher, sung by Jim Henson as Kermit, opening The Muppet Movie in 1979 — grants that rainbows are visions, downgrades them to illusions, and then lands the line a science-loving child actually needed: rainbows have nothing to hide. No pot of gold, no other side, nothing withheld. Ryan’s essay is honest that the song gets one word wrong — a rainbow is not an illusion, since an illusion is a mistake perception makes and a rainbow is occurring — and hands off to No. 69 for the stranger truth: it has no location at all. Carl Sagan later supplied the vocabulary in The Demon-Haunted World: his parents taught him “the two uneasily cohabiting modes of thought that are central to the scientific method.” Uneasily is the load-bearing word. Seven sections: eleven versions of the song, the Garfunkel and Oates joke that reaches the same thesis, eleven of “Over the Rainbow” (which wants the opposite thing), four of “What a Wonderful World” (which wants this one), the colours as a list and as physics, the rainbow turned inward as identity, and finally Merle Haggard’s sour “Rainbow Stew” against a man on a mountain undone by a double rainbow — the two modes back to back, unreconciled.

VerifiedForty embeds resolved before writing, and five of them were unguessable

Every video id went through YouTube’s oEmbed endpoint before anything was written about it, because a plausible id is not a verified one and no gate on this site can see a wrong embed. On this page that mattered more than usual: five of the forty links carried no artist in their text at all. They resolved to Weezer (feat. Hayley Williams, from Muppets: The Green Album), Me First and the Gimme Gimmes, Judy Garland, Ella Fitzgerald, Nina Simone, the Carpenters and The Rolling Stones — four of which we would have got wrong. The two book quotations were read in our own library rather than lifted from quote sites: Sagan’s Demon-Haunted World, and NeuroTribes at Kindle location 3614 from the chapter “Princes of the Air”. No lyric is reproduced anywhere on the page, which is a real constraint on a piece largely about a lyric, and it is stated on the page instead of quietly worked around.

CorrectedThe Sound collection said six racks in its body and five in its link previews

Adding a rack meant re-deriving the collection’s figures, and three were wrong. “Six racks, 189 cards” is now seven racks, 229 cards, counted from the cards. Its og: and twitter: descriptions still read “Five racks, 146 cards” — two generations behind the page they describe, so every link unfurl and social preview has been quoting a total the page outgrew twice. And the body still opened “The racks — Four, in the order they were made… one theme, one scene, and two single artists” when there were already six; it now reads seven, recounted from the card labels as two themes, one scene and four single artists. The distinct-title figure was carried forward by delta rather than replaced: our normaliser returns 166 for the pre-existing set against the published 163, so rather than overwrite one method’s number with another’s we added only this rack’s 18 genuinely new titles, giving 181.

2026 · August 27

A single raindrop makes both arcs at once — so neither of you is the second one, and entwined turns out to have a citation

This zine exists because its subject corrected its author. The first framing offered the second bow as real, dimmer, reversed, and Ryan — who is queer and neurodivergent — said that mapping identities onto the arcs builds a hierarchy no careful writing can undo. Checking the textbook proved him right and dissolved the problem entirely.

New pieceBoth Arcs, One Drop — Zine No. 70, in Star Stuff

A double rainbow is not two rainbows. Roland Stull’s Practical Meteorology: “a single raindrop produces both: entering rays undergo either one internal reflection (primary) or two internal reflections (secondary) before exiting.” One drop, one beam, both arcs, the same instant — so the outer bow is never absent, only sometimes outshone. The extra bounce reverses the colours, which puts red outermost on the inner bow and innermost on the outer one, so the two reds face each other across Alexander’s dark band — a band that is not a wall between them but the region neither arc reaches. The zine states the awkward number rather than burying it (the secondary is 43% as bright, because its light survives two internal reflections instead of one) and then refuses, on its own face, to hand you one arc for being queer and one for being neurodivergent. Primary and secondary are our words, for our convenience; the drop has never heard them. Two first-person passages by Ryan Boren carry the turn — including the reframe the whole piece needed: “The arc is not lesser because it is dimmer, it just emitted light along more turnings… One brighter in fewer directions, one distributing more of itself along the way. Both always there.”

VerifiedThe 1974 paper was read at the paper, and the name everyone repeats is wrong

The claim that queer and neurodivergent suppression share a source is usually made as a resemblance. It has a citation. In 1974 the Journal of Applied Behavior Analysis published Rekers & Lovaas, “Behavioral Treatment of Deviant Sex-Role Behaviors in a Male Child” (7(2), 173–190), whose abstract gives its own aim as “the primary prevention of adult transsexualism or similar adult sex-role deviation.” Thirteen years later the same O. Ivar Lovaas, at the same university, published the 1987 autism paper. One name, on both. PubMed Central holds the 1974 paper as scanned page images behind a reCAPTCHA, which we did not attempt; the PDF came from Europe PMC and was read directly. That is how we found that the pseudonym repeated across the internet as “Craig” is “Kraig” in the paper — and how the zine can quote the red and blue poker chips, and “physical punishment by spanking from the father,” from the study rather than from a thread. The detail that decided the spread: it was judged “clinically safer” to run the chips on ordinary household behaviour first, so the same red chip that had meant tracking dirt on carpet was then extended to playing with dolls.

DeclinedA causal claim we will not make, and three sources we did not lean on

The child was Kirk Andrew Murphy. He died by suicide in 2003. Austin H. Johnson reports that in Behavior Analysis in Practice (2022) without attaching causation, and this zine matches him exactly: his family have said what they believe, that is named as theirs, and a claim we cannot support would only weaken a record that needs no help. The widely repeated detail that Kirk’s brother hid the red chips is marked on the page as coming from the family and not from the study. Three further claims are declared second-hand and graded lower — Lovaas’s role in UCLA’s Feminine Boy Project, the “four co-authored papers” figure, and his reported description of gender-nonconforming boys as “socially handicapped individuals” — and spreads six to nine are built so that none of them is load-bearing. For the record on what has been done since: JABA issued a Statement of Concern in October 2020 and declined to retract, reasoning that “the available evidence does not make it clear that the original study was unethical by the standards of that day”; Johnson argues it should be retracted. Fifty-two years, and it stands.

2026 · August 27

An eighth gate, for a card sitting in the wrong place — and on its first run it found a second one we had missed

Yesterday’s fix put No. 63’s card back in order on two pages. That was the instance, not the fault. The fault was that nothing here could see card order at all, so we built the check — and it immediately found another collection with the same problem, live, on the front page.

Sitetools/check-card-order.mjs — the eighth gate

Inside each card grid, the cards that carry a series number must appear in ascending order within their own series. That last clause is the whole design: Easter Eggs interleaves Zines and a Field Guide on purpose, so one merged sequence would fail that page for doing exactly what it means to do. Gaps are never reported — the number records when a piece was made and the collection records what it is, so 1, 2, 6, 7 is correct and only the direction is checked. The 64 cards with no number — broadsides, playlists, racks, essays, and the furniture in Start Here, Foundations and Notes — are skipped and counted on their own line, because there is no mechanical answer to where About belongs relative to Cosmic Connections and inventing one would be the tool asserting an editorial preference. It reads files rather than driving a browser, which makes it the third browser-free check here and the fastest: 136 pages in about a tenth of a second.

CorrectedStars We Grew Up On ran 12, 66, 67, 13 on the front page

The gate’s first run found it: on the index, the Stars We Grew Up On grid had Warriors and Weirdos (No. 13) sitting last, after No. 67 — while its own collection page had the same four pieces in the right order. Two pages disagreeing about one collection, with nothing able to see it. Now fixed, and verified as a pure move rather than asserted: the file comes out byte-for-byte the same length with an identical set of lines. This is the useful part of the episode. Yesterday we found one misplaced card and fixed that card; the same fault was sitting two sections further down the same page the whole time. Fixing the instance you noticed is not the same as fixing the fault, and the only reliable difference between them is a check that looks everywhere.

SiteWhat the gate deliberately does not check, and why

It does not compare the index against a collection page. That sounds like the obvious companion check and it would emit warnings nobody should act on: Notes, Print and Sound are unnumbered, and their two grids legitimately run in different orders. The numeric case needs no cross-page check anyway — two grids that are each ascending already agree wherever agreement is defined. It also does not check a grid against the prev/next chain, because that is different markup, and a single failure that could mean either would tell you nothing about which. An exemption list exists and is empty, on the same terms as the two exemptions in our contrast checker: a decision somebody wrote down with a reason, never a pattern to fall into. Its own decoy fixture earned its keep by catching a bug in the gate — a card anchor written inside a JavaScript string was being counted as a real card — and a wrong first attempt at the fix was caught by the gate itself, which is roughly the point of having one.

2026 · August 27

A rainbow is centred on the shadow of your own head, and Roger Bacon proved in 1267 that no two people can see the same one — then did the thing we did not expect and used the un-shareability as his evidence

This zine was proposed as a piece about a three-way collaboration between sunlight, falling water and your own biology. Reading the primary source changed it. Bacon had the entire observer-dependence argument seven and a half centuries ago, by experiment, with no theory of refraction at all — and he used the fact that nobody else could see his rainbow as a reason to believe something about light, rather than a reason to doubt himself. The zine is the argument we found, not the one we set out with.

New pieceYour Shadow Is the Centre — Zine No. 69, in Star Stuff

A rainbow is a circle, and its centre is the shadow of your head. Around 1267, in the experimental-science part of the Opus Majus, Roger Bacon measured the sun against the bow with an astrolabe, reported that a rainbow can never stand more than 42 degrees above the horizon, and then wrote this down as a finding: “From these facts we learn by experiment that there are as many bows as there are observers.” He gave the test — two people look north, one walks west and the bow follows him, the other walks east and his bow follows him — and the reason: “the shadow of each observer divides the arc of the rainbow into two equal parts.” He put the apex of his cone at the eye and its axis on “the nadir of the sun.” Roland Stull’s Practical Meteorology says the same things today, to 42.7° red and about 40° violet. But the spread that carries the zine is the inversion. Bacon did not treat the privacy of the bow as a puzzle to be explained away; he treated it as data, and ran controls — a lit cloud takes a colour that looks the same to everyone and does not follow you, a fish seen through water does not follow you, and the bow follows you at the speed of “a man running or riding as fast as possible.” One odd answer out of three, and he reasoned from it to the mechanism. The feature that makes a rainbow impossible to hand to anybody is the feature that told us what a rainbow is. The turn: in the 759 years since, nobody has concluded that rainbows are unreal on the grounds that they cannot be shown to a second person — and that courtesy is not extended evenly.

VerifiedWe downloaded Bacon and searched him ourselves, and it changed the zine

Burke’s 1928 translation of the Opus Majus is out of copyright and freely available, so every Bacon sentence on these spreads was taken from the text rather than from anybody’s summary of it. That is the reason the piece exists in this shape: the secondary accounts we found credited Bacon with measuring 42° and stopped there. The observer-dependence argument, the cone with its apex at the eye, the shadow bisecting the arc, the three control cases, and the latitude arithmetic ending “no rainbow can be formed at any noon of the entire year” were all sitting in the primary, unmentioned. Page references for each quotation are in the colophon. And we are not laundering him: Bacon concluded that the bow is made of reflected rays alone, which is wrong or badly incomplete, and spread five says so — the mechanism took Theodoric of Freiberg and Kamāl al-Dīn al-Fārisī another forty years and Descartes another three hundred and seventy.

DeclinedThree things in the brief did not make it onto the page, and one of them is refused out loud

“Rainbows are like politics. Everybody sees it differently.” This is the relativism trap, and rather than quietly leaving it out we refuse it in the first refusal on spread ten. Different bow, same physics: the radius is 42.7° for everyone, the centre is the antisolar point for everyone, the sun is behind everyone and below 42°, always. The most private phenomenon in the zine is also one of the most rigidly law-bound, and those two facts have never been in conflict. “A frequency map displaying only the fundamental tones of the electromagnetic spectrum” is not physics, and was cut. And the phrase “an active real-time collaboration between solar radiation, the falling water, and your own biology” — which had been proposed as the subtitle — is a YouTube narrator’s sentence and not ours, so it is quoted in the credits with that said plainly instead of being absorbed into a title. The fourteenth-century priority account is on the page as second-hand, because we have not yet obtained Boyer.

CorrectedTwo counts on the Star Stuff collection page were wrong, one of them since before this zine existed

Adding a card meant re-deriving the collection’s figures, and the page said 27 pieces against 27 cards (now 28) while a residual sentence said “seven of the first ten are here, but nineteen of these pieces were made much later” — and 7 + 19 has not equalled the total for two additions. The real split was seven and twenty, and is now seven and twenty-one. This is the failure mode this site keeps recording: none of the seven gates can read a number written out in prose. Also fixed in the same pass: No. 63’s card was sitting out of numeric order — between Nos. 45 and 46 — on both the index and the collection page, identically in both, which reads as one insertion replicated rather than a decision. Both grids now run in ascending order to No. 69. The move changed no content: the two files are byte-for-byte the same length as before, with identical sets of lines. Nothing gates card order, which is why it survived — membership is derived from card hrefs, so a card in the wrong place satisfies every check that looks at cards at all. It is not cosmetic either: the prev/next chain follows collection order, so the misplacement made No. 62 look like the tail of Star Stuff when the chain actually ran through No. 63, and this zine was very nearly wired into the middle of the collection.

2026 · August 26

Dickinson’s freight is proportioned to the groove, which is what monotropic love already looks like — and the line we had drafted as Deleuze and Guattari turns out to be Deleuze alone, saying it out loud, in a different work

A zine that reached us sideways: the poem surfaced in Dolly Parton’s autobiography while we were building No. 67, and Helen Edgar took it somewhere else entirely. Three of the proposal’s five fact-check notes had to move before it could ship — and the third one closed a site-wide error we had published a changelog entry about and then not fixed.

New pieceProportioned to the Groove — Zine No. 68, in Star Gazing

A groove is the channel a load runs along. Emily Dickinson’s four lines say enough is a relation between a load and the thing carrying it, not a quantity you could weigh on its own. Set beside monotropism (Murray, Lesser & Lawson, 2005), that stops reading as consolation and starts reading as description. Deleuze and Guattari’s refrain then supplies the mechanism in three movements: a child sings in the dark and makes a centre in chaos; the circle gets drawn, and home does not preexist — it has to be built; then the circle is opened a crack to join with cosmic forces. The part usually left out of the retelling is their insistence that these are not three stages but three aspects of one thing, so nobody graduates out of the humming. Written by Helen Edgar, with two first-person passages by Ryan Boren in his own voice — the hallway outside his parents’ door, and the freight of limerence.

CorrectedThe cowbell is real Deleuze in the wrong book — and the two sources for it are one source

The draft built a spread around a cowbell “promoted to the status of celestial noise,” cited to A Thousand Plateaus on the strength of secondary academic sources. It is not in that book. We downloaded the Massumi translation and searched it: cow bells appears exactly once, inside a list making a different argument, and celestial appears in a separate passage about the becoming-child of the musician. Two passages, fused into one quotation.

The image is Deleuze’s — but he says it aloud, alone, in the filmed interviews L’Abécédaire, in the letter R comme Ritournelle. Ryan then found two English sources for it, which is where this gets useful: they are the same author. Léopold Lambert’s Funambulist post, and The Funambulist Pamphlets 3: Deleuze (punctum books, 2013) — which is a collected archive of those posts. He marks it “(my translation).” Two citations that look like corroboration are one person’s rendering of spoken French, and the French transcript we could not reach at all. So the image ships as a marked paraphrase, the verbatim quotations we read at the primary carry the argument instead, and the correction is printed on the spread rather than buried in a colophon.

VerifiedThe poem now cites its first printing, and the numbering question is answered from our own shelf

The draft cited the poem as (n.d.) and said no source could confirm whether 1765 was Franklin’s numbering or Johnson’s. It is Johnson’s, from his 1955 edition — and we already knew, because No. 67 writes it J1765. The answer was in the repo, not on the web. Read your own siblings, again.

The zine now quotes the poem’s first printing: The Single Hound: Poems of a Lifetime, ed. Martha Dickinson Bianchi (Little, Brown, 1915), poem CX, p. 118 — checked word-for-word against the transcription of the scanned first edition, all four lines matching. The Franklin number could not be confirmed, so the zine gives none rather than guessing at one.

Corrected“A way for the Universe to know itself” is fixed in all six places — and the sentence we could not confirm at all turns out to be broadcast, not book

On 11 August we published an entry saying this house had been printing Universe where Sagan said cosmos, that the much-quoted opening “The Cosmos is within us” could not be confirmed at all, and — in as many words — “Nothing is fixed yet.” It is fixed now.

Ryan Boren confirmed the passage against the footage, at 6:14 of Cosmos: A Personal Voyage, ep. 1, “The Shores of the Cosmic Ocean” (first broadcast 28 September 1980), matching the organism.earth transcript word-for-word. Sagan says: “Because the cosmos is also within us. We’re made of star-stuff. We are a way for the cosmos to know itself.” That settles both halves at once. The opening sentence is broadcast, not book — which is exactly why every search of the book kept failing — and the circulating version has been dropping Because and also, changing We’re to We are, and swapping cosmos for Universe.

All six repo instances are corrected — five in Love You Down To Your Star Stuff and one in No. 6 — and they were three different kinds, handled three ways. One true quotation, which also gained the work, episode and year it had never carried. Two figure captions that ran his sentences straight into our own italic gloss. And three lines in our own voice echoing his phrasing, corrected so we stop propagating a wording he did not use. One sentence is deliberately left alone: “The Universe is not diminished by our neurology” is our claim about the universe, not an attribution to him.

Still open, and not ours to quietly rewrite: the altered wording also travelled to the star-stuff page on stimpunks.org and to Helen Edgar’s More Realms post, in text and in a graphic. Helen is being told rather than corrected behind her back. And this does not close the separate question of which episode carries “We are star stuff. Harvesting starlight.” — a different line, still unpinned.

SiteThe first zine here that scrolls instead of paging

Every other zine in the collection is a sequence of discrete spreads you step between. This one is a single continuous channel you follow — one section per screen, a long furrow — because that is the shape the piece is about. It cost almost nothing to add: starstuff.js already no-ops on a page with no changePage(), and because the sections keep their #spread-N ids, search results still deep-link to a passage — in fact more reliably than on a paged zine, since native anchor scrolling reaches them with no JavaScript at all. On paper the screens collapse back into continuous prose and the scroll furniture disappears — but only after finding the rule that was stopping them. starstuff.css’s print block sets .spread { page-break-after: always }, which is exactly right for a paged zine and exactly wrong here, and it had never been overridden. Left standing it printed 12 sheets on both Letter and A4, several holding 180–600 characters against the ~1,700 a sheet takes at this size. Resetting break-after gave 8 — cover alone, then a steady 977–1,736 per sheet. A third of the paper, on a page whose colophon says print it, copy it, give it away. Worth naming because the first two attempts at the fix changed the page’s own break-inside rule and came back byte-identical, which reads as “no effect” rather than “wrong property.” No gate can see this: contrast measures print colours, and check-sheets.mjs only applies to paper-first broadsides. Recorded in DECISIONS.md as a house option, not a one-off.

2026 · August 26

Dolly Parton died yesterday, and the thing worth keeping is not that she was generous but that she never once made anybody qualify — which is why the sharpest reading of her belongs inside the tribute rather than after it

A zine and its listening companion, built the day after she died. The settled fact is a design decision anyone can check: the Imagination Library has never had an eligibility test. Plus a Dickinson attribution in her own autobiography that does not survive checking — and did not need to, for the argument to hold.

New pieceNo One Had to Qualify — Zine No. 67, in Stars We Grew Up On

The checkable fact is a missing test. Since 1995 the Imagination Library has mailed a book a month to every child from birth to five in a participating county — more than 332 million books across five countries — with no income threshold, no application beyond an address, no reading assessment, no referral and no annual review. And the parcel is addressed to the child, by name, not to a parent or guardian. Set against the gates the rest of us live under, that becomes an argument rather than a nice fact: a gate does not only ration, it sorts, and sorting requires somebody to rule on who is worth it. Eleven spreads, including the physics — a star has no mechanism for aiming its light, and the inverse-square law is geometry, not judgement — and what her allyship actually cost, including the death threats over Travelin’ Thru.

New pieceLove Without Cringing — a rack in Sound, companion to No. 67

Twenty-four songs, 1967 to 2023, with the essay in six parts: the persona that was assigned rather than chosen, the dark run in the catalogue that the received Dolly has no room for, the Imagination Library and what was written on the envelope, the copyright she would not sell, the gates she opened for Black and Queer artists, and what happens to a song once it travels. The clearest case is the newest — in March 2023 a Wisconsin elementary school barred its first-graders from singing “Rainbowland” after reviewing it against a policy on controversial issues, and initially blocked “Rainbow Connection” as the replacement. A song about there being no gate, stopped at a gate.

Fact-checkThe critique is a spread, not a footnote — and we did not answer it on her behalf

Tressie McMillan Cottom’s The Dolly Moment: Why We Stan A Post-Racism Queen (essaying, February 2021) argues that the “unproblematic fave” is a job a political moment assigns rather than a reward for virtue, and that the drag works because it is aggressively white — blonde functioning as an unmarked racial identity. We read the essay in full rather than summarising a summary, gave it spread 8, and left it unresolved, because a memorial that smooths this away is not kinder, only less true. Her closing formulation — knowing what we love does not diminish who we love, only how we choose to love them — is hers, and turns out to be the LYDTYSS grammar in someone else’s words.

Revised“You should be allowed to be how you are and who you are” — her 2016 sentence is our philosophy, and the philosophy is not ours either

The Larry King clip circulating this week is real, and we quoted it from the interview on King’s own channel rather than from the Facebook repost it is travelling as. In full: “We are all God’s children. If you’re gay, you’re gay. If you’re straight, you’re straight. And you should be allowed to be how you are and who you are” — and, in the same answer, “if you’re the fine Christian you think you are, why are you judging people?” It now sits in section five of the rack, ahead of the 2020 Billboard quote, because the two together show her saying it plainly twice, four years apart, despite Cottom’s accurate account of how much she otherwise left unsaid. The attribution that needed care is our own. “Authenticity is our purest freedom” is Neely J.’s, from “Collateral Beauty: The Journey of Undoing,” written for SITI Girl Miami; Stimpunks adopted it, and the page now says so instead of letting a borrowed line read as a house coinage. We could not find the piece or the author at first, and went looking. It is gone: the URL 404s and the Wayback Machine holds nothing but 404 captures of it. But the 1 September 2022 snapshot of the magazine shows the essay as a top-level nav item — a WordPress page, not a post, which is exactly why it appears in no archive or category listing — and shows Neely J. as that site’s only bylined writer, corroborating our own 2022 note, which credits NEELY J. directly. And the line we quote turns out to be half a sentence. She wrote: “Authenticity is our purest freedom, and I promised a beautiful little Black girl that I would scream her joy and love from the highest rooftops for the rest of my life.” The half that travels is the aphorism; the half that got dropped is the promise it was made to. Recorded in FACTCHECK.md so it is not lost twice. Open, and outside this repo: stimpunks.org’s own philosophy page still credits the publication rather than Neely J. Her next sentence asks for “the freedom to BE, fully seen AND heard” — against Dolly’s known and felt and seen, which is why the braid works. The section closes on why it is a freedom and not a preference: inauthenticity is usually a survival strategy rather than a choice, and being allowed to be how you are is the removal of a tax, not an indulgence.

Revised“World on Fire” gets a section of one — the time she broke her own rule, and kept the technique anyway

For sixty years the answer was I don’t do politics, and she was explicit about the arithmetic: as many Republican fans as Democrats, and no wish to lose either. Then at seventy-seven she closed the 58th ACM Awards — a show she was co-hosting — by debuting a rock single whose chorus calls somebody a liar and asks what they will do when it all burns down. The detail that earns it a section is what she said afterwards. Asked on Today which lawmakers she meant, she laughed: “Any of them!” — they worry more about the party than the people, and none of them are trying hard enough. She landed the punch and still declined to name a side, which is the identical manoeuvre section one describes her being handed in 1967 and section five watches her spend on other people. The technique never changed; only what she pointed it at did. Described rather than quoted, keeping the rack’s no-lyrics standard. Rack now 44 tracks; Sound reads 230 cards, 182 distinct titles across seven racks.

RevisedNineteen covers close the Dolly rack — and ten of the twenty-nine proposed were dropped for provenance

Section six of the essay argues about what happens to a song once it leaves the person who wrote it; the rack now ends by playing it. Seven “Jolene”s — White Stripes, Miley Cyrus, Lil Nas X, Beyoncé, Postmodern Jukebox, Nessa Barrett and a room of children at School of Rock — four “I Will Always Love You”s including Linda Ronstadt’s from 1975, seventeen years before Whitney, and a Rock Hall stage singing “Coat of Many Colors.” Provenance did most of the work here. Of twenty-nine covers proposed, every id was resolved through oEmbed and checked for channel: nineteen were the artist’s own channel or VEVO, a “— Topic” channel, or the broadcaster whose session it is (BBC Radio 1, BBC Music, triple j, the Rock & Roll Hall of Fame). Nine were fan channels or live-audience re-uploads and were dropped; one was dead. And one — a Beyoncé “JOLENE (Music Video)” that reads as entirely official in a search result — turned out to be fan-made, and was replaced with her own VEVO lyric video. Rack now 43 tracks (44 with the section below).

RevisedA section on the gates she opened — because the rack had a Nashville property in it and nothing on the other side of the ledger

Ryan’s call: the property section needed tempering, not deleting. New section five of the rack collects what is checkable — Lenora Ross, reported first Black woman signed to a major country label, on Dolly pulling disc jockeys towards her chair at a 1974 convention; Donna Summer, who with Bruce Sudano wrote “Starting Over Again” and watched Dolly take it to No. 1 country in 1980 without ever recording it herself; the Dolly P interlude on Cowboy Carter; and her reply to Lil Nas X’s gender-flipped “Jolene.” The hinge is her own 2020 sentence — “I understand people having to make themselves known and felt and seen” — set against Cottom’s distinction between being visible and being legible, a thing that is supposed to exist. Two things held at arm’s length rather than repeated: the widely-shared claim that she quietly bought band uniforms for Black high schools traces to one 2022 observation by Michael Harriot and is beneficiary testimony rather than a documented programme — printed as what it is, in the same essay that corrects a different feel-good story; and the reading that she spent the legibility her own persona bought her is ours, not Cottom’s, and is labelled so on the page. Also corrected in the drafting: Donna Summer wrote the song, she did not sing it.

SiteA seventh gate, for styling that silently did not happen — and the 25 places it had already happened

The fault that prompted it produced no symptom at all. The sixth refusal above was written as <span class="pink"> and never rendered: .pink is declared as .body-text .pink, and .refusals is a sibling of .body-text, not a descendant. All six existing gates passed it, and none was wrong to — and the contrast checker passed it because it failed, since unstyled text inherits a colour that already clears AA. tools/check-classes.mjs now loads each page and asks the browser’s own selector engine whether every class attribute is actually reached by a rule. Its first honest run found 25 dead classes across 12 pages, with no false positives: a .card-moment on the front page rendering as a bare paragraph, a σ table header on No. 55 whose rules only ever reached <td>, eleven vestigial layout classes on a zine that stacks a different way, and eight accent colours that quietly did nothing — four pull-quote variants a page used but never defined, and four colour spans sitting outside .body-text. Every one was somebody asking for something and not getting it. All fixed; the baseline is 0 and --check is a ship gate like its six siblings.

Fact-checkThe Whitney-royalties-bought-a-Black-neighbourhood story is not supported, and the correction is five years old

Ryan brought us the anecdote from The Guardian’s obituary: that Parton put royalties from Whitney Houston’s cover into an office complex in a Black neighbourhood in Nashville. She did say it, on Watch What Happens Live in July 2021. But Nashville Planning Department records show she acquired the two parcels at 12th Avenue South and Elmwood in 1990 and 1991 — before The Bodyguard came out in 1992. The royalties could not have bought the property. Amanda Marie Martínez established this for NPR three weeks after the broadcast, naming NPR’s own reporting among the outlets that had run the unchecked version; the Washington Post had dated the purchase 1997. Two historians decline the framing in that piece — Jessica Wilkerson on the pattern, Learotha Williams Jr. on what actually happened to Sevier Park, now 12 South and among the whitest and most expensive parts of the city. And the compound had a large gate constructed around it, which we are not walking past in a pair of pieces built on the absence of one. The correction has not caught up with the anecdote — it ran again in obituaries this week, which is the rack’s own argument about what travels, happening to us in real time. Added to section three of the rack and to No. 67’s refusals, where it is the zine’s own governing metaphor turned back on it. Nothing here disputes the royalties or the ownership; what is unsupported is that the second bought the first.

Not verifiedThe Dickinson poem is not in the autobiography — but a Dickinson paraphrase is, and it drops the hedge exactly as we once did

A widely-shared museum post attributes “If I can stop one Heart from breaking” (J919) to Dolly’s autobiography. Ryan searched the book and could not find it, so we make no claim about J919 and would welcome a page number from anyone who has one. What he found instead, on pp. 297–298 of Dolly: My Life and Other Unfinished Business (1994), is this: “The poet Emily Dickinson said, ‘The only thing I know about love is that love is all there is.’” Dickinson did not say that. J1765 runs “That Love is all there is, / Is all we know of Love” — a statement about the limits of knowing, and the epistemics are the half that did not travel. We are printing this because we did the same thing ourselves once, with a colophon sentence we promoted to doctrine, and wrote a page about it. She did the ordinary human thing with a sentence she loved.

Corrected“Shine Like the Sun” is a labour song, and “Dumb Blonde” is not hers

Two authorship checks that changed what the pages say. “Shine Like the Sun” reached us described as one of her cosmic-spiritual songs about inner light; she wrote it for 9 to 5: The Musical in 2009, where it is first sung by three women organising against a boss, and recorded it herself on Better Day in 2011. Knowing that turns a nice sentiment into a demand. “Dumb Blonde” (1967), her first hit, was written by Curly Putman — so the persona in her debut was assigned to her before she had any say in it, which is the opening move of the rack’s essay rather than a trivia note.

SiteEvery embed resolved before it shipped — and three plausible ones were dropped

All twenty-four rack embeds were resolved through YouTube’s oEmbed endpoint and checked for channel as well as liveness: Dolly’s own channel, DollyPartonVEVO, an official “— Topic” channel, or the releasing label. Three ids that looked official in search results turned out to be fan re-posts and were dropped rather than shipped. Also fixed in passing: collection-sound.html’s JSON-LD hasPart had never listed the Byrne rack, so the structured data claimed four racks where the page carried five.

2026 · August 26

David Byrne wrote “a very mild (I think) form of Asperger’s syndrome” and the internet published a coming-out — and in the same paragraph he repeated a 1994 study’s 69 percent without the qualification printed in its very next sentence

A zine and its listening companion, built the same day, on one settled finding: repetition is the mechanism, not the deficit. Plus the same failure of transmission running in both directions through a single paragraph of one book — and a mechanism we took from our own source and then refused.

New pieceThe Body Understands It First — Zine No. 66, in Stars We Grew Up On

The settled fact is about repetition. Janata, Tomic and Haberman took “groove” — a word musicians use and researchers had mostly avoided — and got it to hold still (JEP: General, 2012): how strongly a passage compels movement is agreed upon across listeners, which means particular auditory features are unusually good at engaging the motor system. They call the result a pleasurable drive toward action. And the feature doing the work is repetition, because a figure has to come round again before a body can meet it rather than chase it. Repetition is not the deficit. It is the mechanism. Which is how Remain in Light was built: instruments recorded largely one at a time, each part a short figure held without developing, stacked into looping grooves, with Fela Kuti and West African polyrhythm credited openly.

Byrne arrives at the argument himself, three hundred pages into his own book — and puts both halves in one paragraph. He writes that some people on the spectrum may not intuit social meanings as easily, and that he is sure he is not alone in having been accused of missing what friends thought were obvious cues or signals. Then, without changing paragraph, he turns the same machinery on music: we sense the rise and fall of a melody, a repetition, a musical build, and form expectations that get confirmed or slightly redirected. The faculty he was told was faulty in the room is the faculty he says the music runs on. He didn’t get a worse predictor; he got one that locks onto a beat instead of a face. That extension is ours and the spread says so.

Then the stage, which was built by subtraction. Early Talking Heads, in his own account: no show-off solos, no rock moves or poses, no pomp, no drama, no rock hair, no rehearsed patter — he announced titles, said thank you, stopped — and their instruction to club lighting people was to turn them all on at the beginning and turn them off at the end. He calls it a performance style defined by negatives, which is our own “Not:” convention arrived at independently and thirty years early. Read functionally it is an access strategy: he did not become comfortable on stage, he removed the parts that required him to be. The suit follows the same logic — he wanted his head to appear smaller, and the simplest way was to make his body bigger, because music is very physical and often the body understands it before the head. A costume whose proportions subordinate the head to the body is a claim about cognition, worn.

And Stop Making Sense is that argument as architecture. One man alone with a boombox, singing about being unable to relax; then a second musician, then a third, the set assembled by visible crew, until the stage is full and he is dancing. Nobody fixed him. The room filled up. Ten spreads, closing on the budget: Byrne was twitchy and, in his own word, Aspergery, in front of a club owner, and what he got was a slot opening for the Ramones. The same presentation elsewhere gets written into a file, and the file recommends interventions. The difference between the eccentric genius and the disordered child is not in the nervous system.

New pieceOne Body at a Time — a rack in Sound, companion to No. 66

Twenty-five songs from the 1977 CBGB audition to Who Is the Sky? in 2025, with the essay in four parts. It opens on the reading this rack sets aside — that the young singer was being weird at you, art-school irony, a put-on — against Byrne’s own refusal to call his early stage presence either genuine or fake: “My stage presence wasn’t fake, as weird as it looks to me in retrospect, but it wasn’t altogether unconsciously oddball either.” That is a better description of most public selves than either option usually on offer.

Every embed was resolved before it shipped, and one candidate was the wrong band. All 25 video ids were checked against YouTube’s oEmbed endpoint rather than assumed — all live, all on official channels. Two search hits were rejected for being reupload channels and replaced with official uploads. And a plausible id for “Memories Can’t Wait” resolved to Living Colour, not Talking Heads. Which is the entire argument for checking rather than pasting.

Two things are noted on their cards rather than passed over: My Life in the Bush of Ghosts (1981) used uncredited sampled voices, and that was contested at the time; Rei Momo (1989) credits its Latin American players and arrangers, which is why it is here. No lyrics are reproduced anywhere on the page.

Fact-checkThe hedge and the number failed to travel in opposite directions through one paragraph — and we read the 1994 study rather than the sentence quoting it

What Byrne actually wrote is “Years later I diagnosed myself as having a very mild (I think) form of Asperger’s syndrome” (How Music Works, 2012, p. 37). Every load-bearing word is a qualifier, and one of them is a man doubting his own self-assessment inside its own parenthesis. What travelled was a flat fact; one widely-read essay upgraded it to proudly identifies as autistic. Elsewhere he has said he never thought of it as a disability. He did not come out, and neither piece says he did. The argument does not need a diagnosis, so neither page assigns one.

The same fault runs the other way in the same paragraph, and we only found it by going to the paper. Byrne follows his sentence by reporting that a 1994 study found 69 percent of creative people had mental disorders — “That’s a lot of nutters!” We read Felix Post, British Journal of Psychiatry 165(1), 1994, 22–34. The figure is real: 69.4% had “episodic psychiatric conditions.” The very next sentence reports that in just over half of those — 35.4% — they caused no serious disability. The abstract adds that the 291 men were selected by “the availability of sufficiently adequate biographies,” diagnosed retrospectively by DSM–III–R after they were dead, that most were “emotionally warm, with a gift for friendship and sociability,” and that psychoses were probably less frequent than epidemiology would predict. So the study largely undercut the mad-genius myth and its headline number went out and fed it — and Byrne, reading in good faith, refused the myth anyway in the same breath. He got the ethics right while the citation was already degraded.

We used our source’s paragraph and declined his mechanism. Byrne credits the prediction argument to mirror neurons, which in 2012 was the best-known popular account available. It has not held: Antonia Hamilton’s systematic review of 25 studies found the data mixed with no overall evidence of abnormal mirror responses in autism (Developmental Cognitive Neuroscience, 2013), and Yates & Hobson revisited it in Autism (2020) with no better news. The zine keeps his observation, drops the wiring, and says so on the spread where it uses him — because quoting the good half and quietly keeping the bad half is the exact failure the page spends a spread describing.

Two spoken quotations are declared un-transcribed. “Whatever we are, we don’t know how to be another way” and “I guess it’s my superpower, I can use this in my way” are cited to the recordings, at a timestamp where we have one. No published transcript was obtainable for either, so neither is textually verified and the colophon says that rather than implying we read them somewhere.

And two corrections to pages that already existed. The Bowie card’s disclosure on Stars We Grew Up On opened “Six spreads” for a zine with eight — the count-in-prose rot again, on a page whose own card tag said 8 two lines above. And that collection’s refusals set said “Neither of these people is proof that difference pays off…”, which the new member complicates, because Byrne has used the word superpower about himself, on camera. The paragraph now names that: a person’s account of their own mind is theirs, and what we refuse is its promotion into a standard the rest of us get billed against. A refusal that quietly conflicts with a piece on the same shelf is worse than no refusal.

2026 · August 25

The correction to The Selfish Gene was printed in The Selfish Gene — and the sentence that fixed it did not travel, which is also what happened to the exception clause that our own glossary dropped

A Burke chain in twelve links on kin selection, group selection and the level you do the arithmetic at — and the tenth link is about an error on a Stimpunks page, found while writing the spread that describes the mechanism.

New pieceEverything Else Is Commentary — Zine No. 65, in How We Got Here

What this chain is not. It is not an argument that the selfish gene was wrong, and it is not anti-Dawkins. Hamilton's rule is good science and stays good science; the 1960s refutation of naive group selection was correct and gets a whole link saying so, because any sympathetic account that skips it is selling something. A chain here is never an argument against evidence — it is an argument for the parts left behind.

And the parts left behind are extraordinary, because the author printed them himself. The introduction to The Selfish Gene says the emphasis is wrong: "Emphasize 'selfish' and you will think the book is about selfishness, whereas, if anything, it devotes more attention to altruism. The correct word of the title to stress is 'gene'." The very next sentence is multilevel selection in everything but name — "That unit will become, more or less by definition, 'selfish'. Altruism might well be favoured at other levels." Chapter one refuses the naturalistic fallacy outright: "I am not advocating a morality based on evolution… I am not saying how we humans morally ought to behave." His publisher had tried to talk him out of the title in 1975, suggesting The Immortal Gene; Dawkins writes that he now thinks Maschler may have been right, and that The Altruistic Vehicle would have been another possibility — the same book, the same mathematics, a different level named on the cover.

Then he retracts his own most-quoted sentence. Of "Let us try to teach generosity and altruism because we are born selfish," he writes: "There is nothing wrong with teaching generosity and altruism, but 'born selfish' is misleading" — and asks readers to "mentally delete that rogue sentence." The retraction is printed in the front of every subsequent copy. The sentence is still the one people can quote. Nothing about being right makes a sentence travel.

The same thing happened to the correction. Wilson and Wilson's 2007 paper revived group selection on a careful formulation, and states its rule in the body as "Selfishness beats altruism within single groups. Altruistic groups beat selfish groups. The main exception to this rule involves models that result in multiple local equilibria." Forty pages later they offer a one-foot summary, consciously echoing Rabbi Hillel: "Selfishness beats altruism within groups. Altruistic groups beat selfish groups. Everything else is commentary." The word single is gone. The exception is gone. That is the version that travels, because it is the one built to.

Where it ends is not "group selection won." Price's 1970 equation already partitioned selection into within-group and between-group components, so both frameworks sat in one formula before the argument started — and for standard models kin selection and multilevel selection are mathematically equivalent, the same arithmetic added up in a different order. Link 11 exists because the field is still arguing loudly in Nature. The turn is tagged leap, because stepping from bookkeeping to people is a step we are taking: account at one level only, and every other level's contribution becomes invisible — not disproved, never entered — which quietly decides what repair is thinkable.

Twelve links and a turn: nine documented joints, three contested, one leap, drawn into the running spine at the foot of every spread. The chain runs on two rails — proved and repeated — and crosses between them five times, which is the argument made visible.

CorrectedOur own Altruism glossary carries the compressed quote — no single, no exception clause — and we found it while writing the spread about compressions

The tenth link of this chain is about us. The Stimpunks glossary entry on Altruism quotes the Wilson and Wilson line in its one-foot form — without the word single, and without "the main exception to this rule" — and it reaches us second-hand, through Jorn Bettin's The Beauty of Collaboration at Human Scale, rather than from the paper. We did not notice until we went to the paper to write the spread describing exactly this mechanism.

That page lives on stimpunks.org rather than in this repo, so the fix is handed upstream and logged as an open item — the same way the Rebecca Elson publication date went back to More Realms. Publishing the error before the fix is the whole point of this page. The correction is to quote the body version, with its exception, from the paper.

A number we refused to print. The mass-authored Nature reply to Nowak, Tarnita and Wilson is usually credited to 137 biologists. We counted the author list in the manuscript PDF and got 118 — alphabetical, no duplicates — and could not resolve the gap, which may be manuscript versus published version or our own extraction dropping names. So the zine says more than a hundred, which both figures support, and prints no number. A chain about compressions that shed their hedges is a poor place to invent one.

And a tool that could only remember one chain. tools/gen-chain-spine.mjs generates the running spine and tallies the joints, but it held a single NODES array edited in place for each new chain — so building this one would have destroyed the ability to regenerate No. 52's spine. That is precisely the failure the file's own header warns about ("a tool that has to be rebuilt from scratch is a tool nobody runs"), one level up: not the tool thrown away, but its data overwritten. Configs are now keyed by filename, and rebuilding No. 52's spine produced a byte-identical file, which is the proof the change is safe.

2026 · August 25

Most of a fairy-wren brood is fathered by males from outside the group who do none of the feeding, and every male in the group feeds it anyway — the companion catalogue to No. 64, sorted by what the care runs on rather than by who is related to whom

A field guide built the same day as the zine it accompanies, with two sections that argue against it — and a count on our own collection page that had been wrong by one since before this guide existed.

New pieceA Field Guide to the Ways of Being Family — Field Guide No. 19, companion to No. 64

The sort is the finding. We meant to sort thirteen entries along a line from kin to non-kin, and the line collapsed on the first entry. A superb fairy-wren nest belongs at both ends of it at once: the brood is mostly fathered from outside the group, and the group feeds it as one. So the axis became what the care is actually keyed to — a kept record, a coalition, a boundary crossed, an architecture of not-knowing, and sometimes relatedness after all.

The sharpest fact in it. Mulder, Dunn, Cockburn, Lazenby-Cohen and Howell (1994) fingerprinted superb fairy-wrens and found 76% of offspring — 138 of 181 — sired by extra-group males who contributed no care, and 95% of broods, 38 of 40, containing young fathered from outside. Every male in the group feeds and defends the brood regardless. The family that is present is not the family that is related, and it is the present one that does the raising.

Adoption keeps going further than expected. Past paternity, in the Taï chimpanzees. Past the social group — two bonobo females at Wamba adopted infants from a different group, nursing them, with no aggression from group members, the first such record in any great ape (Tokuyama et al., 2021). And past the genus, at Rangiroa Atoll, where a bottlenose dolphin reared a presumed melon-headed whale calf alongside her own for about three years (Carzon et al., 2019).

And the strangest mechanism is architectural. Banded mongooses do not override kinship — they make it unknowable, giving birth 64% on the same night into one communal litter, and the adults who feed and carry pups show no assortment by parentage. The literature's own phrase for what that produces is a veil of ignorance. The result is fair; the reason is not kindness. Which is worth holding, because we build veils on purpose — blind marking, blind auditions — precisely because we do not trust ourselves to be fair with the information.

Two sections argue against the guide. Because 55% of cooperatively breeding bird species really do nest primarily with kin, one section is for them: long-tailed tits find their relatives by call similarity, and post-reproductive killer whale grandmothers help more than breeding ones, because a grandmother carrying her own calf has less to give. Then a final section corrects us outright. Komdeur's translocated Seychelles warblers stay as helpers on good territories rather than take breeding vacancies on poor ones — so constraint is arithmetic, not a wall. And the Damaraland mole-rat, the textbook eusocial mammal, turns out not to be an obligate cooperative breeder at all. That card is here because the mole-rat was a case in our favour, and it did not hold. An overclaim in our own direction is still an overclaim.

The families people make get the fourteenth card and no reframe table — not only because grading somebody's household would repeat the failure the guide indicts, but because chosen family is already the most adjudicated arrangement in the whole catalogue. Nobody rules on the greater ani's household. The one arrangement here that already receives verdicts is the one we are not going to add to.

CorrectedEleven companions plus “the other seven” made eighteen guides on a page that had seventeen — and three diagrams that meant the wrong thing

The count first. The Field Guides collection page said eleven of the seventeen are companion catalogues and the other seven stand alone. Eleven and seven is eighteen. Re-derived by grepping every guide's colophon for what it says it accompanies — rather than trusting the .card-series markers, which is the rule after this same figure was wrong three times — the honest split was eleven companions and six standalone, and is twelve and six now. All seven count slots were updated together: eighteen guides, 218 entries, 231 cards, and the list of cards deliberately not filed as entries extended to thirteen items, which sums.

Then three drawings that no gate can read. The vampire-bat glyph drew a thick arrow one way and a thin one back, meaning to say 8.5 times — and at its real size it reads as one bat exploiting another, which is the opposite of reciprocity. The chimpanzee glyph drew nine circles under a caption saying 18 adoptions, inviting anyone to count and catch us out. The cross-genus glyph drew two calf outlines so alike that the words another genus had nothing to point at. All three passed contrast, markup and collision checks cleanly, because none of those gates can tell whether a picture means what its caption says. All three were found by rendering each diagram on its own page and looking at it.

And one thing a gate did catch, which we had just broken ourselves. Re-anchoring the killer-whale labels so each sat over the whale it described pushed 2.4px — 0.37em — of stopped · gives more outside its frame. check-overlap reported it as clipped, and the labels are now anchored inward from the frame edges so overflow cannot happen whatever the string says. The fix for one legibility problem is a good place to look for the next one.

2026 · August 25

The birds that cannot raise young without helpers are the ones least made of relatives — 77% against 38% — so the arrangement sold to us as nature’s own unit does not survive its own evidence, and the proverb everyone quotes about villages turns out to have no village of its own

A new zine on chosen family, built from the primary literature rather than from our glossary entry about it — and carrying a spread that argues against its own warm reading, because some helpers stay only because there is nowhere else to go.

New pieceThe Village Was Never Just Family — Zine No. 64, in Kin

The claim being checked is an empirical one. Two parents and their biological children get called the natural family, which asserts that nobody decided the arrangement. Everything else then arrives as a departure, and chosen carries a quiet demotion. But a claim about biology smuggled in as a claim about worth is still a claim about biology, and somebody has counted.

What the counting says. Riehl (Proc R Soc B, 2013) has group composition for 213 cooperatively breeding bird species: 55% nest primarily with kin, 15% primarily with non-kin, and 30% in groups that regularly hold both. Read the first number honestly — family really is the plurality, and anyone claiming the animals abolish kinship is misreading this as badly as the textbook did. Read the other two and kinship stops being the rule. Then the inversion: 77% of obligately cooperative species regularly include non-kin (24 of 31), against 38% of facultative ones (68 of 181), χ² = 17.1, p < 0.0001. Where helping is optional, kinship tends to organise it. Where the young genuinely cannot be raised without a village, kinship mostly is not what the village is made of.

And a ledger that beats blood 8.5 to one. Carter & Wilkinson (2013) fasted 20 vampire bats and induced sharing on 48 days across two years, at mixed relatedness and equal familiarity. Food received predicted food given 8.5 times more strongly than relatedness, and 64% of sharing pairs were unrelated — against the 67% expected if nepotism were absent altogether. Donors initiated more often than recipients, so this is not harassment; the network tracked mutual grooming, so the bond is maintained rather than inherited. At Taï, Boesch et al. (2010) recorded 18 adoptions of orphans over 27 years — half by males, only one of whom was the father.

The spread that costs something. All of that could be assembled into a warm story, and the literature refuses it. Emlen’s (1982) ecological constraints model holds that helping often begins with a housing problem: in a saturated habitat with no opening to breed into, grown offspring have little option but to stay. That is not a chosen family. That is a housing shortage with a nest in it. It gets a full spread rather than a hedging clause, and it cuts toward us too — people stay inside families that harm them because leaving costs more than staying. Constraint and care can occupy the same nest, and telling which is which is the argument rather than a caveat to it.

So the turn is deliberately narrow. The animals license nothing. Nothing a bat does can make anybody’s household legitimate, and difference would deserve its welcome in a universe that produced exactly one arrangement. What the literature does is remove a warrant — the claim that biological kinship is nature’s default, which is the claim doing the damage on the actual form in the actual hospital corridor, turns out not to survive its own evidence. Nobody has to argue their family into existence against a natural order that was never there.

Also inside: whānau and whanaungatanga from the Māori Dictionary, cited and not claimed; Kath Weston’s Families We Choose for the term; Rosa’s “the nuclear family is a scab” and Butler’s “a ‘house’ is the people you ‘walk’ with”; Hrdy on human cooperative breeding, marked as an argued synthesis rather than a measurement; and Devon Price’s strawberry people, which is the bats’ ledger kept in a phone. Bound throughout by Companion Stars’s correction that most stars are single: this zine promises nobody that they have people.

Fact-checkThe proverb about villages has no village — and two credits we fixed on the way in, one of which the source page is missing

“It takes a village to raise a child” is almost always introduced as an African proverb, and nobody can source it. NPR went looking in 2016 and could not pin it down; the scholars it asked disagreed with each other; the Dictionary of Modern Proverbs found no evidence of African origin beyond general sayings about communal cooperation; and the African studies scholar Lawrence Mbogoni made the sharpest point — that the proverb may describe a social reality he grew up inside without that making it an ancient saying. So the sentence we quote to mean kinship is communal has no traceable kin of its own. The zine keeps using it and says where it came from, which is: not known. A claim that flatters the argument is exactly the claim to check first.

An attribution corrected before it shipped. The Autistic-whānau passages — including “For an Autistic person it takes an Autistic whānau to feel loved and alive” — were about to be credited to Jorn Bettin alone, on the strength of his being Autistic Collaboration’s founder. The post is by Jorn Bettin & Ulku Mazlum. AutCollab runs many narrators, and a founder is not a byline.

And one credit added that our own glossary lacks. takiwātanga — Autistic ways of being, “in their own space and time” — is Keri Opai’s, from Te Reo Hāpai — The Language of Enrichment (2017), built from tōku/tōna anō takiwā under commission for the mental health, addiction and disability sectors. The Stimpunks glossary entry that prompted this zine presents the term without naming him; the zine names him.

Two things we did not read, said on the page. Cockburn’s 852-species figure is quoted as it appears in Riehl, because the publisher returned a 403 for Cockburn’s own text. Kath Weston’s two phrases are quoted as they appear in a 2020 paper, and Weston has not been read directly — both stated in the colophon and logged as open items, rather than left to look like first-hand reading.

The title is a correction. It was proposed as The Village Was Never Family. Ryan added the just, and it fixed a real overclaim: 55% of those species do nest primarily with kin. The spread now presents the whole three-way split instead of only the half that suits the argument. Not never family. Never just family.

2026 · August 24

We counted a four-word sentence as six and printed the number in thirteen places, and the sweep that fixed it turned up the identical fault sitting in a zine that shipped weeks ago — because none of our six checks can count the words in a sentence and compare them to the figure written beside it

A correction to yesterday’s No. 63, and a second one it flushed out of No. 45. Neither argument changes; what changes is a number that was asserted once and then copied — and a copied number looks exactly as confident as a checked one.

CorrectedWe said Helen answered in six words. It is four words — and the same miscount was already living in No. 45

Ryan caught it the next day. No. 63 described Helen Edgar’s reply as “six words” in thirteen places — the cover subtitle, the spread that presents the line, the colophon, both card taglines, the meta description, the JSON-LD and this changelog. Even fallen light glows is four words. It is six syllables, which is what the count was reaching for, and since the whole zine is about a poem the reply is now described that way throughout.

The sibling check is the part worth publishing. House rule is that when one claim of a given shape turns out wrong, its siblings get re-checked for the same fault — so every other counted-phrase claim on the site was re-derived. No. 45, The Cloud Phase says Helen “glosses deterritorialisation in six words.” The gloss it then quotes is “a soft loosening of pressure, a step away from expectations”ten words. That one had been live since the piece shipped, and nothing had ever counted it. It now reads in a single line, removing the number rather than correcting it, because the point was always brevity and not any particular figure.

Neither error was reachable by any gate we have, and that is the recurring finding rather than a new one. The six checks measure colour, tag structure, text position, paper fit, sitemap agreement and index coverage. Not one of them can count the words in a sentence and compare the total to the number written beside it. This is the same class as the stale collection counts swept on 17 August — a figure asserted once, then carried into a dozen slots by copy-paste, each copy looking exactly as confident as a checked one. The only control is deriving it rather than repeating it, which is what happened here only because somebody read the sentence and counted.

A smaller lesson recorded with it: the first sweep for the phrase reported eleven instances and the real number was thirteen, because the search pattern demanded 75 characters of leading context and two instances sat too near the start of their lines. A count read off a grep is only as good as the grep. The figure above was re-derived with a plain count before being published.

2026 · August 23

Neruda says fish the fallen light out of the well with patience, but if you are the light at the bottom then every instruction in the poem is addressed to somebody else — so here is the fungus that answers it, glowing inside a dead log for no reason anyone has established in a hundred and sixty million years — plus the ladder the zines climb without naming, which gets its own page and stays off the spreads

Two additions. A zine built out of six syllables Helen Edgar wrote in reply to a poem Ryan wrote in burnout — even fallen light glows — and the fact underneath it, which is that every one of the 132 known bioluminescent fungi is a white-rot decomposer, so the thing that glows is the thing that eats fallen wood. The honest part is that after 160 million years nobody can say what the glow is for, and the piece is built on that rather than around it. And a working paper in Notes & Rationale about our own method rather than a claim about the world. ARLES is the Stimpunks Design Method — Attention, Relational, Lived Experience, Environment, Systems, upward a design order and downward a diagnosis — and it is deliberately kept off the zine spreads. The new page states why, then maps it spread by spread. Two things make it worth publishing rather than filing as shop talk. First, the mapping is a reading of our own shelf and not a measurement, and the page says so in its opening callout: none of the six gates in this repository can check whether a spread is really about attention. Second, the rule it states is a rule going forward and not a description of what is already on the site — four pieces name ARLES on the page today and one of them draws the ladder, and that exception is published rather than tidied away, which is the same reason the Kiev correction stayed on spread four yesterday.

NewEven Fallen Light Glows — Zine No. 63, in Star Stuff

Built from a real exchange, and all three texts are on the page in the order they happened. Pablo Neruda, in an untitled poem in El mar y las campanas (1973), written in the last year of his life: if each day falls inside each night there is a well “where clarity is imprisoned,” and what you do about it is sit on the rim of the well of darkness and fish for fallen light with patience. Read the grammar and the poem has quietly handed out two roles — the one who fishes, and the light that fell.

Ryan rewrote it out of deep Autistic burnout, and the rewrite moves the speaker into the well. The rim is distant. No casting can reach. Patience broke. Read as a report rather than a mood, every line of that is accurate: the rim is a measurement, the reach is geometry and not a claim about whether anyone cares, and patience is the one instrument burnout takes first. The discovery inside it is structural. Sitting on a rim with patience is work you can do. Being the light at the bottom is not work at all — there is no technique for it, and nobody has ever been advised to do it better. Once you are the light, every instruction in the poem is addressed to somebody else, which is the part that makes it unbearable: not the dark, but being handed a poem full of advice you have no way to take.

Helen Edgar answered in six syllables: even fallen light glows. What makes the reply hold is everything it refuses to do. It does not say the rim is closer than it looks, or that patience comes back, or that somebody is casting for you right now — all of which would have been kind and none of which she could know. It is a claim about the light, not about the rescue. The poem had welded those together, because fallen light is for recovering; six syllables pried them apart.

Then the fact, and it is unspent on this site. No. 56 already owns the Penzias–Wilson story and No. 60 owns dark matter — which is the literal subject of the Rebecca Elson poem Helen’s essay opens with — so both obvious angles were dropped. What replaced them is foxfire. Perry, Desjardin & Stevani (Journal of Fungi 11(1):19, 2024) recognise 132 taxa of bioluminescent fungi across five lineages, and every one of them is an agaric saprotrophic white-rot decomposer, or rarely a plant pathogen. There is no glowing fungus that lives some other way. The thing that glows is the thing that eats fallen wood — taxonomy, not metaphor.

And the glow is built out of the log. The caffeic acid cycle runs caffeic acid to hispidin to 3-hydroxyhispidin, the fungal luciferin; luciferase oxidises it with oxygen into caffeylpyruvate and a photon at about 530 nm; and a fourth enzyme turns the spent molecule back into caffeic acid. The end of the reaction is the beginning of the reaction. Caffeic acid is a phenylpropanoid and lignin is a phenylpropanoid polymer, which is the shared chemistry the piece leans on — and the colophon marks that as our gloss and not a pathway claim, because we did not verify the routing.

The part that glows is the part nobody sees. In the Armillaria lineage it is the mycelium and rhizomorphs threading the dead wood; the mushrooms — the visible, reproductive, photographed part — are consistently reported non-luminescent. Emission runs continuously, on a temperature-compensated circadian clock (Oliveira et al., Current Biology 25:964–968, 2015). It does not brighten for company and does not stop when the forest is empty, which is nearly always. Nothing about the glowing is conditional on a receiver.

Spread nine is the honest centre and it argues against its own consolation. Lit mushroom models do draw more beetles, flies, bugs and wasps than unlit ones, which is real evidence for spore dispersal — and it explains a cap. It does not explain the mycelium and lower stipe, which make no spores at all and which in Armillaria are the only parts that glow. A live rival says the luciferin is an antioxidant and the light is a byproduct of staying alive while dismantling lignin. The review states outright that a non-adaptive, accidental origin “cannot yet be excluded.” The chemistry was solved in 2018 and we still cannot say what it is for. It may be for nothing. It glows anyway.

Spread ten is a guardrail, and it is in the zine on purpose. Bioluminescence arose once in the Agaricales, about 160 million years ago, and has been lost or inactivated in lineage after lineage since. A piece that says even fallen light glows is about one sentence away from so you had better be glowing, and the phylogeny is what blocks it: keeping the glow is not an achievement and losing it is the commonest thing that ever happened to it. A dark relative of a glowing fungus is not a failed one; it is the overwhelming majority.

The turn: if you are the fallen light, glowing is not a task you are behind on, and the casting is somebody else’s work — which is where solidarity stops being a warm feeling and becomes a division of labour. Helen’s constellation is what sits at the rim. And Love You Down To Your Star Stuff is a claim about reach: down to measures how far the loving goes, not what earns it, so the bottom of the well is not out of range of the claim — only of the casting.

Seven refusals on the face, and they are the load-bearing ones: not that the log is glad it fell; not that burnout is secretly productive, because decay is not a chrysalis and burnout is damage somebody’s conditions caused; not that you must glow to be worth keeping; not that the glow is a signal so try harder to be seen; not a promise that you will be reached; not nature proving anything about a nervous system; and not the rewrite corrected — both poems stand unedited, in order.

Twelve spreads, one diagram. A rhyme, not a proof. The consolation is deliberately thin, because a thicker one would be a lie to somebody whose patience has broken. Even fallen light glows. That is the whole claim, and it is enough.

Fact-checkThe Neruda came off a photographed page, and two things in the essay behind the zine need handing back

Every English text of the Neruda findable online is a quotation site or a blog — the aggregator dead-end this collection refuses to cite. So the translation was checked against a photograph of the printed bilingual page: William O’Daly, The Sea and the Bells (Copper Canyon Press, 1988), pp. 94–95, Spanish verso and English recto, supplied by Ryan from the book. It confirmed the wording exactly, and it supplied the first stanza, which the version circulating in our own conversation had dropped — the one that says the well is where clarity is imprisoned.

One scope decision, recorded so it does not look like an oversight. The zine quotes the second stanza in full and describes the first rather than reproducing it. The translation is in copyright, the piece is commentary on those particular lines, and reproducing an entire poem is more than commentary needs.

Two findings belong to More Realms and are being handed back rather than corrected here. Helen’s essay opens on Rebecca Elson’s “Let There Always Be Light (Searching for Dark Matter)” cited to A Responsibility to Awe (1997); the book is Carcanet, 2001, published posthumously — Elson died in 1999, aged 39 — so the date cannot be right. And the essay’s list of wonders includes trees sharing resources through mycelial networks, which is the hedge this repository already holds: mycorrhizal symbiosis is settled, but Karst, Jones & Hoeksema (Nature Ecology & Evolution 7, 2023) find the forest-wide claims insufficiently supported. Nothing in No. 63 depends on any of it — a glowing white-rot decomposer eating a dead log is a different organism doing a different job, and the colophon says so.

Three primaries are declared unread on the page rather than dressed up. Kotlobay et al. (PNAS 2018) returned HTTP 403, so the enzymes and the cycle are carried on the 2024 review’s account of that paper; Oliveira et al. (2015) is cited from its record and the review. And the Aristotle and Pliny foxfire attributions are declined outright — they circulate everywhere and we could not reach a primary text, so the zine says only that the phenomenon has been recorded for a very long time, and asks anyone who knows the passage to send it.

The occasion of Helen’s essay is named and not adjudicated. She wrote it after the death of Professor Jason Arday and the wave of coverage questioning the validity of neurodivergent diagnoses and identity. The zine names that in the colophon and links her essay, and explicitly declines to narrate or adjudicate any part of it — not the circumstances, not the allegations that preceded it, not the investigation. It is her essay’s occasion and hers to tell. What the zine takes from it is one sentence about light.

NewThe Ladder We Don't Print — ARLES, mapped onto the spreads that climb it

The one whose own ledger row records the ladder is No. 59, The Rest You Keep — see the revision below, because it is not the only piece on the ladder, only the only one that admits it. Its colophon already carries the rule: “built on the ARLES ladder … deliberately not printed on the spreads; the argument should stand without the scaffold.” The page adds one precision to that sentence, because it is slightly generous to itself — what is withheld is the acronym, the diagram and the order-claim, not the rung words, five of which are printed on No. 59 as spread eyebrows. That is the right line. A reader meets Attention as a heading over an argument about attention and loses nothing; they never meet a ladder they have to buy into.

And the interleaving turns out to be the finding. No. 59's five rung spreads alternate with three animal-fact spreads — Hydra sleeping without a brain, frigatebirds asleep on the wing, the bear holding its bone through six months of no load — so every rung arrives already paid for. Five consecutive rung spreads would be a slide deck: five assertions in a row, each asking to be believed on the strength of the one before it.

Three more climb without having been built to, and one of them climbs downward. No. 17 runs Relational → Lived Experience → Environment → Systems in five spreads and has no Attention spread at all — recorded as a real gap rather than a subtlety, since the ladder's own claim is that the floor holds the rest up. No. 15 spends three spreads descending to the floor and then climbs three rungs in three, arriving at Attention from above; that shape is what a zine has to do, because nobody accepts a claim about attention on spread two. No. 42 reads downward the whole way — the dashboard, then the day, then the room — without a word of the vocabulary.

Two deliberately do not climb, and the page keeps them in to stop the framework meaning everything. No. 31 occupies two rungs across ten spreads and says so in its own colophon; a zine about terrain has no business pretending to be about attention. No. 16 runs the rungs badly out of order because its claim is about the Environment rung — that the fluorescent hum is a built niche renamed the default — and you cannot argue that from below. Most of the sixty-two numbered zines do not map at all, which the page states plainly.

Filed in Notes & Rationale as its fifth member and off the reading chain like the other four. Two counts on that collection page were re-derived while it was open: four working papers is now five in three places, and the chain length it quoted as “seventy” measures 109.

RevisedThe Ladder We Don't Print — it missed the best case it had, and Ryan caught it the same day

Same-day revision. The page shipped calling No. 59 “the one built on it on purpose,” and it had a companion the page never mentioned. No. 58, The Stone You Keep is the same Saturday room — the same otter cam, also developed after Helen Edgar — and its proposal carried a rung-by-rung reading of the outline before the zine was built. The finished page names ARLES nowhere: not on a spread, not in the colophon, not in a meta tag, and not in its own row in FACTCHECK.md — zero occurrences in the file, which is exactly why a page built by enumerating ARLES mentions could not see it. The method found every piece that says the word and was blind to the one that says nothing, which is the more interesting category.

So No. 58 is a better illustration of the rule than the piece the page was built around, and the pair is now the argument: two companions, the two pieces closest to the ladder, one printing five rung names as spread eyebrows and the other printing the word nowhere at all — and nothing about the strength of either argument tells a reader which is which. It is an accident of how the two were made rather than a demonstration anybody set up, which is the only reason it is worth anything.

It also does not climb cleanly, and that earned a third pattern. Every rung is present and the movement is upward, but Lived Experience and Relational are transposed — the cost of floating arrives before the raft that holds you — and spread 7 carries two rungs at once, because in an otter raft the relation is the environment: the kelp does the holding, and the other otters are in the same kelp. Alongside No. 15 (descends to the floor, then climbs) and No. 16 (out of order, because its claim is about the rung itself), that is a third distinct way a real zine declines to be a staircase.

One figure checked rather than assumed: the proposal ran ten spreads with the fur trade and the refusals on separate spreads, the built page merged them into spread 9, and the rung numbers transfer without renumbering. A mapping quoted from a proposal against a shipped page is exactly the kind of figure that goes stale quietly.

2026 · August 22

Light leaves with nothing written on it, so every name in astronomy is a record of when somebody was standing there — and the same is true of a diagnosis, which is why the first clinical description of Autistic children took seventy-one years to reach English while two later men’s names got fixed to what she had described — plus six corrections to the draft that arrived, one of them a propagated error about a city that we have left on the page on purpose, and a count on the collection page that was already one short before we added anything

One addition, six corrections made to the incoming draft before publication, and one collection count re-derived. The new zine came in from Helen Edgar as a companion to her Autistic Realms piece on Grunya Sukhareva, and the fact-check moved six things. The largest was a city: the draft placed the 1925 observations in Kiev, following a shorthand that circulates in the secondary literature, and Sukhareva was born in Kiev but moved to Moscow in 1921 and did the work there. That correction is printed on spread four rather than applied silently — a zine about propagated miscrediting that quietly launders its own propagated error is doing the exact smoothing it is complaining about. The Leavitt Nobel timeline was wrong twice over, the chart-paper figure was wrong by four feet, six children were six boys, and a sentence about Annie Jump Cannon had merged the medal she received with the award she funded into one honour she never got. And the piece was restructured, which is the part worth recording. As it arrived, the light-travel fact opened and closed the zine and did nothing in between, which fails this collection’s own register test — one settled, checkable fact, followed honestly, already contains the claim about belonging. It now carries every spread.

RevisedThe Light Arrived Before the Name — the physics was standing in for the cause, and Helen Edgar caught it

Same-day revision, from Helen’s read of the built page. Her sharpest note was structural: the piece jumped from spread three to spread four, and what was missing at the join is that bias and prejudice are doing the accounting. Spread three ended on a register that “loses its own honesty” — agentless, as though the filing system drifted by itself — and spread four then opened cold on two women in 1925. Nowhere did the zine say who was holding the register.

It says so now, at that exact join. A register does not lose its honesty on its own; it is kept by people — committees, editors, prize panels, the handful of journals that got read and the two or three languages they got read in — and in the 1920s the people holding all of that were overwhelmingly white, Western and men. And the zine now states plainly what the physics is and is not for: light-travel time supplies the shape of the error, a thing complete at one end and named at the other with a measurable gap between. It does not supply the cause. The cause is bias, which is not a property of light — it has names, addresses and letterheads, and it decides where the receiver points. The colophon’s method, not a proof section now says the same thing, so the metaphor cannot quietly carry the explanation.

Sukhareva is introduced as Jewish at first mention rather than only in the refusals four spreads later, which is where the fact had been sitting. And the sentence describing her exclusion has been rewritten, because it was measuring her against the standard that excluded her: it read “never Western enough, never male enough.” She was a woman. She was Jewish. She published in Russian and German, from the Soviet Union. None of those is a deficiency in her; each is something the committees of the period were built not to see. Naming the shortfall in the person rather than in the instrument is the deficit move this whole site refuses, and it had got into a zine about exactly that.

Helen also proposed the beat the close was missing, and it is hers: what we can carry forward is not Sukhareva’s credit, which was never ours to hand back — it is her method. Notice closely; write the giftedness down in the same paragraph as the difficulty; then turn the instrument toward whoever is arriving now in the wrong language, the wrong decade or the wrong body. Plus four line edits: “taught to eleven-year-olds” to “taught to children,” the clean case to a clean case, the senior man in American astrophysics to a senior man, and an “irony to enjoy” that nobody would enjoy.

NewThe Light Arrived Before the Name — Zine No. 62, in Star Stuff

Proposed, researched and drafted by Helen Edgar (More Realms / Autistic Realms) as a companion to her piece Grunya Sukhareva: The Woman Who Described Autism First. The argument, the astronomers and the 1925 pairing are hers.

The fact is one sentence and it has to carry the whole zine. Light travels at a finite speed and leaves with nothing written on it. Sunlight is eight minutes and twenty seconds old when it reaches your face; Proxima Centauri’s is 4.2 years old; Andromeda’s is 2.5 million. A photon carries a wavelength and a direction and not a discoverer — everything a star will ever say about itself is complete at emission, and the name gets attached at the far end by whoever happened to be standing there with an instrument. Astronomy is honest about this and has a word for the landing: first light is when a new telescope opens its eye, and nobody has ever thought the telescope invented the galaxy in the frame. So a name in astronomy is an arrival record and never an origin record, and the rest of the piece is those two things being confused, with a person in place of a star.

Priority is the honest version of the same thing. Credit goes to whoever publishes first; a comet takes the name of whoever files. Halley earned his fairly — he worked out that the comets of 1531, 1607 and 1682 were one object and in 1705 predicted the 1758 return — and its passages had been recorded for more than two thousand years before him. The rule never claimed to record when the comet started existing. The trouble begins when a register stops saying what it is a register of, because then whoever was late, or far away, or writing in the wrong language stops looking late and starts looking absent.

Then 1925, twice. In Cambridge, Massachusetts, Cecilia Payne submitted the thesis showing the stars are overwhelmingly hydrogen and helium; Henry Norris Russell told her it was clearly impossible, and she published with a line saying the abundance was “almost certainly not real.” Russell restated the conclusion in 1929. In Moscow, Grunya Sukhareva finished a clinical description of six boys at the hospital-school she had founded in 1921 — the aloneness, the flattened expression, the narrow blazing interests, and the giftedness underneath, in the same paragraph. Russian in 1925, German in 1926, English in 1996. Seventy-one years, and half a century after Kanner’s and Asperger’s names had been fixed to what she described.

The spine of the piece is spread five, and it is arithmetic. A distance is a delay: when an astronomer says a galaxy is 2.5 million light-years away they are quoting a duration. The same quantity exists for a finding. 168 years between Caroline Herschel taking the Royal Astronomical Society’s Gold Medal in 1828 and the next woman taking it, Vera Rubin, in 1996. 123 years between Matilda Joslyn Gage mapping the pattern in Woman as Inventor (1870) and Margaret Rossiter naming it the Matilda effect (1993) — the name for late naming was itself a hundred and twenty-three years late, and Rossiter did the one thing the pattern does not do by itself: she looked back down the beam and put the earlier name on it. 71 years to English. 42 years from Annie Jump Cannon joining the Harvard College Observatory in 1896 to Harvard giving her a regular appointment in 1938. 7 years from the first pulsar to a Nobel that went to Hewish and Ryle. 4 years from Payne to Russell. Each is an interval between two dated events; none is a claim about anybody’s intent. The delay tells you about the observer, not the object.

The Bell Burnell spread is deliberately precise where the popular telling is not. She read roughly 96 feet of chart paper a day and found a signal too regular to be noise, and she is the second author on Hewish, Bell, Pilkington, Scott & Collins, Nature 217, 709 (1968), period 1.3372795 seconds. She was not written out of the paper. She was written out of the prize. And the pulses had been arriving the whole time — what 1967 changed was the listening.

Then the turn that earns the collection. The six children Sukhareva wrote down were Autistic, and so were Autistic children in 1895 and 1795 and every year nobody was taking notes. 1925 is not when we started; it is when somebody was standing there with an instrument. A diagnosis is an arrival record, and the criteria say so out loud: the DSM-5 requires symptoms “present in the early developmental period” while conceding they “may not become fully manifest until social demands exceed limited capacities, or may be masked by learned strategies in later life.” The manual is describing light-travel time. Somebody diagnosed at forty-seven has not been Autistic since they were forty-seven — the paperwork is forty-seven years old and the light is not. You can’t have been, you’d have been picked up is that confusion said out loud, and it made the receiver into the origin for girls, for Black and brown children, for anyone whose flavour of it stayed indoors.

The refusals matter here more than usual, because six women is six situations. Not that gender explains Sukhareva — Sher & Gibson give her Jewish identity, her Russian nationality and her Russian- and German-language publication alongside it, and raise the possibility that Asperger omitted her deliberately under Nazi-era antisemitism. Not that a missed prize and Stalinist violence are the same harm; she was attacked at the 1951 Pavlovian Sessions and colleagues around her lost their lives. Not that every woman here was silenced alike — Cannon is the exception and forty-two years of the rule. Not that recognition and justice are the same thing. Not that the men stole: Russell cited Payne and reported “very gratifying agreement,” and the mechanism varies every time while the direction does not, which is what makes it a pattern rather than a set of anecdotes.

Nine primaries are declared unread on the page, including Stellar Atmospheres itself — the “almost certainly not real” line is quoted from secondary reproductions and the page number that circulates with it is deliberately not cited, because the page was not seen. Two claims are attributed rather than asserted: the citation-count ratio is given as Smithsonian’s count, and the 240 BCE Chinese record of Halley’s Comet is flagged as the standard identification in the cometary literature and not sourced here to a primary, since NASA’s page supports only “more than 2,000 years.” And one source conflict is recorded rather than resolved: our two best sources disagree on the ages of the six boys, so no age range appears anywhere in the zine.

Eleven spreads, five diagrams. A method, not a proof. Nothing about the finite speed of light demonstrates anything about a nervous system. What the physics supplies is one distinction held steady: the moment a thing exists and the moment it is written down are different moments, and only the second one is about us. The light was never wrong. The paperwork was late.

CorrectedSix corrections to the draft as it arrived, and one kept visible on the page

Kiev → Moscow. The draft placed the 1925 observations in Kiev. Sukhareva was born in Kiev on 11 November 1891 and moved to Moscow in 1921, founding there the hospital-school where the six boys were observed. Sher & Gibson (2023) and the 2025 centenary review both place the work in Moscow; the “Kiev-based” shorthand comes from Manouilenko & Bejerot (2015) and travels widely. This one is not repaired silently. Spread four carries a note saying what the draft said, where the error came from, and why it is still on the page — the same reason No. 1 keeps the sentence it got wrong.

The Leavitt Nobel timeline, wrong in both halves. The draft read “a Nobel nomination reached her in 1924, three years after she died.” Gösta Mittag-Leffler wrote in 1925 intending to nominate her, and Harlow Shapley replied that she had died in 1921 — four years, not three. No nomination was ever made.

Six children → six boys. The 1925 series is six boys; the girls are the 1927 paper, translated by Simmonds & Sukhareva in 2020 as “Part 2: the girls.”

100 feet → 96 feet of chart paper a day, which is Bell Burnell’s own figure.

Annie Jump Cannon: two things had been merged into one. The draft had her “given a medal in her own name during her lifetime,” which is neither thing that happened. She received the National Academy of Sciences’ Henry Draper Medal in 1931, the first woman to do so, and she separately funded the Annie J. Cannon Award out of her 1932 Ellen Richards Prize; its first recipient, in 1934, was Payne-Gaposchkin. The corrected version is also the stronger one, because the full record includes Harvard giving her no regular appointment until 1938, forty-two years after she joined the Observatory.

Four Wikipedia citations replaced. Under the aggregators-are-leads rule: NASA’s 1P/Halley page for the comet, the Royal Astronomical Society’s own history-of-women page for the 168-year medal gap (its Vera Rubin page does not state it), and the AAS award page plus Harvard’s Women at HCO records for Cannon.

CorrectedStar Stuff — two counts, one of them already wrong before this zine existed

The collection’s hero line read “24 pieces” against a grid that already held 25, so it was one short before anything was added and is now 26. And the prose beneath it said “sixteen of these pieces were made much later”; re-derived from the members’ own numbers, seven of the first ten zines are here and the remainder is nineteen, not sixteen. Both are the failure this repo keeps logging: no gate can read a number written out in prose, so every count on every collection page is a lead rather than a fact, and has to be re-derived at each addition rather than incremented.

2026 · August 19

The most famous rotation-curve paper never uses the word dark, the curves in it are not flat, and the sentence it actually ends on is so narrow we took the zine's title from it — plus a founding premise that failed its own fact-check and is printed on the page instead of quietly dropped, a coinage this repo had been using on fifteen pages without ever crediting anyone, and eleven spreads relaid out because two columns were carrying a five-to-one imbalance — then a second zine in which the number that gave Brontosaurus its name back turns out to be thirteen, chosen one step past the largest gap anybody was willing to call the same animal, published with its calibration shown and fenced by its own authors as valid nowhere else — and the appeal those same authors filed three years later and lost, in print, under a numbered Opinion — then the companion catalogue: eighteen cards of animals we drew wrong, one of them drawn upside down and then back-to-front, one that was three animals in three different groups, and a famous anecdote in which the wrong man has been getting the credit for a hundred and thirty-five years

One addition, one premise corrected before publication and left visible, and one attribution finally settled. The new zine spends the last of Helen Edgar's namings that we had been holding back — the Dark Matter Field, the first of her twenty constellations — and the physics beside it turned out to contradict its own retelling twice over. Zwicky had a factor of four hundred and the phrase dark matter in 1933 and filed the whole thing as “an unsolved problem.” Rubin, Ford and Thonnard in 1980 did not report flat rotation curves and never wrote the word dark. Rubin in 2000 still would not choose between unseen mass and a broken law, and called it folly to think we know what a galaxy is. Then in 2006 somebody did choose, at eight sigma, using the exact instrument our own pitch had offered as proof that choosing was impossible — so the premise this zine was proposed on is wrong, and spread seven is where it says so. Then a second addition, out of an Infodumplings prompt for tonight's session. The source post reports that Brontosaurus got its name back in 2015; reading the 298-page paper behind it produced the two things the post does not have. The threshold is thirteen character changes, and the authors published where the thirteen came from — calibrated on the pairs everybody already agreed were one genus, at twelve and eleven — then declared it non-transferable: it “cannot be applied to any other analysis, even of the same clade.” And in 2018 the same authors petitioned to fix a second problem and were refused, in a numbered Opinion anyone can cite. Published provenance, a declared range, named dissent, a route of appeal, a citable ruling. Ask a cut-off score for any one of the five. Then the field guide the zine had been asking for. Sixteen animals we reconstructed wrong, sorted by the kind of mistake rather than by taxon, with a status on every card — because a catalogue of corrections that will not say which corrections are finished reads as a list of settled triumphs, which is the smoothing it is complaining about. Ten revised, four still contested, two where the science was fixed and the name is permanent. And a count on the collection page turned out to have been wrong before we touched it, in three places.

NewA Field Guide to Unfinished Animals — Field Guide No. 18, in Field Guides

The companion to No. 61, and it asks the question that zine assumes an answer to: how often does the record actually move? Constantly, and in public. Eighteen cards, sixteen entries, sorted into five kinds of mistake plus one place the apparatus stops.

The guide adds one thing to the house form, and it is borrowed from How We Got Here, where every joint in a chain is marked. Every card carries a status: revised (ten cards), contested (four), or name stuck (two). Without it this page would read as a list of settled triumphs — which is exactly the smoothing it exists to complain about. A catalogue of corrections is dishonest if it will not say which corrections are finished.

Assembled wrong, where every piece was real and the arrangement was ours. Hallucigenia was published in 1977 walking on its spines with its legs waving in the water, inverted by Ramsköld and Hou in 1991 — and then, still facing the wrong way, turned end-for-end by Smith and Caron in 2015, who found the eyes, the mouth ring and a tooth-lined throat at the other end. Wrong on one axis for fourteen years and on the other for twenty-four more. Anomalocaris spent most of a century catalogued as three animals in three different groups — a shrimp-like appendage, a “jellyfish” and a “sponge” — united by Whittington and Briggs in 1985, and then the correction was itself corrected in 2012 when the oral cone turned out to have three plates and not four, restoring Peytoia. Mantell put the Iguanodon thumb spike on its nose, and it took thirty-odd whole skeletons at Bernissart to move it to the hand.

And the Elasmosaurus card carries the awkward version of a story everybody tells wrong. Cope really did mount the skull on the end of the neck in 1868. But the popular telling has Marsh catching him out, and that is not what happened: Joseph Leidy made the correction at the Academy of Natural Sciences on 8 March 1870, with Marsh sitting in the room, and Marsh's claim to have found it survives only in a newspaper piece roughly twenty years later. Two errors, and the second one — a retelling that improved with age, in favour of the person telling it — is the more instructive.

Known from almost nothing. Deinocheirus was two enormous arms, found on 9 July 1965 and named in 1970 by Halszka Osmólska and Ewa Roniewicz on an expedition led by Zofia Kielan-Jaworowska — and for forty-four years the published position was close to we do not know what this is, which is not an error but a record correctly reporting its own gap. The Spinosaurus holotype burned in the Munich bombing of 24–25 April 1944, after Stromer's repeated requests to move the collection were not acted on, so every reconstruction since argues from photographs. And Helicoprion's spiral of teeth was placed on the snout, the upper jaw, the back and the tail before a 2013 CT scan put it in the lower jaw — of a specimen that had been sitting in a collection since 1950. Some of the open questions on this page are already answered by material somebody holds, unimaged.

The line moved, and it moved in both directions. Brontosaurus is the short form of the zine. Torosaurus, proposed in 2010 as merely a fully grown Triceratops and rejected in 2012, is still unresolved — and it is the mirror image of the Brontosaurus case, a merge rather than a split, with the opposite fate. Nanotyrannus, dismissed for forty years as a juvenile T. rex, was reinstated in Nature in 2025 on a near-adult skeleton from the Duelling Dinosaurs block, with a second species nobody had separated out. Tanystropheus was one species until a CT scan made it two, both size classes fully grown. Three of those four were the same error: explaining a difference by age.

The name outlived the correction. Oviraptor means egg seizer and it was brooding its own clutch — and the card refuses the tidy version, because the 1995 brooding specimen is an oviraptorid later named Citipati, not Osborn's animal. Basilosaurus means king lizard; Owen showed within five years that it was a mammal, proposed Zeuglodon, and priority refused him. Both names are permanent. A label outlives its refutation either by rule or by repetition, and only one of those two admits what it is doing — which is the whole argument of the zine, and the reason this band exists.

And one band is about stories rather than specimens. The fish-crawls-out-of-water picture has a date problem — Devonian trackways about eighteen million years older than the earliest tetrapod bodies — but the retelling of that correction got smoothed too, because those trackways are themselves disputed, and the card ends without a punchline on purpose. The film raptor is not the fossil one. And the tail-dragging dinosaur of the old picture books was never measured: it was an inference from a category, sitting underneath every reconstruction, and it took a 1969 monograph and twenty years of argument to shift.

Two cards are dashed and carry no reframe table, which is the fifth distinct reason this site has withheld the apparatus. Mary Anning found, prepared and drew the first complete plesiosaur in 1823, and Conybeare presented it to the Geological Society without naming her; women could not be admitted until 1904, and on her only trip to London no label on her own specimens carried her name. Running sounds like / actually down the side of a person would file her with the misreconstructed animals, which is the injury. And the last card has nothing to correct yet — on the guide's own argument some entries above it are currently wrong, and rather than guess which, it names the three patterns to expect: the age explanation, the fragment that fits every reading, and the instrument that arrives before the answer.

A count on the collection page was wrong before we touched it, in three places, and the fix is the interesting part. Re-deriving the totals properly — rendering all seventeen guides and counting cards in the DOM, since the entries are built from JavaScript object literals and the source cannot be counted — gave 17 guides, 217 cards, 205 entries, which validates cleanly against the page's existing 16 / 199 / 189. But the prose around those numbers had drifted: the hero line and the front-page section intro both still said “Ten of these guides arrive at the same sentence” when No. 17 had already made it eleven, and the companion sentence claimed “Eight of the fifteen” while enumerating only six. Re-derived from every guide's own colophon: eleven of the seventeen, all eleven now named, the remaining six named too, and the sentence records that this figure has been wrong three times and why. Every one of those errors was a count read off markers rather than off the work.

One more marker-derived trap, caught in the same pass. Grepping "no standard" across the guides now returns twelve — but this guide only quotes the house formula while explaining that it deliberately does not use it. The honest figure is eleven. This guide's arrival line is there is no final draft, and it says on its own face why it departs: what varies here is not the animals, it is us. A sauropod is not unfinished. Our drawing of it is.

Eighteen cards, sixteen entries, eighteen diagrams. Nine entries rest on secondary historical accounts rather than archival primaries and each one says so; two circulating claims were hunted down and refused. Not one correction in the catalogue made an animal less interesting. Every single one made it stranger. There is no final draft.

NewThirteen Changes — Zine No. 61, in Star Stuff

Out of Infodumplings: Do You Still Have a Favorite Dinosaur?, and the prompt behind that is Human Restoration Project's. Every kid who loved Brontosaurus got told actually, it's Apatosaurus, and the lesson attached was never really taxonomy — it was that the enthusiasm was the amateur part.

Start with the sentence that did the erasing. Marsh named Apatosaurus ajax in 1877 and Brontosaurus excelsus in 1879; Riggs folded the second into the first in 1903 on differences recorded as “usually considered insufficient to justify generic distinction.” Insufficient is a quantitative word with no quantity behind it, and for eighty years nobody could answer the question a nine-year-old would ask: insufficient by what measure? There wasn't one.

Then somebody built the measure, and this is the part the popular retelling drops. Tschopp, Mateus & Benson's revision of Diplodocidae (PeerJ 3:e857, 2015) runs to 298 open-access pages, scoring 81 specimens against 477 morphological characters — and its methods section opens by conceding the soft part rather than hiding it: separation “is somewhat arbitrary, in particular in paleontology, where no tests exist for the biological species concept,” and “subjectivity of these interpretations is especially great.” So they published the calibration. They counted the differences between pairs everybody already agreed were a single genus — twelve between A. ajax and A. louisae, eleven between D. carnegii and D. hallorum — and set the bar one step past the largest agreed gap: “a minimum of 13 changes is herein considered necessary for generic separation.” Six for a species, deliberately loose, because “a wider margin is preferred herein in order to be more cautious.” You can argue with a number whose derivation is printed. You cannot argue with insufficient.

And then they fenced their own instrument, which is the rarest thing here. The numbers “cannot be applied to any other analysis, even of the same clade” — because the counts depend on the matrix, the character list and the software. A threshold that declares its own range of validity, in advance, inside the paper that depends on it. By that ruler Brontosaurus holds its own genus after 112 years, and even the headline is hedged in the abstract: “considered valid by our quantitative approach.” Nor was the method a rescue machine — the same pass dissolved “Dinheirosaurus” into Supersaurus and raised Galeamopus, cutting against its own authors' earlier work.

The find that made this a zine rather than a retelling is the appeal they lost. The type specimen anchoring the entire genus Diplodocus is a partial tail the revision calls a nomen dubium, leaving “the otherwise well-known genus Diplodocus typified by a dubious species.” So they petitioned the International Commission on Zoological Nomenclature to move the anchor — Case 3700, with a comment period and supporters — and on the last day of 2018 the Commission said no: Opinion 2425, Diplodocus longus maintained. Not overruled in a corridor. Refused in print, with a number on it, by a standing body whose refusals you can look up and cite and be annoyed about for the rest of your life.

So set five properties beside the label on a child. Published provenance; a declared range of validity; named dissent (Prothero, four months later, under his own name); a route of appeal; a citable ruling. A cut-off score arrives already applied, says nothing about who chose it or from what or where it stops meaning anything — and then it travels across ages, countries and purposes it was never built for. The ruler that would not travel one clade sideways gets less latitude than the one we hand a five-year-old for life. And there is no Case 3700. Nowhere to file, no comment period, nobody obliged to write down we considered this, and here is our answer.

The paperwork is not always kind, and spread eight refuses to pretend otherwise. Oviraptor means egg seizer — named in 1924 for a clutch it turned out to be brooding, corrected by Norell and colleagues in 1994 and 1995, and stuck with the libel permanently under nomenclatural priority. Two ways a label outlives its own refutation: priority, which is a rule written down, and repetition, which needs no rule at all. Only one of them admits what it is doing.

The turn is that revision made every one of these animals better. Velociraptor was feathered — we know it from quill knobs on the forearm, the anchor points where large feathers attach by ligament in living birds — so it is turkey-sized, plumed, and much closer to something bad-tempered in a farmyard than to the film, which is not a metaphor, because birds are dinosaurs. Brontosaurus came back. Oviraptor turned out to be a parent on a nest. Not one correction made an animal less interesting; every one made it stranger. The animals were never wrong about themselves. We were wrong about them, and being wrong out loud is what let them get better.

Which answers the question the prompt was really asking. Two hundred and ninety-eight pages is not what growing out of it looks like; it is what it looks like when nobody does. And what get serious demands is never depth — monotropic attention already goes further into a subject than most curricula ask of anyone — it is convertibility. Point the same attention at something billable and it is expertise; point it at sauropods and it is a hobby you should have outgrown. The demand is not that we stop being absorbed. It is that we stop being absorbed for free. Jorn Bettin's inversion holds: retained neoteny is not developmental lag but a distributed adaptive capacity, the thing that stops a group's collective intelligence from setting into whatever the highest-ranking person already believes.

And the close earns the collection. Apatosaurus louisae is estimated at about 41 tonnes of calcium phosphate, and calcium and phosphorus are made in stars — so a sauropod walked the Late Jurassic on a skeleton assembled from dead stars, every atom second-hand, every atom still in circulation. Bone is piezoelectric, as Yasuda showed in the 1950s, so those animals were writing their own skeletons by walking on them. Meanwhile Sander and sixteen co-authors still report “no direct evidence on sauropod food and food processing”: the biggest animals ever to walk, and we do not know how they ate. Being unexplained never made them less real. Down to is not because of — the star stuff is how far the loving reaches, never why it is owed, and it reaches back through the Jurassic.

Three claims were hunted down and then refused, which is the rule working. The circulating quill-knob and feather counts are press coverage only, so no numbers appear. The much-quoted line about there being “no genus-o-meter” traces only to news reporting, so it is cut — the paper's own hedge makes the point better anyway. And the tidy version of the Oviraptor story, in which Osborn's own 1924 specimen is proved innocent, is not what the record says: the 1995 brooding specimen is an oviraptorid later named Citipati osmolskae, and the zine says so on the spread and in the colophon. Four primaries are declared unread on the page, including Opinion 2425 itself — so the argument is only that a numbered ruling exists, never what its reasoning was.

One near-miss worth recording. The first outline of this piece duplicated No. 40 Five Sigma, which already owns “a threshold is a number somebody chose” and Fisher's convenient 0.05, and it was caught only by grepping the collection before writing rather than after. The two are now explicitly distinguished on spread five: Five Sigma is about thresholds of confidence, this is about a boundary of kind. No. 9 owns the imposed-line argument, and this piece takes the next step — what an imposed boundary owes you when it is drawn honestly.

Thirteen spreads, eleven diagrams. A method, not a proof. A hundred and forty years of sauropod taxonomy knows nothing about any of us. What it shows is what a category looks like when the people drawing it will show their working, name their instrument's limits, publish the objections, and lose an appeal in public. We are not asking science to be gentler with us. We are asking the paperwork to be as honest as the paper.

NewBeyond the Optical Image — Zine No. 60, in Star Stuff

Helen Edgar's My Monotropic Galaxy maps twenty constellations of her own Autistic self, and the first of them is the Dark Matter Field — “the heavy darkness of neuronormativity, reflected in the accumulated weight we carry around of a world that does not meet our needs, and does not love us down to our star stuff.” No. 45 and No. 46 each took other namings from her map and said in their colophons that this one was being deliberately kept back. This is the piece that spends it, and her Gravity Well is still on the shelf.

The order of borrowing is drawn as a diagram on spread two, with the reverse arrow struck out. She reached for the cosmic vocabulary first, for her own reasons. The physics is set beside it afterward to see what a careful version of that inference looks like. Physics first, then a claim about people because the physics said so, is the move this whole collection exists to refuse — so nothing in the following eleven spreads is offered as evidence about a nervous system.

Then the retelling comes apart, twice, at the primary. Fritz Zwicky (1933) applied the virial theorem to seven galaxies in the Coma cluster and found the average density “would have to be at least 400 times greater than that derived on the basis of observations of luminous matter.” He even wrote that this “would lead to the surprising result that dark matter exists in much greater density than luminous matter.” And then he closed the section — this is the part nobody quotes — by saying the large velocity dispersion “holds an unsolved problem.” He had the measurement and the word and declined to place the discrepancy. The first thing a careful person does with a discrepancy is decline to place it.

Forty-seven years later, the paper the whole story hangs on says something narrower than either version you have heard. Rubin, Ford & Thonnard (ApJ 238, 471, 1980) do not report flat rotation curves: verbatim, “Most rotation curves are rising slowly even at the farthest measured point,” and the only negative claim is “Neither high nor low luminosity Sc galaxies have falling rotation curves.” Not they are flatthey do not fall. And they did not announce dark matter; they wrote that Sc galaxies “must have significant mass located beyond the optical image” — a statement about where that refuses to say what. The word “dark” never appears in the abstract, and the paper is filed under the subject heading galaxies : internal motions, because that is what was measured. The zine takes its title from that sentence. (Author order confirmed at the page scan too: several citation databases print it as Rubin, Thonnard & Ford, which is wrong.)

In 2000, as the most-cited person alive on the question, Rubin was still withholding: “Surprisingly, we cannot yet rule out a modified gravitational potential, rather than dark matter, as the explanation of our observations.” And, about her own field and the object she spent a career measuring: “It is folly to believe that we know what a galaxy is, while the extent, the density distribution, and the composition of ≥90% of its mass are still a dark mystery.”

And this is where the zine was wrong, so the correction is on the page rather than in a private edit. It was proposed on the premise that the field is “never directly observed, only detected by its distorting effect”, with gravitational lensing offered as the evidence for that, and the parallel to neuronormativity called “an exact structural match.” But lensing is the instrument that made the direct detection. Clowe et al. (2006) measured an “8-sigma significance spatial offset” in the Bullet Cluster that “cannot be explained with an alteration of the gravitational force law, and thus proves that the majority of the matter in the system is unseen” — closing the door Rubin had held open six years earlier. Spread seven carries the correction in a note under the quotation. What is still missing is the particle, not the mass: LZ and XENONnT have both come up empty and the searches are widening to axion-like particles and dark photons, so spread eight holds the two claims apart on purpose. Say only the first half and you have a settled science that brooks no questions; say only the second and “they don't even know what it is” gets used as though it discredited the measurement.

The argument itself is about where a discrepancy is allowed to live. A model predicts what a body will do; the body does something else; the gap has to go somewhere — the mass, the law, or the measurement. Astronomy has spent ninety-three years arguing all three out loud, with rivals named and nulls published, which is the only reason the eventual answer is worth anything. Asked about a child, the same question was closed on day one and the residual placed in the child: not the fluorescent hum, not the unannounced transition, not the six hours of masking already spent before lunch, not Damian Milton's double empathy problem, whose whole point is that the failure of understanding is a property of the gap between two parties rather than of one of them. The claim is deliberately narrow, because the sloppy version is not ours: not that the environmental attribution is obviously right, nor that a body never contributes to a gap, but that it was never treated as an open question. No rival funded, nothing in the criteria reading “we cannot yet rule out.” Where astronomy built a public controversy, we got a default — and a default with a citation attached is much harder to answer than an insult.

Spread eleven says where the analogy breaks, at full strength rather than in a hedge. Neuronormativity is unmarked, not unobserved. It is written down — diagnostic criteria, intervention targets, the compliance goal on an education plan, “culture fit” in a hiring rubric, the seating chart, the lighting spec. Dark matter is hidden by nature; this is hidden by convention, and it goes unnamed only because it is the baseline, which is the one thing a measurement never lists among its objects. That difference is the good news. A particle that has evaded ninety-three years of the best instruments ever built may stay beyond us for another century. A convention is a decision written by people, and it can be read, quoted, contested and changed this year.

The close absorbs an idea that had been sitting on the slate as a separate zine, because keeping them apart would have made both weaker. Take the identical fact — unseen mass is most of what holds a galaxy together, and without it the thing flies apart — and it reads just as naturally as the co-regulation nobody logs, the care work nobody bills, the accommodations that never made it into a report. Same field, same evidence, same ninety-three years of measurement, and the morals are opposite: crushing weight, and the only reason anything is still standing. The physics adjudicates neither. If one fact can carry two opposite morals, the moral was never in the fact — somebody chooses, and has to own the choosing rather than hiding behind the galaxy. Helen chose weight, about her own life, in the first person, and said so. That is what honest use of a metaphor looks like, and it is the cleanest demonstration we have of why this collection keeps saying a rhyme, not a proof.

A coinage this site had been using without crediting anybody. “Neuronormativity” appears on fifteen pages here and had no attribution anywhere in the project. It is Nick Walker's neuronormative paradigm, from Neuroqueer Heresies (2021), where it supersedes his earlier pathology paradigm — and the source that settles it is Helen Edgar's own The Neuronormative Paradigm: Naming The Systems That Harm (Autistic Realms, November 2025). The book itself has not been read, so the credit is logged as confirmed by corroborating secondary accounts rather than at the primary, and the colophon says so.

One quotation was hunted down and then refused. The much-repeated Rubin line about preferring a modification of Newton's laws to “a new kind of sub-nuclear particle” traces only to secondary retellings citing an unnamed New Scientist piece. It is not used. The PASP 2000 sentence says the same thing, is hers on the record, and was read at the publisher — which is the whole rule: aggregators are leads, not citations.

Two production notes worth keeping. The sixth gate earned its keep again: the cover motif's caption ran straight through the accented word in the title, 38.8×8.4px — the same fault as No. 48, and invisible to the other five gates — so the line moved into the byline, with a comment in the source telling the next person not to put text back into that SVG. And the two-column spreads were wrong, and a reader said so: measuring text ink against figure ink gave ratios of 4.8 to 5.9 across all seven of them, roughly a thousand pixels of prose beside a hundred-and-eighty-pixel drawing. All eleven content spreads are now stacked, figure beneath text, and the gates were re-run clean afterward. Two columns only earn their keep when both carry weight.

Thirteen spreads, eleven diagrams. Zwicky read in translation, not in the German; the “never says dark” claim is scoped to the abstract, which was read in full. A method, not a proof.

2026 · August 18

The front page had grown to a hundred and sixteen phone screens, three quarters of it card descriptions — and the obvious fix, a Details toggle inside the card, is invalid markup that every gate here waves through — plus an otter that keeps a stone across a meal rather than across a lifetime, a population that answered scarcity by refusing to average itself, and an accommodation you can read off a skeleton — then a refusal that put the otter on the stand as a witness for us, which is the one thing the same refusals set forbids — and a freshwater polyp with no brain that sleeps anyway, needs to, and settles what a ledger for rest was ever supposed to be counting — then a catalogue of fifteen ways of resting, in which the most-repeated sleep statistic about any mammal turns out to be one measurement taken in one warm room

A restructure of the index, and one finding that outlasts it: a <summary> inside a card anchor passes check-markup.mjs clean, exit 0 — the one gate built to catch nested interactive elements cannot see the second-most obvious way to make one.

NewA Field Guide to Resting — Field Guide No. 17, companion to No. 59

Fifteen ways of resting among our Terran kin, and they do not converge. Sorted not by taxon and not by how much, but by what carries the rest: a body with no centre to switch off, a body that cannot stop moving, a body shut down for a season, a body whose quantity we have mostly guessed at, and a body being held by something outside itself. There is no standard way to rest — the eleventh time a guide in this collection has arrived at that sentence independently, and the count was checked by grep rather than by memory.

The card the guide is built around is a correction, and it is not about an animal. Every table and listicle gives the little brown bat as the sleepiest mammal at 19.9 hours a day. Harding and colleagues went back to where that came from: two studies from the 1960s and 70s, the specific figure recorded at an ambient temperature of 33 °C, resting — in their words — on a single study using an unknown number of specimens. The same measurements give 11.0 hours at 26 °C. The most-repeated sleep statistic about any mammal nearly halves depending on how warm the room was. Two fruit bat species measured properly come in around 14.7 hours, level with a hamster; roughly one per cent of mammal species have had their sleep measured at all. So that card prints no headline number and its diagram has no 24-hour bar — every other card with an honest duration has one, and the absence is the argument. The familiar giraffe figure circulates at both 1.9 and 4.6 hours, which is the tell.

The rest of the catalogue. Hydra and Cassiopea have a nerve net and no brain and meet every behavioural criterion for sleep; C. elegans stops for two or three hours before each of its four moults. Frigatebirds sleep 42 minutes a day aloft, in the soar and never while flapping. Common swifts spend over 99 per cent of a ten-month phase airborne — and the record is not uniform: within the same study some individuals roosted for whole nights in midwinter while others never landed, which is why this is a catalogue and not a ladder. Sperm whales hang vertically and go silent. Arctic ground squirrels hold a core temperature of −2.9 °C by supercooling, with no antifreeze in the plasma. Emperor penguins reach 37.5 °C inside a huddle while it is nineteen below outside, and about two thirds of the saving is geometry rather than warmth. Parrotfish build a mucus tent for 2.5 per cent of a day's energy. Northern fur seals suppress REM for weeks and never pay it back, which unsettles the tidiest story about sleep debt there is.

Two cards carry no reframe table, for two different reasons, and the page says which. The apparatus corrects a mistaken verdict about an animal; these have no verdict to overturn. Sponges, because whether any sponge sleeps is genuinely unknown, and writing actually over an open question is bluff with a table around it. Plants, because the misnaming was never a judgement passed on the organism — and the provenance was read from the out-of-copyright primary rather than from summaries of it: Darwin's The Power of Movement in Plants (1880) records that the “so-called sleep of leaves” was noted as early as Pliny and named by Linnæus's Somnus Plantarum, and Darwin calls the daytime version one “which has improperly been called diurnal sleep.” This follows the rule No. 10 set and No. 16 kept: a subject that cannot take the apparatus gets a different card, not a smaller one.

One claim discarded and two flagged. The story that sperm whales use exhaled bubbles as ballast during drift dives surfaced only from content farms with headlines suspiciously matched to the search, so it is absent and the coda says why. Whether those dives are bihemispheric sleep is the authors' suggestion, not their result. And the lungfish cocoon being living tissue is published, while its antimicrobial function is challenged by a 2024 preprint that has not been reviewed — named, with neither side leaned on. The collection's counts were re-derived rather than incremented: anchored records in the search index minus the cards each guide deliberately withholds, giving 16 guides, 199 cards, 189 entries, which then matched the arithmetic instead of being assumed from it.

Fact-checkHelen Edgar said the frigatebirds confused her. Three faults in the passage, and a fourth we found while checking — a number that came from a search summary rather than a paper

The sentence she quoted, from No. 59 spread 5: “A frigatebird asleep on one side and awake on the other is not half a bird.” It was an animal metaphor doing argumentative work, which the same zine refuses five spreads later in as many words. The structure ran: lurking is not absence → a half-asleep bird is not half a bird → so your partial presence counts. That puts the bird between a human claim and its conclusion, as the warrant. It is the No. 58 fault in a new costume — a refusal contradicted by the body of its own zine — and the note we had written under it (“the frigatebird is an illustration here, not the argument”) was a hedge admitting the problem instead of removing it. The bird is cut from spread 5 entirely. What stands in its place says why there is no animal on that spread, using Helen’s own distinction from No. 58: the otters are evidence; we are testimony. That spread is testimony and never needed a bird behind it.

Two more in the same complaint. The sentence misdescribed the bird as habitually half-lit — 42 minutes a day in bouts of minutes is not a cruising state. And spread 4 gave two flight durations, two months and ten days, and reconciled them only in a hedge note, so a reader met an apparent contradiction in the body and had to go looking. Now reconciled inline: different teams asking different questions, different birds on different trips.

Then the fourth fault, which is ours and worse than the one reported. Spread 4 asserted that about seven in ten in-flight sleep bouts were asymmetric. That figure is in neither Rattenborg source. It came from a search-result summary, attributed to a 2019 review that had not been opened — the precise failure mode our own ledger exists to prevent, committed on a shipped page in the same session in which we corrected two of Helen’s citations for the same reason. The review actually says nearly half of the asymmetric sleep passed the unihemispheric threshold: a different claim over a different denominator. The number is gone from the body and from the diagram label, which carried it too, and the page now states only Rattenborg’s own finding — more often one hemisphere at a time aloft than ashore, with bihemispheric episodes also recorded.

Opening the review closed an open item and improved the page. Rattenborg is its first author, reviewing his own data, and he states that sleep happened while the birds soared and never when they flapped. We had withheld that detail as review-sourced; it is the study’s own lead author, so it is now on the spread. The tell was available the whole time and got shrugged at: the colophon carried the correct qualitative claim while the body asserted a percentage. A summary that agrees with a plausible number is not a source.

NewThe Rest You Keep — Zine No. 59, built with Helen Edgar, in More Than Human

Hydra is a freshwater animal a centimetre or two long with no brain — a nerve net, and nothing anywhere gathering it into a decision-maker. It sleeps. It goes quiescent, it is harder to rouse, and deprive it and it sleeps longer afterwards and drops off quicker: the homeostatic signature that separates sleep from sitting still. Deprive it further and the number of dividing cells falls (Kanaya et al., Science Advances, 2020). So rest is not a reward released after enough output. It is older than the machinery of earning, and it is when the building happens.

Eleven spreads, and the structure is Helen Edgar's. Built with her from Reclaiming Rest: Autistic Burnout, Monotropism, and Resistance and its companion Going Deeper, whose inversion is the centre of the zine: rest that fights your attention is not rest, and recovery for monotropic people often means going deeper rather than switching off. The animal-rest framing follows Otters Already Know How to Rest. It is a companion to The Stone You Keep (58), which takes the same Saturday room and follows the otters instead. Internally it runs on the ARLES ladder, deliberately not printed on the spreads.

Great frigatebirds sleep 42 minutes a day on the wing against twelve hours ashore, mostly one hemisphere at a time and while soaring rather than flapping (Rattenborg et al., 2016) — so rest is not the opposite of motion. Hibernating bears go six months without weight-bearing movement and lose no bone at all, because formation and resorption fall together and stay balanced (McGee-Lawrence et al., Bone, 2009). The bear does not out-work the problem; it turns remodelling down at both ends. Meanwhile the den does separate, measurable work on the energy bill: metabolism to about a quarter of basal with core temperature down only five or six degrees (Tøien et al., Science, 2011).

The zine will not call meltdown or shutdown rest, and that is a correction to the essay it was built from as much as to anything. Describing a shutdown as enforced rest turns an injury into a strategy and then hands the person the bill for having needed it. Interoception gets its own spread instead: the signal often arrives quiet, or late, so there is no ramp — you feel fine, then you do not. Which is an argument for resting before the edge, not for timing it better. The refusals set of seven also declines rest-so-you-can-produce, “just relax”, rest-as-project, animal-metaphor-for-people, and natural-therefore-allowed: the animals are not a permission slip, and a belonging claim resting on biology can be revoked by the next paper. Hydra is not evidence that rest is permitted. It is evidence that the thing being asked for permission was never there.

Fact-checkA Tricia Hersey sentence everyone cites to the wrong book, and three repairs the outline could not have caught by reading

The quotation is right and the book was wrong. Hersey's sentence — that rest is a form of resistance because it disrupts and pushes back against capitalism and white supremacy — is widely cited, and was cited to us, as We Will Rest! (2024). It is in Rest Is Resistance: A Manifesto (2022), in the passage where she names Rest Is Resistance the Nap Ministry's tagline and mantra. Hersey is not in our highlights library, so until the book itself was opened the quote rested on a secondary essay — an aggregator hop of exactly the kind this page exists to record. Ryan owns both books and settled it from the page. Then the second sentence resolved, and it is a second wrong-book attribution by the same chain. The tool for production and labor passage was cited to the 2024 book as well. It is in neither book — it is a Nap Ministry post of 21 February 2022, Hersey’s own publication and therefore a primary, published two years before We Will Rest! existed. The zine quotes it whole, because the version in circulation drops two sentences without marking the omission — It is a counter narrative and We are divine — and the first of those turns out to be the useful one: an earning frame is a narrative, not a measurement. Two real sentences, both filed under the wrong book, and no amount of cross-checking secondary sources against each other would have found either.

Three repairs, all found by checking rather than by reading. The draft opened its frigatebird spread with “can fly for months without landing” and cited flights of ten days two sentences later: the months figure is a different study (Weimerskirch et al., Science, 2016, up to two months aloft), and the page now carries both and says on its face that they are two results rather than one. “Short bursts, seconds long” conflated two sleep types — in-flight slow-wave bouts ran up to several minutes; it is REM that lasts seconds. And a bridge from the den to the bone is not in the literature: den microclimate is well documented for insulation and energy conservation, but nothing links den quality to bone preservation, and the bone mechanism is internal and would hold in a poor den. So spread 7 is the bone, spread 8 is the energy budget, and a figure-note says plainly that the two are kept apart rather than merged into a tidier story.

And one doubt of ours that was simply wrong. The draft's cross-reference to Minor Worlds as the stimming argument was queried against a one-line description in our own working notes. Helen was right and the notes were the lead that misled: No. 16 is subtitled on niche construction, stimming, and how difference doesn't just see a world — it builds one. Read the page, not the summary of the page — including when the summary is ours. And one stale number found on the way past, which is the count this repo keeps re-learning it cannot automate: the front page’s collections lede said thirty-six zines sorted into five collections. Derived from the five register collection pages’ own cards it is forty-four — 23 in Star Stuff, 7 in More Than Human, 6 each in Star Gazing and Kin, 2 in Stars We Grew Up On. It was stale by seven before this zine was added, and not one of the six gates can read a number written out in prose.

SiteEvery card on the front page now leads with the piece's own line, and the long description moved behind a disclosure

Measured before it was touched: 94,607 pixels at 375 px wide — 116.5 phone screens, of which card descriptions were 73%. The median card was 765 px, near enough a full screen each, and the median description had grown to 1,089 characters with fifty-nine of the ninety-seven over seven hundred. The tallest single card ran 3,005 px: three and a half screens to describe one zine. Nothing here measures a scroll, so it grew the way the counts do — a paragraph at a time, each one defensible on its own.

Each card now carries the piece's own tagline, lifted verbatim from that page's .cover-subtitle where it had one — sixty-three of the ninety-seven did — then a short summary, then a Details disclosure holding the full description unchanged. Nothing was deleted. The result is 43,647 px, 53.8 screens, down 54%, with the median card at 376 px and the tallest at 455.

The thirty-four pages with no tagline of their own are the interesting half — every field guide, every playlist, every broadside. A guide's cover states a count, not a claim, so its line had to be written, and it was written from what the page already argues rather than invented for the index: there is no standard nervous system, a lone wolf is not an outcast — it is a disperser, almost every entry is a thing a turtle is supposed to have and doesn't.

Eleven cards then failed their own test. With tagline and summary on the face, their Details restated it word for word — four of them added literally zero new words, Bone Song among them. The first answer was to drop the disclosure on those eleven; the better one, and Ryan's, was to make it worth opening. So each was rewritten from the page itself — Yasuda's 1954–1957 piezoelectricity finding set against the nucleosynthesis that forged the calcium, Underground's hedge on the wood-wide-web with its Karst citation named, the playlist's Bowie run from Space Oddity to Blackstar. Re-measured afterwards, the leanest disclosure on the page adds ten words the face does not have.

SiteThe obvious way to build this is invalid, and check-markup.mjs passes it — so the disclosure is a sibling of the card link, not a child

A card is an <a>, and an <a> may not contain interactive content. <summary> is interactive, so a Details toggle dropped inside the card wrapper is the same fault that took the Print collection's cards apart in August — nested interactive elements — wearing a different tag name. It was tested rather than assumed, and the gate built for exactly this fault reported ok, exit 0: the nesting check looks for <a> and <button> by name, and <details> only registers as a block element, which fires only inside a <p>. Chrome tolerated a synthetic click in the test; two real ones never opened the disclosure at all. A structure that four gates approve and one browser quietly reinterprets is exactly the shape of the faults this changelog keeps recording.

So the card is now three parts: a .card-wrap that draws the box and the coloured rule, the <a class="card"> unchanged inside it, and the <details> as its sibling. Measured after: a click on the summary opens the disclosure and does not reach the anchor, where inside the anchor it would have navigated away instead of expanding.

Print was the second silent failure, and it needed both a rule and a script. A closed <details> prints as nothing, so the paper copy of the front page would have carried ninety-seven cards with no descriptions — and the token inversion in starstuff.css does not reach it, because this is not a colour. How a closed disclosure hides its content has moved across engine versions (display, then content-visibility on ::details-content), so a CSS-only answer is a bet on which browser the reader has. There is now a print rule and a beforeprint handler that opens every disclosure and puts each one back as the reader left it. Verified under print emulation rather than by reading the stylesheet: all 97 descriptions lay out, in the house print ink #222222, with the summaries hidden, the document 2.6× taller than on screen.

SiteAll thirteen collection pages got the same cards — and where the disclosure would have been thin, it was written rather than dropped

The front page split created an inconsistency the same day it fixed a scroll. Thirty-six collection-page cards carried a verbatim copy of the old index description, so the same piece was suddenly showing a tagline and a short summary on the index and a wall of text on its collection page — with the collection version now the longer of the two. Kin's median card ran 1,712 characters, higher than the index's own median before any of this started.

So all 103 cards across the thirteen pages now carry the same three parts. The CSS is deliberately not shared: each collection keeps its own accent fallback and hover tint, because that tinting is the thing telling you which collection you are standing in, so the transform reads each page's tokens rather than imposing one set. Measured at 375 px: Star Stuff 29.1 screens to 14.1, How We Got Here 23.1 to 13.8, Kin 11.0 to 5.7, Star Gazing 9.0 to 5.7. Across the thirteen, 141,724 px down to 104,805.

Two pages came out the same height or a hair taller, and that is the honest trade. Stars We Grew Up On went 3.4 screens to 3.5; Start Here did not move. Their descriptions were already short, so the tagline and the disclosure control cost about what the summary saves. They were included anyway, for consistency of the object rather than for a saving that was never there to make.

Twenty-three cards would have had a disclosure that said nothing new, and the answer was to write one. Rather than reuse the summary, each was rewritten from its own page: the eight house names in the elements guide and the eight in the worlds guide; the two sentences that are the whole qualification on Owed, Not Earned — be human, be harmless; the figure on The Same Water that plots the gradual decline people expect against the curve that holds and then drops; Clark's “not earned but owed” quoted from Stage 1 where the creed quotes it. Six Easter Eggs cards, which appear on no index section by design, needed a tagline written too. Re-measured after: the thinnest disclosure on any collection page now adds 29 words the card face does not have, against a floor of ten on the index.

And then the tagline collided with a line that was already there. Seven of the thirteen pages carry a .card-moment on 52 cards — a short monospace line naming the moment you would reach for the piece — and it had been doing the tagline's job since before there was a tagline. Deriving both from the same page produced eleven collisions, six of them word-for-word identical: the elements guide would have shipped with the periodic table read as autobiography printed twice, one line under the other. Found by measuring word-set overlap between the two elements rather than by reading the cards, which is the only reason it was found at all — six identical sentences are exactly what an eye slides over on a page of ninety. Nine were rewritten to say something the moment does not, which is why those nine now differ from their own index taglines: the index has no .card-moment, so nothing collides there and its lines stay as they were.

Fact-checkA working-notes count that was stale by one, found by refusing to quote our own notes back at ourselves

Writing a tagline for Field Guide No. 13 meant checking whether the line “there is no standard way to be interested in an animal” is actually on the page. It is — in the colophon. But re-deriving the surrounding count found CLAUDE.md calling it “a tenth” when the documented grep returns ten guides inside the collection and the egg sits outside it. The egg's is the eleventh. The figure was correct when written and went stale the day A Field Guide to Eggs shipped and made the collection's own count ten — the exact rot the section it lives in was written to warn about, in the sentence doing the warning. Corrected.

SiteThe restructure made the front page 87% unfindable, and the builder's own per-page line said 14 records without complaint

index.html went from 111 search records to 14 the first time the index was rebuilt after the split. The generic chunker matches a page's repeating unit, and for the front page that was .card — but the card's real prose had just moved into the sibling disclosure, outside the element being chunked. The run printed its tidy per-page line and carried on; only the fewer records than committed check, added after an earlier truncation, made a noise at all. That check is the reason this was caught in the same minute rather than in a month.

The chunker now matches .card-wrap ahead of .card, and the existing ancestor-wins rule does the rest: one record per card, covering tagline, summary and full description together, which is the granularity the front page had before. Back to 111 records at 100% coverage. The general lesson is the one this site keeps relearning at a different address: a structural change to markup is a change to the index, and the index will not say so in a way that looks like an error.

NewThe Stone You Keep — Zine No. 58, in More Than Human

A guest zine developed after Helen Edgar's essay on the otter cam that has been running in the background of Solidarity Sesh every Saturday for months. Helen's reading is the reason the piece exists: the kept stone as a stim tool, solo play drifting into a minute of shared play and back, cave and watering hole at your own pace, bodily autonomy without apology. Nobody has to watch it. That is the part that makes it work.

Then past the essay to the papers, and the papers turned out to be making a stronger argument than the anecdote. Tinker, Bentall & Estes (PNAS, 2008) followed one sea otter population closely enough to tell individuals apart: where food was scarce it did not converge on one best way to be an otter but fanned out into distinct specialists — snails, clams, urchins, crabs — each carrying a matched suite of diving behaviours, and each measurably better at its own prey than a generalist would have been. The averaged otter forages nowhere.

The finding that earned the zine its central spread is Law et al. (Science, 2024), across 196 radio-tagged otters. Tool use varies enormously between individuals, and the otters who never use a stone are not the ones who haven't worked it out — they specialise on prey a stone would not help with. Meanwhile the tool users showed less tooth damage, because cracking hard shells with your teeth costs you your teeth. So the accommodation is not a discount on the task and not a crutch: it is the difference between reaching old age with your teeth and without. The support is legible in the skeleton.

Around that: Hall & Schaller (Journal of Mammalogy, 1964) counted 35.5 blows to open a mussel, range 6 to 88 — so the range is the finding and the mean describes no mussel anyone ever opened. Wright et al. (Science, 2021) on the furnace under the calm: no blubber, the densest coat measured on any mammal and varying roughly sixfold across one animal's own body, and a resting metabolism about three times what its size predicts, from heat leaking out of its skeletal muscle since birth. Estes & Palmisano (Science, 1974) on the keystone loop — the otter anchors in kelp to rest, and the kelp is there because the otter is, so it is held by the thing its presence sustains. And the fur trade, which took about 99% of them by 1911: they were not hunted for being deficient, they were hunted for being remarkable. Ten spreads, eight diagrams, a “Not:” refusals set that declines cute, inspiring, superpower, rest-so-you-can-produce, and be-a-keystone.

Fact-checkThe otter's lifelong favourite rock, kept under the left arm, is a popular retelling — the primary source describes something smaller and better

Every aggregator says the same thing, in almost the same words: a sea otter keeps one favourite rock for years, sometimes for life, in a pouch of skin under its left forearm. It is a lovely claim and we could not source it. What Hall & Schaller actually recorded at Point Lobos in 1964, over six days and thirty instances, is that the same stone was frequently retained across successive food items — a stone kept through a meal, not through a life, and with no side named. The pouches are real and the reuse is real; the lifelong romance is not established.

So the zine states only the sourced version, and nothing was corrected anywhere else — the claim appears in Helen's essay and in our own Infodumplings post in the popular form, and Helen's argument does not depend on the embellishment: a reliable object returned to is exactly what the primary observation shows. The trap is logged in FACTCHECK.md so it cannot drift back in on the next otter piece. Recorded here rather than quietly fixed because the aggregators all agreeing is precisely the condition under which this site is supposed to go and read the paper.

Two more smoothed versions were declined on the page. Otters sleeping hand-in-hand as an expression of affection is a story told about them; rafting and kelp-anchored rest are documented, so the zine uses the kelp, which is both true and the better image — being held by the forest you live in. And the count of otter species is given as neither 13 nor 14, because the IUCN Otter Specialist Group and the other standard sources do not agree, and nothing in the argument needs the number.

Fact-checkHelen Edgar caught a phrase in The Stone You Keep that broke the zine's own last refusal — and the fix closes a gap in the house refusals set

The first refusal read: “an animal you find adorable is an animal you have stopped taking evidence from.” Helen said the evidence from didn't sit right. She was correct, and it was a contradiction rather than a matter of taste. You take evidence about an animal; you take testimony from a person. Written that way, the sentence put the otter on the stand as a witness for us — which is exactly what the same refusals set forbids four entries later, in not an animal metaphor for people. A borrowed courtroom register did the damage, and it took a reader who works in the language of testimony to hear it.

Two further faults in one sentence, once it was looked at properly. It located the failure in the animal — as though adorableness were a disqualifying property an otter has, rather than a response in us that can stop us looking any further. And it half-contradicted its own opening clause: the refusal grants the charm (“they are charming and we will not pretend otherwise”) and then treats charm as the end of the evidence, which would mean the zine had to stop finding them charming to take them seriously. It never meant that. It now reads that charm is the easiest place to stop looking, and everything here is on the other side of it — the failure sitting with the looker, where it belongs, and the journals still named.

Helen also supplied the refusal the set was missing, and it is the more important half of the change. The house convention names the superpower and inspiration framings as a pair, and this zine had turned down the superpower and left inspiration standing — on a piece whose opening spread is about being watched. So Not: Inspiring is now the second entry, in her structure: a person you find inspiring is a person you are watching instead of listening to, and the word tends to arrive just as the listening stops. Her closing line is kept verbatim: Nothing here is here to make you feel good about watching us cope. And the distinction that repairs the original phrase is now stated on the page rather than merely avoided — the otters are evidence; we are testimony; neither is decoration.

2026 · August 17

The average colour of starlight turns out to be a published erratum, which is the argument for the open repository — plus the first plain statement of how this site is actually made, a stale count in our own stylesheet found by the essay about not trusting our own notes, a chain in which the most important discovery in modern cosmology arrives as noise two engineers spent ten months trying to get rid of, and seven collection pages that had quietly stopped counting themselves — plus a borrowed word we credit as unowned, and an eggshell that hands over four fifths of its calcium to the skeleton of the animal it contains without ever measurably thinning, a catalogue in which the egg you are picturing turns out to be one band out of five, and a link that for a day went somewhere other than its own label promised, and eight thousand characters of prose no search could reach, hidden behind a coverage figure of ninety-three per cent

Two additions: one to Foundations, the piece that says out loud what the other seven presuppose about process; and the ninth chain in How We Got Here, which turns out to be about the same thing from the other end — what it costs to keep insisting a reading is instrument error. Today also closes a gap we had left open for a month: until today no page on this site stated that generative AI facilitates the work here, which is a poor showing for a project whose argument is that the working should be visible.

SiteThe curatorial argument on thirteen collection pages was unsearchable, and the instrument called those pages the healthiest on the site

A collection page is a note that argues why these pieces belong together — that is the whole reason it exists rather than being a folder. On Star Stuff, that argument was not in the search index. Search for “tidal force really does fall off with the cube of distance” and you got nothing; the page's twenty-three cards were indexed and the prose around them was not. Ryan found it by checking what the index actually held for that page rather than trusting the figure the builder printed beside it. The figure said 93%.

The cause is the same mistake the coverage floor was built to prevent, wearing a higher number. The index builder chunks a page on its repeating unit — here the card grid — and then, for anything no chunk claimed, appends a remainder record. That remainder was gated on coverage falling below 90%. But a percentage is a ratio, and what the remainder protects is an absolute quantity of prose: the larger a page's repeating unit grows, the more text the same percentage conceals. So the gate leaked worst on the pages that scored best, and it leaked as a cliff rather than a slope — collection-star-stuff.html at 93% (2,532 characters), index.html at 97% (4,484), changelog.html at 100% (1,422). 8,438 characters unfindable on the three highest-scoring pages on the site, and on the front page what went missing was every section intro — the paragraphs that say what each collection is for.

Star Stuff is the tell, and it is the part worth keeping. Its twelve sibling collection pages sit between 20% and 84%, so they fall through the heading segmenter and their intros were indexed all along. Star Stuff crossed 90% only by growing to twenty-three cards, the largest grid here. The page was penalised for succeeding — and Kin at 84% and Star Gazing at 79% were queued up to lose theirs next, silently, on the day they gained a member. The remainder is now unconditional, which costs nothing it was ever protecting: that path can only append text no record claimed, so it could never double-index anything, and the 40-character minimum is the right filter because it measures the prose instead of the ratio. Where the leftover text has headings it is now segmented onto them rather than pushed as one lump, so the front page's thirteen section intros land on #collections and #field-guides instead of dumping a reader at the top; the creed, whose stray text is an opening and a close around a single heading, keeps the single record it already had.

Then the half that was our markup, not the tool. Twelve of the thirteen collection pages had section headings with no ids — against the house rule that a heading gets one — so even the sections that were indexed could only be linked by text-fragment guess. Easter Eggs was the one page that had done it properly, and its pattern (an id plus scroll-margin-top) is now on all thirteen. Forty-six ids added, chosen to read as phrases rather than truncated mid-sentence, because a fragment is a URL somebody can hand to somebody else. The index went from 1,315 records to 1,334; all six gates pass, and the six of them still cannot see any of this. A collision is not a colour, and an unindexed paragraph is neither. The one instrument that could have caught it was printing 93% in a column of numbers where 100% was ordinary.

NewA Field Guide to Eggs — Field Guide No. 16, in Field Guides

The companion to No. 57, and built to not repeat it. That zine asks what a shell does; this asks the prior question — what counts as an egg — and the answer is much wider than one hen could carry. Fifteen beginnings, sorted by how far the egg gets from the body, and the finding falls out of the sort: the egg you are picturing occupies one band out of five.

The sort is ours and it arrived after the entries, which the page says on its own face along with the two sorts that failed first. Sorting by what the shell is made of collapsed immediately, because a hen's egg and a common murre's are the same object by every material measure — and the interesting thing about the murre is a wrong explanation of its shape. Sorting by who pays for the embryo put several animals in two gates at once. What varies cleanly is distance: eggs that never leave, eggs grown over by skin, eggs carried, eggs set down and guarded, eggs left.

The entry that matters most corrects a textbook rather than an animal, which makes it about us. A common murre lays one sharply pointed egg on bare rock with no nest. Book after book explains the shape by saying it rolls in a tight arc rather than off the ledge. There is no good evidence for it. Ingold found little support in 1980, and Birkhead's objection is embarrassingly simple: the rolling arc is much wider than the ledge the egg is sitting on. A tighter circle than a sphere's is no help when the circle is still bigger than the available rock. What replaces it is less quotable and better supported — the shape is more stable on a slope, so it is less likely to start moving at all — and the famous version survived for decades because it was tidy, visual, and nobody checked.

The rest of the catalogue keeps undoing the default picture. Live birth is filed as the mammalian way of doing things; it has evolved at least 115 separate times in lizards and snakes alone, against roughly 140 origins in all vertebrates, and about a fifth of squamate species lay no egg at all. Whether the transition ever runs backwards is genuinely contested, so the card prints the count and leaves the direction open. Syngnathid fishes are the only vertebrates with male pregnancy, and it is literal rather than a figure of speech: a placenta-like pouch, embryos joined to the father's circulation, immune suppression to tolerate them, and a measured patrotrophy index of 1 answering whether he actually feeds them. A Surinam toad's eggs are pressed into her back and her own skin grows over each one and builds it a lid; there is no tadpole stage, and the toadlets push the lids off months later. Giant water bug eggs are cemented to the male's back, and the carrying is plumbing rather than devotion — unattended eggs die every time, in air or under water. A monotreme egg is leathery and porous enough to be fed through its own shell, with ten days of egg followed by four to seven months of milk, which quietly dismantles “the mammal that lays eggs instead of feeding milk.” And a deep-sea octopus in Monterey Canyon was revisited eighteen times over fifty-three months, guarding one clutch, never once seen to feed.

Then the section that argues walking away is not the failure state. A megapode chick hatches under 40 to 150 cm of compost with no parent anywhere, digs itself out unaided in a median forty hours, and in some species can fly the same day — the most self-sufficient newborn in the class. A brine shrimp cyst waits up to eighteen dry years through freezing, desiccation and anoxia and then resumes exactly where it stopped. Absence of care is not absence of provision. And a cuckoo's shell has a second job no other egg here has: it must survive being looked at, which means matching not our eyes but the host's retinal function — though the arms-race framing behind that is now under live challenge, and the page flags the challenge rather than leaning on it, because the paper making it is an unreviewed preprint.

The sixteenth card is dashed and carries no reframe table, which is the fifth distinct reason this site has withheld the apparatus. Every table above corrects a mistaken verdict about an animal — a shape misexplained, a father mistaken for an infestation, a buried clutch mistaken for neglect. Nobody has reached a mistaken verdict about the morning somebody's own life rearranged itself behind them, so there is nothing to correct and a column headed actually would be an insult wearing the costume of rigour. The borrowed word is credited as unowned exactly as in No. 57. And one thing the biology does supply is a limit rather than a licence: across birds, squamates, turtles, crocodilians and even the echidna, the tool that opens an egg is on the inside of the shell. You cannot do it for anyone. You can only be audible.

Fact-checkA link that went somewhere other than its own label said — and a count we settled yesterday that was still wrong

Two faults found while wiring the new guide in, both invisible to all six gates, and both pre-existing.

First, a broken promise in the navigation. Sound's previous link pointed at A Field Guide to Nests while its label read “The Ways of Being Alone” — so a reader clicking it arrived somewhere the label had not promised. It was introduced when Field Guide No. 15 was inserted into the reading chain on 16 August, and nothing could see it: the chain check compares hrefs in both directions and never reads the labels, and check-markup.mjs validates the collection badge label but not prev/next ones. Fixed. Then, rather than assume it was the only one, every prev/next label on the site was audited against its target. A first pass flagged 21 pages — and all 21 were fine, being house abbreviations like Wyrd & Weird and Garden & Stars, or plain entity-encoding differences. That is the false-positive rate that makes a gate unreadable, so the test was narrowed to the real question — does this label name a different page? — which returned two hits, both false positives where “LYDTYSS” correctly abbreviates Love You Down To Your Star Stuff. So: one real fault, now fixed, and no others.

Second, and more uncomfortable: a count corrected yesterday was still wrong today. Yesterday's entry recorded the Field Guides companion figure moving to six and eight, because the category had been too narrow — it counted only guides carrying a companion to No. N marker, and two guides named their companion zine in their own colophons instead. Re-deriving it today by grepping colophons rather than trusting markers turned up a survivor: My Monotropic Galaxy names two companion zinesThe Cloud Phase (No. 45) and Companion Stars (No. 46) — and carried no marker at all. So the honest figures were seven and seven before this guide, not six and eight. Its marker is added, and the figure is now eight and seven. The lesson is narrower and worse than “markers rot.” The fix for a marker-derived count was applied to the two pages that prompted it and never swept across the rest, so the corrected count inherited the original defect and shipped with a fresher date on it. When a category turns out to be drawn too narrow, re-derive the whole set; patching the noticed instances reproduces the bug. That is now written into CLAUDE.md beside the figure.

The rest of the counting was done by derivation rather than addition, per the one section of the working notes with a measured failure rate: fifteen guides, 182 cards, 174 entries — and the collection page had been printing its stale totals in eight separate places, exactly as that section warns.

NewThe Shell Was Your Calcium — Zine No. 57, in Star Stuff

The word is not ours and the zine says so on its third spread. Egg, and getting your egg cracked — the moment somebody knows and accepts who they are — is trans community language, and the therapist Essy Knopf extended it to Autistic and ADHD experience in March 2025, crediting the trans origin himself, which plenty of retellings do not. Nobody coined it. Evelyn Bauer went looking for Them and found the earliest documented use is an Urban Dictionary entry for egg mode from 23 August 2016, r/egg_irl from July 2017, and Susan Stryker unable to date her own first encounter with it. So we print the origin as unknown rather than promoting the most citable name into a coiner — the failure Too Good to Check catalogues, and the one we made twice last week. A word this good with no owner is not a gap in the record. It is what community language looks like from the inside.

Ryan proposed the piece and said plainly that he was not sure there was a star stuff angle on eggs. There is, and it is the calcium. The argument is not with Knopf, whose account of the relief and the grief and the anger is right. It is with what repetition does to the metaphor afterwards, flattening it into a door: one threshold, crossed once, a settled person on the far side. So we went and looked at some eggs, and the incubator disagrees with the door in four ways, each of them kinder than the tidy version.

First: the shell does not get thinner. From about day eleven the chorioallantoic membrane presses against the inside of the shell and starts dissolving it. Halgrain and colleagues measured what that does, and the result reads like a contradiction until you sit with it — thickness between day 0 and day 15, no significant difference (p = 0.110); breaking strength between day 11 and day 15, significantly reduced (p = 0.007). The wall is being taken apart from inside and it is not getting visibly thinner while it happens. Measure it and nothing is going on. Weigh what it can bear and everything is. Every one of us who got a late answer has had the same conversation — but you seemed fine, nobody noticed anything — and there was nothing to notice, because holding it together is the thing that was happening. Nobody could see it. There was nothing to see.

Second, and this is the title: where the calcium went. The eggshell supplies more than eighty per cent of all the calcium a chick embryo gets, roughly 2.2 grams, and at hatching the skeleton holds about three quarters of the calcium in the whole animal. The container becomes the frame — not metaphorically, by mass — and there is no moment where the shell is discarded and the skeleton begins. They are the same calcium at two addresses. That calcium was assembled in a star that is no longer there, and then it becomes bone, and bone does the thing this site is named for: load it and it answers in current, which is Iwao Yasuda's finding from the 1950s. The wall you broke is now the part of you that turns pressure into signal. You did not escape the shell. You stood up in it.

Third, the messy middle is a documented respiratory stage. At internal pipping the beak goes through the inner membrane into the air cell and the lungs start working — a staged handover Margaret Vince traced in three parts — and all of it happens before the shell is broken. Set that egg in front of an observer and it is an egg. Whole, unmarked, apparently nothing happening. Inside is an animal already breathing air that has not broken anything yet. Not hesitation, not failing to commit, not a bit Autistic. A stage with a name, which everything that hatches goes through. We deliberately do not print a duration: husbandry sources widely say twelve to twenty-four hours and it may well be right, but every route to a primary was paywalled, so the page says hours and the colophon says why.

Fourth, and the finding we would least have predicted. Quail embryos click in their last days, and the clicking is a signal the neighbours act on: an egg set in a clutch a full day behind will speed itself up and hatch with the others. Then Vince went looking for the other direction and found it — a slower click rate, around 0.9 clicks per second, retards embryos that are ahead. Synchronisation is not stragglers being dragged up to standard. It runs both ways. The ones ahead slow down and wait. Which is a fair description of how most people's egg actually cracks: almost nobody works it out alone in a room. You were not given information. You were given a rate.

And the close refuses the arrival. Mair and colleagues read 225 posts about late identification and did not find a door; they found an oscillating Grief, Relief, and Belief Cycle, whose four themes are the life I could have had, grief for a younger self, gratitude — and post-diagnosis burnout, which is the theme the popular version drops. A cycle means it comes round again, and that is not you failing at having hatched. Their own recommendation is that identification be treated as “a first step, rather than a terminal component of a service.” The cycle is not a private weather system; it is a care gap with a citation. Then the last thing about hatching: the egg tooth that scores the shell from inside drops off within days, and the neck muscle that drove it shrinks. The one who did the cracking was built for the cracking — and is allowed to be put down.

Five refusals on the zine's face. Not cracking somebody else's egg, which is where the borrowing pays its debt: Bauer's warning is that naming somebody an egg, especially to their face, can push them further in, and the biology agrees without being asked — the egg tooth is on the inside of the shell, so nobody pips from outside. You can only click. Not the person before was fake, because the shell was your calcium. Not a graduation. Not permission from nature, since chick embryos have no identities and down to is not because of. And the one that costs something: not the egg as the enemy — masking cost us enormously and also got some of us here alive, and you are allowed to be angry about a thing that worked. Ten spreads, four diagrams. Three of the four diagrams were wrong in ways no gate could see and were caught by eye at render size: two drew a skeleton that read as a fern, one pointed its airflow arrow backwards, and the cover was quietly duplicating the door mark at the foot of every page. A rhyme, not a proof.

NewThe Noise Floor — Zine No. 56, in How We Got Here

In July 1928, one volume of Physical Review printed the measurement and its explanation on facing pages: J. B. Johnson at 97–109, H. Nyquist at 110–113, whose first footnote is three words long — “See preceding paper.” Every conductor above absolute zero hisses. Nyquist's conclusion, quoted on the page as he wrote it, is that the effect is “a universal function of frequency, resistance and temperature and of these variables only” — not the metal, not the workmanship, since “one may be made of silver and the other of lead.” And the famous kTB is in the primary rather than a modern gloss on it: “The average power … in the frequency interval dν … is therefore kTdν.”

The reason it cannot be engineered away is the part that usually goes missing. Nyquist did not measure the floor, he deduced it — from the second law of thermodynamics. Two resistors at the same temperature must pass equal power in both directions in every band, or you could put a resonant circuit between them and move heat between bodies of equal temperature for free. So the hiss is not permitted; it is required. A silent resistor would be a perpetual-motion machine — which is the same law that says you cannot un-stir the milk from the tea, and nobody files that under insufficient effort. Shannon's Theorem 17 then turns the floor into a limit on meaning, quoted verbatim, with the sentence that closes the door: “It is not possible to transmit at a higher rate by any encoding system without a definite positive frequency of errors.” You cannot filter your way to clarity. The page prints Shannon's own C = W log (P+N)/N and names the familiar B log₂(1 + S/N) as the same statement rearranged, rather than quietly swapping the textbook version for the one he wrote.

And the story everyone tells is corrected against its primary, which is the best thing in the zine. Penzias and Wilson had the quietest receiver on Earth — a maser and a reference load both sitting in liquid helium at 4.2 K, a floor lowered on purpose so that a remainder would mean something. The retelling makes the pigeons the punchline. Wilson's Nobel lecture says: “We evicted the pigeons and cleaned up their mess, but obtained only a small reduction in antenna temperature.” The clause that gets cut is the one that matters. Two further repairs from reading it: the phrase “white dielectric material” is not in the lecture (Wilson wrote “a white material familiar to all city dwellers”), and the pigeons are not in the 1965 paper at all — they arrive thirteen years later. What did survive every test was “isotropic, unpolarized, and free from seasonal variations (July, 1964-April, 1965)” — and that parenthesis, not a secondary account, is where “ten months” comes from. Every property that made the noise impossible to remove is a property that made it the universe.

The rung we expected to be a stretch turned out to be documented, and it changed the chain's shape. We went to check whether treating a room as a channel was our metaphor. It is not ours: the Acoustical Society's own guidance for architects specifies an “average differential between speech level and background level (called signal to noise ratio) of about 15 dB, which means the A-weighted background noise level should not exceed about 35 dB” — and instructs designers to lower the floor rather than amplify the teacher. Wilkins and colleagues more than halved headaches by removing 100 Hz fluorescent flicker, with the author's own caveat carried onto the page: the harm fell on “a minority that is particularly affected.” Kim and de Dear found sound privacy the largest source of dissatisfaction anywhere in a building — 59% in high-partitioned cubicles against 18% in private offices — and found open plan bought no more ease of interaction than a private office did.

Two sources arrived mid-build, out of the Stimpunks Knowledge System inbox, and one of them changed the argument rather than decorating it. María del Carmen Rosas-Pérez's 2026 Heriot-Watt thesis Disabling Acoustics put the zine's central question to actual people: across 311 noise-sensitive respondents, no Autistic participant said filtering out background sound was easy — 96% could not or struggled, against 77% of the neurotypical respondents, and the page prints the caveat in the same breath, since everyone surveyed was already noise-sensitive. But the finding that mattered is the one that breaks our analogy: “No habituation, but accumulation effect.” Thermal noise is stationary — kTB is the same in the tenth hour as the first — while the measured human pattern is fatigue and distress that build. A resistor never gets tired of being warm. So spread 12 now says the resemblance fails there, and says it is the more useful half. A marked analogy that names its own failure mode is doing the work the notation exists for.

The thesis also supplied a better opening than the one we had written. Spread 13 had begun with objections we invented; it now begins with what her interviewees were actually told — a pattern her analysis names sensory gaslighting — and with Participant 10's sentence: “Well, it doesn't bother me and I can't see it, so it doesn't exist and I don't need to do anything about it.” And “you'll get used to it” turns out to have an evidence base worth naming: the exposure hypothesis behind it rests on five participants, none of them noise-sensitive, listening to two pure tones for two weeks — which is this collection's own subject arriving in its endpoint, careful measurement generalised far past what it carries and handed back as a character note. Both that study and the phrase “sonic torture” are cited through her thesis and marked as unread at source. The second source, Srinivasan's TRACE reporting framework, earns one paragraph on a parallel the chain had already set up without noticing: Penzias and Wilson's paper is largely a published noise budget, and reporting the conditions a measurement was made under is unremarkable in radio astronomy — while physical-health research involving Autistic adults is still being asked to start.

Then the chain spends its last two joints refusing to overclaim, in the body text rather than in a footnote. Auditory filtering is not thermal noise; there is no k for a nervous system; anyone saying the physics proves something about Autistic hearing is selling the naturalistic fallacy with a formula attached. That joint is marked contested, carried by Remington and Fairnie's finding of increased auditory capacity — one mechanism producing both the distress and the ability, which is neither a deficit nor a superpower account. The closing analogy is marked leap: nobody asks a receiver to be quieter than kTB, they cool it, shield it and narrow the band — but physics entails nothing about who deserves a quiet room. That is a moral claim and it stands on its own feet. What the physics does is narrower and still worth having: it removes an excuse. Fifteen spreads, ten documented joints, one contested, one leap, a spine the page labels schematic rather than letting it pass for a plot, and a closing coda pointing at the sensory-access practice Stimpunks and Autism Wellbeing have already written down.

NewStarlight — an essay, in Foundations

Ryan's premise, and it holds all the way down. Average the light of two hundred thousand galaxies and you get a warm off-white that somebody named cosmic latte — and the first published answer was pale turquoise. The colour was never the point of the paper; it was footnote 3 to a study of cosmic star-formation history, and you can still read the retracted value on the preprint: “RGB values of 0.269, 0.388, 0.342… the closest match… is ‘pale turquoise’.”

The error was in the arithmetic that turns a spectrum into a colour. The software had been handed the wrong white point — and a white point is not a property of the light, it is a property of where you are standing and what your eye has adapted to. The galaxies did not move. The observer did. Colour scientists spotted it when the news reached them, and within weeks the team published the correction themselves: “It's our fault for not taking the color science seriously enough. I'm very embarrassed,” and “I don't like being wrong, but once I found out I was, I knew I had to get the word out.” NASA's APOD describes the corrected value with a care worth stealing — “a conditionally perceived shade of beige.” The most-shared fact about the colour of the universe is an erratum, and the correction is the only reason the number is usable. The page is painted in #FFF8E7 and marks it as a rung in the same breath: one sRGB rendering of a colour that exists only relative to an observer.

Then the machinery, in detail, because that is what was missing. What is public here stated in nouns — the repository, the ledger, the errors, the reasoning, the tools, the index — and the one thing deliberately kept private: your search query, which never leaves your browser. Then the six gates, each with the fault that created it: 44 of 46 pages printing blank, four links nested inside a link, three text collisions every other gate passed, a live zine never listed in the sitemap, a page indexed at 12% that passed its own check. Then the rules those failures produced — measure, don't count; wait on a condition, never a clock (629 records where the builds either side gave 637, exit code 0, no warning); a page nobody looked at reads UNREAD, never ok; a comment is a note, not a control.

And the division of labour, stated without flattery in either direction: machines hold ground, people take it. Look at the six gates and notice what the list actually is — six faults a person found first. Not one gate anticipated the fault that created it. What a gate buys is that the noticing never has to happen twice. Which lands where A Promise, Not a Finding already had it: Second Thoughts can be built, First Sight cannot.

Brandeis is quoted with both the parts that go missing restored — the second clause (“electric light the most efficient policeman”) and his own hedge, “is said to be.” The most quoted sentence in the literature of transparency is marked by its author as a borrowed proverb, and a century of quoting filed the marking off. Papert and Harel supply the reason a learning foundation builds in the open rather than publishing when finished: constructionism works “especially felicitously… where the learner is consciously engaged in constructing a public entity, whether it's a sand castle on the beach or a theory of the universe.”

SiteHow generative AI is used here — stated, for the first time

Star Stuff is, among other things, an experiment in whether generative AI can serve accessibility, accuracy and transparency rather than cost them. That has been true since July and was nowhere on the site. It is now, in nouns, on both sides: what it does (drafting, the gates, the index, the sitemap, the ledger, source legwork, repo-wide sweeps) and what it is never allowed to do — decide what is worth making, stand as a citation, or be the last check on a quotation.

The reason the rules are shaped that way is worth being blunt about. One collection here exists to separate science from three things that wear its clothes, the third being the smoothed popular retelling — the tidy version with the hedges filed off, because the tidy version travels further. A language model is structurally a machine for producing exactly that. Which is a strange thing to build a fact-checked site with, and the answer is not to trust it more carefully; it is to make everything it produces answerable to a primary source, a gate that measures, and a person who reads the paper. The smoothing is why the machinery had to be built at all. One standing rule exists specifically because of the machine: your own summary is an aggregator.

Fact-checkOur own stylesheet was carrying a number the changelog contradicts — found, flagged

Fitting, for an essay whose subject is that working notes are a lead and not a fact. Re-checking this site's own history against the public record rather than restating it from memory turned up a disagreement inside the repository: the comment in starstuff.css's print block records the gradient-clipped-text fault as “196 elements across 40 pages,” where the entry of 12 August says ninety elements across forty-five pages and gives 196 as the length of the unmeasured list the tool was printing. Two different numbers conflated in a comment. The essay follows the changelog; the comment is queued for repair.

A draft sentence was also cut before it shipped. It said the front page “printed untitled for a month.” The record supports the fault — the ★ stuff wordmark printed blank — but not the duration, and nobody had measured it. Two open items are on the page's face rather than buried in the ledger: the Johns Hopkins correction announcement has only been read in reproduction, because the astronomers' own page is gone from the web; and neither the colour scientist who spotted the white-point error nor the person who suggested the name cosmic latte is named here, since both appear only in secondary reporting.

Fact-checkTwo dozen counts across seven collection pages had drifted — including one that named the wrong zine

Caught by Ryan Boren, who noticed that How We Got Here was still saying “eleven collections” when there are thirteen. Pulling that thread found the same drift on six more pages, and the reason is worth stating plainly: no gate can read a number written out in prose. The six checks measure colour, markup, paper, sitemap, collisions and search coverage; none of them can tell that a sentence claiming thirteen guides sits above fourteen cards. So these rot silently, and the only control is to re-derive them by counting the actual pages, cards and tags — which is how every figure below was fixed.

The worst of them was not stale, it was wrong from the day it shipped. How We Got Here carried a paragraph beginning “No. 45 is the most lopsided chain here.” No. 45 is The Cloud Phase, which is in Star Stuff and is not a chain at all; the paragraph describes No. 50, and the commit that added it says so in its own message. The superlative was overstated too — No. 50 runs eleven documented joints of thirteen, which No. 40 matches exactly — so it now reads level with No. 40. A second paragraph restating the same chain's figures has been folded away, and the claim that it and No. 52 were “the two most recent chains” is gone, since No. 56 has been the most recent since yesterday. The collection's headline tally — 84 documented, 21 contested, 8 leaps across nine chains — was re-counted from the pages and is correct as printed.

The rest, in full. How We Got Here: eleven collections → thirteen, and seven chains attracted so far → nine. Field Guides: thirteen guides, 146 entriesfourteen guides, 159 entries; 152 cards166, and the framing widened, because it is no longer only the five turtles people made that sit outside the entry count — the octopus settlements and the rooms people build do too; six guides arriving at the same sentence → nine; four of the thirteensix of the fourteen are companion catalogues, and the other seventhe other eight stand alone. Star Stuff: 15 pieces22, and the claim that the first ten zines are “most of this collection” is retired — seven of them are here and fifteen pieces were made later. Kin: 5 pieces6, and the other fourthe other five are about relatives, with No. 36's pilot whale added to the opening list it had been missing from. Start Here: forty-five zines and twelve field guidesfifty-six and fourteen, and the reading chain “runs seventy pages”one hundred, measured by walking the prev/next links. And the front page's Field Guides blurb went from eight to nine with the collection page it introduces.

One correction is to a number we had printed twice and never re-derived. Sound said “121 cards… counted by distinct title it is 117.” The card count is right. The song count was not: when the Bowie rack arrived, 31 was added to both totals, but five of those songs were already in the L★S rackSpace Oddity, Starman, Ziggy Stardust, ★ (Blackstar) and Lazarus — and Changes was already in the punk rack. Counted properly, by the same rule the earlier ninety cards / eighty-six songs figure used, it is 111. Field Guides was quoting the old ninety-and-eighty-six at second hand, so that sentence now carries the corrected pair.

And a number written once shows up in five places. Field Guides was printing thirteen guides, 146 entries in its meta description, its Open Graph and Twitter cards, its JSON-LD, and its colophon line as well as in the body — so a search result and a link unfurl were both quoting a count the page itself had outgrown. All of them now agree with the cards. That is the shape of the whole problem: a count is not one fact in one place, it is the same fact copied into every slot that has to say it.

The working notes were carrying the same drift, which is the second time this week they have been the source of an error rather than a guard against one. CLAUDE.md — the repository's own guidance file, not a page on this site — listed Star Stuff at fifteen members, Field Guides at "twelve guides, 134 entries", the reading chain at ninety-four pages, and three numbered pieces outside the register collections where there are six. All of it is now re-derived, and the file has a new section saying plainly that every count in it is a lead and not a fact, with the command to re-derive each one and a note on which figures are historical and must be left alone. That is the same standing rule this site applies to aggregators, turned on our own notes — which is where the masthead error came from, and the stylesheet comment two entries above.

One of these was not a stale count but an under-count, and the fix was a ruling rather than arithmetic. Field Guides recognised four companion catalogues because four cards carry a companion to No. N line. But Nests and The Ways of Being Alone both name their companion zine in their own colophons and neither had the marker, so the category was quietly narrower than the site itself. Ryan's call: count them. Six of fourteen, the two cards now carry the same marker as the other four, and the page says what the addition costs — the first four were built when a zine overflowed and its spare cases needed a home, while Nests runs the other way and hands the weaver back to No. 55 rather than re-arguing it. A companion can be the piece that knows when to stop. Worth recording because the count was derivable from the cards, and the cards were incomplete: a category read off markers is only as honest as the markers.

2026 · August 16

Five love locutions set beside the five mechanisms that actually assemble matter, an attribution chain we had been getting wrong on our own most-read page, a lone wolf that was never an outcast, seven weavers who proved the textbook instinct was never a template, and a catalogue of nests in which most of the nests are not built

Two additions, and a correction to the provenance of the framework the first is built on — caught mid-build by Ryan Boren, and worth publishing because every route we followed led back to us. Both new pieces come from Stimpunks pages: the zine from The Five Neurodivergent Love Locutions, the most-read page Stimpunks has ever published, and the field guide from Betsy Selvam's Lone Wolfing: The Joys of Autistic Solitude. They are opposite halves of one argument — how we reach each other, and how we get away from each other — and neither is the healthy one.

NewA Field Guide to Nests — Field Guide No. 15, in Field Guides

The companion to No. 55, and built to not be a second helping of it. The zine asks how a nest gets built. This asks what counts as one, and the catalogue turns out to disagree with the word: most nests are not built. They are borrowed from whoever left, inherited from whoever died, induced in somebody else's body, secreted out of your own, or they are simply two feet and a fold of skin.

The sort came out of the entries rather than ahead of them, and the guide says so on its face. We began meaning to sort by material — grass, mud, silk, spit — and the material sort kept failing, because a hermit crab supplies no material at all and a gall wasp supplies none either. What actually varies is who does the work. So the five sections run from the case the word assumes through four it does not.

Built: a ten-centimetre pufferfish making a two-metre geometric court on open sand, which divers photographed for years before anyone matched it to a builder two orders of magnitude smaller than the structure (Kawase, Okata & Ito, Scientific Reports, 2013) — and the pattern is not decoration, it sorts fine sand into the centre, which is the part the female inspects. Then the correction that reorganised the whole guide: a termite mound is uninhabited. That is the paper's own word. Fungus-farming termites build massive empty towers above their subterranean nests, and the daily swing of solar heating drives convection through the tunnels (Ocko, King, Andreen, Bardunias, Turner, Soar & Mahadevan, Journal of Experimental Biology, 2017). The most-photographed animal architecture on Earth is not shelter. It is closer to a lung.

Borrowed: a hermit crab contributes no material to any home it will ever have, and when one shell arrives the crabs queue beside it in descending size order so that the whole line rehouses at once — and Lewis and Rotjan confirmed the prediction that matters, that the benefits are distributed across many participants rather than captured by the first taker. The crab that waits is not being passive; it is standing in the only position from which the chain works. The largest bird nest recorded — 2.9 m wide, over two tonnes — was accumulated across decades until it was more than the tree could hold, which is inheritance and its cost in one object. Induced: a gall is oak tissue that the insect made the oak build, and the evidence it is the insect's design rather than the plant's reaction is that different wasp species induce different gall shapes on the same tree. And not building at all evolved independently at least seven separate times in birds (Sorenson & Payne, 2002). A thing discovered seven times over is not a mistake — the sentence the guide would most like a reader to carry.

Secreted, or worn: a swiftlet builds from nothing but its own hardened saliva, and the entry states plainly that this is why the species is farmed and harvested at scale, rather than leaving it as a footnote. An emperor penguin has no structure at all — an egg on two feet under a fold of skin, sheltered by a huddle whose walls are other penguins and which moves. If somewhere-to-be requires a structure, the emperor has nowhere and manifestly succeeds, so the definition gives: some of us have been housed by other people rather than by rooms, and it counted. And a trapdoor spider called Number 16 held one silk-lined burrow for 43 years. That entry deliberately moves its own headline. The fact that circulates is the spider's age; the finding is that Barbara York Main began following that population in 1974 and kept coming back for four decades, which is the only reason a whole spider life fits inside a study. A long quiet life in one small place is invisible unless somebody decides it is worth watching.

Not a nest: the bower — which every list of animal architecture files as the finest nest alive. No egg is ever laid in it and nothing lives there; the female builds the actual nest elsewhere, alone. It is a theatre with deliberate forced perspective, objects graded outward so they subtend a more even visual angle from where she stands (Endler, Endler & Doerr, Current Biology, 2010). We have spent a century calling a stage set a house, and the other twelve entries correct a reading of an animal where this one corrects the category itself.

And the fourteenth card gets no reframe table, which is a fourth distinct reason for withholding the apparatus — after No. 10 (a cosmology cannot take it), No. 12 (no verdict to correct) and No. 14 (a verdict that is a wish rather than a misreading). Here the subject is the reader's own room. Running sounds like / actually over it — even with the kind verdict — would make us the observer in the doorway with the clipboard, which is the exact figure No. 55 spends ten spreads indicting. You do not get to borrow a method to attack a thing and then use the method on the thing. And there is a harder reason: No. 55 is explicit that not every mess is a nest, since burnout collapses the architecture and from the doorway the ruins look identical — so a table would have to sort those two on sight, which nobody can do. The weaver appears in one card that hands off rather than re-running the zine, and the beaver is deliberately absent, already spent as the niche-construction case in Minor Worlds. The ninth guide to arrive independently at the same sentence: there is no standard nest.

NewWhat Looks Like Chaos — Zine No. 55, in Star Stuff

Grown from the Stimpunks glossary entry Nesting, and then taken past it into the literature that entry points toward but does not enter — which is where the argument turned out to be. Nest building is the textbook example of pure instinct. A bird constructs a thing it has never seen, without instruction, and gets it right the first time, so the nest must be something the bird contains rather than something it works out. That claim is falsifiable, because a template predicts exactly one thing: sameness — between individuals, and within one individual across attempts.

Somebody measured it. Southern Botswana, seven colour-ringed male Southern Masked weavers, territories searched daily so a nest was found at the moment it was started; camcorders square to the branch, three nests filmed per bird — twenty-one nests — and every frame coded by a researcher blind to which bird and which date. During the first phase of construction not one measured behaviour was repeatable within a male: not the direction he carried the grass, not how long he wove, not which quadrant he favoured, not how often he lost hold. Then the individuality. Two birds consistently pushed the first end of a blade into the right side of the nest, two consistently into the left, three had no side at all — and pooled across all seven and hundreds of insertions, the bias vanished (G = 0.06, p = 0.81). Personal handedness with no species handedness underneath it, which is precisely what a template cannot produce. And they improved: across a season each male dropped grass less often as he built more nests (p < 0.01), while the birds with the most consistent personal style finished the ring phase fastest (R² = 0.25). A way of one's own was not an eccentricity to be corrected — it was the thing that made him quick.

Thirteen years later, the harder finding. Forty-three white-browed sparrow weaver family groups build architecturally distinct roosts — some with long entrance tubes, some with barely any — and the differences hold across years, and hold between groups whose territories sit metres apart in the same trees. Then the eliminations, one at a time: not the weather, not body size, not tree height, not kinship. And the closer: the styles are robust to immigration. A bird arrives from a group that builds one way, and the structures keep coming out the other way. Not a template, and not the environment either. A tradition.

Set beside all of that is David Gray-Hammond's account of his own room — the diffuser, the several books read at once, the nothing-tidied-away because some days end in a crash rather than a decision — and his sentence about it: “To most, it appears that I live in a state of chaos, but in actual fact… I know where every item I need resides.” Nesting is his, and so is the phrase this zine borrows for spread 9 rather than for its title: an architecture of continuity. Lilipadding is not his alone, and a draft of this zine said it was — both pieces that set the practice out are co-authored by Tanya Adkin and Gray-Hammond, with Adkin's name first on each. Caught by Ryan Boren before it shipped, and corrected on the zine, the front page and this entry. We had assumed a sole author from a shared subject, which is the same shape as flattening a named writer into the organisation that published her — the error made yesterday, running the other way.

And then the same substitution a second time, in the same build. The credit block said caves, campfires and watering holes are Prakash Nair's. They are David Thornburg's, from Campfires in Cyberspace — Nair uses them in school design, and the finding the zine actually quotes, that new schools get built without cave space, is his. We credited the writer we happened to have a quotation from rather than the person who named the thing, because the quotation is what the glossary page carries. That is Too Good to Check's central failure and the third time this month it has been caught here — use of a term is not provenance. Caught by Ryan Boren, corrected on the zine, and Thornburg's paper read at primary in the fixing, which turned up something worth keeping: Thornburg names four spaces, not three. Campfires (information), watering holes (conversation), caves (concept) — and life (context), which the version in general circulation quietly drops. Spread 9 now says so. Which is also why rest alone does not fix burnout — if burnout is the collapse of an architecture, recovery means rebuilding the structure, not lying still inside the rubble.

The refusals are printed on the zine's face rather than left implied, and one of them costs something. Not permission from nature, because a universe that could approve could also decline — down to is not because of. Not instinct versus learning. Not a clever-animal story, since the authors themselves attribute the improvement to increasing dexterity and say outright that any role for cognition still needs demonstrating. And the honest one: not every mess is a nest. Gray-Hammond is explicit that burnout collapses the architecture, and from the doorway the ruins look exactly like the curated version. What the science does kill is narrower, and sturdier for being narrow — the inference that an order you cannot read is not an order. Two centuries of confident observers looked at a nest and saw a machine executing. They were describing the limits of watching, and calling it a fact about the bird.

One fault was caught by eye rather than by a gate, which is worth recording. The first draft of the spread-5 chart ran its “all seven pooled” label straight through one of the bars, and the overlap gate passed it — correctly, because it does not measure text over non-text and says so in its own documentation. A gate that names what it cannot see is reporting a gap, not clearing it. Rebuilt with the finding on its own row and a single zero line, then re-checked at render size. And one citation had to be repaired mid-build: Gray-Hammond's original host now returns a 410, and Ryan Boren supplied the new one — his writing lives at NeuroHub Community, where two of the three pieces were then read at source. The third, the nesting-as-architecture essay, is readable nowhere but in the Stimpunks glossary that quotes it, and the zine's colophon says so rather than implying we opened the original.

NewHow Anything Gets Built — Zine No. 54, in Star Stuff

The five neurodivergent love locutions — infodumping, parallel play, support swapping, deep pressure, penguin pebbling — set beside five mechanisms by which matter is actually assembled. The claim is that these are construction methods, not compensations. The deficit story ranks all five as thin stand-ins for the real thing: real conversation, real play, real gifts. That story needs them to be structurally deficient forms of connection. Structurally, they are how things get built.

Infodumping: a star cannot stop telling you what it is made of. Every photon leaving passes out through the star's own atmosphere and each element takes its specific bite out of the spectrum, so the light arrives carrying a complete, unedited account of the composition — whether or not anyone is reading. Fraunhofer catalogued the dark lines in 1814 without knowing what they were; Kirchhoff and Bunsen established in 1859–60 that each is an element's fingerprint; Cecilia Payne read hydrogen out of them in 1925 and was pressured to soften a conclusion that was right. We know we are star stuff because stars will not shut up about themselves — which makes the unasked-for infodump the entire evidentiary basis of this collection.

Parallel play: filed for decades as a developmental stage, something to be passed through. The sky's version is the wide binary, and El-Badry, Rix and Heintz catalogue 1.3 million of them in Gaia eDR3, genuinely bound at separations out to a full parsec, neither star perturbing the other, orbits so long no observer will see one completed. Nothing is being worked toward. Wide binaries are not failed close binaries — they are the commonest stable outcome the galaxy produces.

Support swapping: W Ursae Majoris contact binaries overflow into one shared convective envelope, and energy crossing it from the larger star to the smaller holds both within about 200 K of each other despite a mass ratio near 0.3 — capacity redistributed by the configuration they are in together. And the complication that keeps it honest, because support swapping is not free. In Algol systems mass flows one way, and the star that was originally more massive gave away so much of itself that it ended up the less massive, less luminous, apparently less-developed one. Crawford resolved that paradox in 1955: the one that looks behind is the one that gave, its donation written down as apparent deficiency.

Deep pressure: nothing fuses unsqueezed. A star simply is hydrostatic equilibrium, and the solar core sits near 2.4 × 1016 Pa. Take the crushing away and there is no carbon, no oxygen, no iron, no calcium in the bone. The pressure is not a condition the star endures on the way to making elements — the pressure is the manufacturing process. Penguin pebbling: the locution most readily filed as sweet-but-slight, and the one with the sharpest physics behind it. Classical planetesimal accretion could not finish a giant-planet core before the gas disk dissipated; the big collisions were simply too slow. Pebble accretion, named by Lambrechts and Johansen in 2012, gets there in 10⁴–10⁶ years. The small offerings did not supplement the big collisions — the big collisions could not do the job and the small offerings could. It even stops itself: past ten to twenty Earth masses the core opens a pressure bump and the pebbles are halted before arrival, so even the sky knows when someone has had enough pebbles.

The turn is printed on the face of the zine rather than buried, because five-for-five is exactly the shape of a claim that circulates for being tidy rather than true. Too Good to Check catalogues that failure, and this piece is a candidate for it. So spread 7 says so outright: the physics does not justify the love. The universe is not signing anything off, and if it were its approval would be worthless — a universe that could approve could also decline. This is the same defect the site caught in a sentence of its own: the universe loves you for it makes the star stuff the reason, and a reason can be revoked, where love you down to your star stuff measures how far the loving reaches rather than why it is given. Down to is not because of.

NewA Field Guide to the Ways of Being Alone — Field Guide No. 14, in Field Guides

Twelve ways of keeping your own company among our Terran kin, grown from Betsy Selvam's Lone Wolfing: The Joys of Autistic Solitude. The title turns out to be an accusation the animal never earned. A lone wolf is a disperser — typically nine to thirty-six months old, one of the roughly 15–20% of any wolf population currently between territories, crossing the neutral buffer ground between packs to find a mate and found one of its own. Some disperse twice. Wolves move between resident and dispersing states across a life. The animal we named the loner after was always on its way somewhere, and every pack that exists was founded by two wolves who were, for a while, alone.

The guide is sorted by a rubric it did not invent, and the rubric was sitting in the source page all along. Writing in The Atlantic in 2017, Brent Crane quotes the developmental psychologist Kenneth Rubin: solitude is productive only if it is voluntary, if emotion can be regulated within it, if one can rejoin a group when one wants to, and if relationships outside it are maintained. Crane's own gloss is the hinge — the difference between solitude as rejuvenation and solitude as suffering is the quality of reflection available in it, and the ability to come back. Those four conditions are the guide's four sections. Solitude with a door is rest; solitude without one is a different word. Rubin is writing about people, so the animals are marked throughout as rhyming with the conditions rather than evidencing them.

Inside them: social bees are fewer than one species in ten (Danforth, Minckley & Neff, The Solitary Bees, Princeton 2019) — we built the entire vocabulary of virtuous collective industry on the outlier, and the typical bee works alone while the world eats because of it. The sweat bee Lasioglossum albipes nests solitary in some populations and eusocial in others, and reared side by side in a lab each keeps its own way. Giant pandas aim more than 80% of their scent marks at animal trails, choosing the longest-surviving secretions, going out of their way to be found by animals they will never meet — which is effortful asynchronous outreach, and the argument No. 21 already makes about text and AAC, arriving through a bear. Territorial neighbours become dear enemies (Fisher, 1954), and the guide keeps the documented inverse, nasty neighbours (Temeles, 1994), because the mix has to be real. Fission–fusion parties change membership hour by hour among chimpanzees, elephants and dolphins, and nobody files it as instability. Cicadas spend seventeen years alone underground so that a fortnight can be loud. Pumas — the textbook solitary carnivore — share kills with non-kin and are 7.7 times more likely to share with an individual who once shared with them (Elbroch et al., Science Advances, 2017), which is mutual aid kept as a running tab between animals who mostly avoid each other. And orangutan party size tracks fruit availability rather than species, revising the old Sumatran-versus-Bornean contrast: an ape in a poor-fruit forest is not a less social ape, it is an ape in a forest that cannot currently afford company. You change the field, not the animal.

The thirteenth card gets no reframe table, and that is a third distinct reason for withholding one. No. 10 withheld it from five cosmologies; No. 12 withheld it throughout because there was no verdict to correct. Here there is a very loud verdict — octopuses turned out to be secretly social — and it is withheld because that verdict is not a misreading of the octopuses at all. Octopolis and Octlantis are dens crowded onto the only hard substrate for miles in soft sediment, and the interactions are evictions, chasing and posturing. It is a housing shortage, and the popular reading is a wish about us laid over it. A table corrects a reader who got the animal wrong; it has nothing to say to one who got the animal right and wanted something else to be true. Set beside the brown bears nine entries above — same crowding, abundant food, and it works — the variable is legible: proximity is not company; proximity plus scarcity is a fight.

One finding was refused rather than used, and the refusal is printed on the page. The sweat-bee polymorphism involves a variant in the intron of syntaxin 1a, which is also an autism-associated gene. It is the most quotable thing in the source material and it is a trap: a bee's nesting strategy is not our social life, and running that inference is the naturalistic fallacy with a citation attached — the exact failure How We Got Here exists to argue against. Nor is this a retraction of Symbioses. Interdependence is still the rule; solitude is a form of relation rather than its absence, and the puma's ledger and the panda's scent post are both social acts performed alone. The eighth guide to arrive independently at the same sentence: there is no standard amount of company.

Fact-checkWho the five love locutions belong to — corrected

A first draft of No. 54 credited all five locutions, including the name penguin pebbling, to Amythest Schaber. That is wrong, and the way it went wrong is the interesting part: every source we could reach led back to our own page. Helen Edgar's Autistic Realms post says penguin pebbling was “as far as I know” first introduced by Schaber; her practitioner guide cites Stimpunks (2022); and Stimpunks (2022) cites Schaber. A closed loop with no primary at the bottom of it — which is precisely the failure mode Too Good to Check exists to name, except this time the aggregator we were over-trusting was us.

Ryan Boren, who ran the page that put the framework into currency, supplied the actual chain, and it is now what the zine prints: Amythest Schaber originated the Five Neurodivergent Love Languages. Stimpunks popularized them and put them into currency from 2022. The term penguin pebbling reached us later, through Lindsey (brainsandspoons) — it was not part of the original naming. Locutions rather than languages is Stimpunks' own substitution, made to put distance between this work and the history of the Five Love Languages book.

And the primary was never missing — it was in the blockquote the whole time. This zine's colophon was drafted saying Schaber's first post was unlinked, and asking a reader to send it. Ryan pointed at the original thread of 27 May 2021, which the 2022 Stimpunks page quotes and links directly. The search had been for a citation the source page already carried. It is now cited on the zine, in the colophon and in the source list. A sharper version of a lesson already on this site: a secondary source that quotes a primary usually links it, and reading the page beats searching around it.

One item stays open, and is stated on the zine's own colophon rather than only here. Helen's page attributes the term penguin pebbling to Schaber, which conflicts with the chain above; that is her page, so it has been flagged to her rather than corrected from here. Publishing a correction to our own most-read page's provenance is the point of this page, not an embarrassment.

Fact-checkField Guide No. 14 credited an organisation where it owed a person — corrected

As shipped an hour earlier, The Ways of Being Alone said it grew from “the Stimpunks page” Lone Wolfing: The Joys of Autistic Solitude — five times, across the guide, the index card, the collection page, this changelog and the ledger. The essay is by Betsy Selvam, Stimpunks board member, published 18 June 2023, and the byline was on the page the whole time. Ryan Boren caught it.

The failure mode is worth naming because it is specific to a house that publishes collectively. Every other citation on that guide is a named human — Rubin, Crane, Fisher, Temeles, Kummer, Aureli, Kocher, Elbroch, Danforth. The one source that got flattened into an institution is the one that came from inside, and it got flattened precisely because the byline felt like ours. “Ours” is not a citation. A collectively-run site is exactly where an author is likeliest to disappear into the masthead, and the guide's own subject — that being alone is a practice with a name and an author, not an absence — makes the erasure worse than a routine slip.

A second slip inside the same fix, caught the same way. The first corrected pass stamped the essay CC BY-NC 4.0. That licence is on Betsy Selvam's header image; her writing carries the house licence, CC BY-SA 4.0. The research had reported the NC term accurately, as an image credit, and it got widened to the whole post on the way into a footer. A licence printed beside artwork covers the artwork.

Betsy Selvam is now credited by name in all five places, with the correct date and licence, and the guide says plainly that the four conditions it is structured on were quoted in her essay rather than found independently. She was already right about the practice; the wolves only turned out to agree.

2026 · August 15

A Moon that was never anything but half lit, an eighth chain on the day we stopped waiting for the Moon, a word Kepler had to invent in the middle of a diagram, a seventh chain on the second we cut loose from the sky, two Sagans on who is holding the candle, a foundation split out of an easter egg, a Discworld coda, a stack of elephants that was never Hindu cosmology, a sheet we had been holding for permission, and eight drawings of our mascot that nearly credited the wrong person

Seven additions, a substantial revision, and three corrections, one of them to a sentence this project has been misquoting about itself, and Foundations gained two pieces. The newest piece also cut a claim it badly wanted to keep — a link between two adjacent zines that turned out to be an inference rather than a citation — and says so on its own colophon. The collection had nothing at all on eclipses until today, and going to look for the word penumbra in Kepler's own Latin turned a planned etymology footnote into the argument. The second, A Promise, Not a Finding, exists because three principles the whole site rests on turned out to live nowhere but inside an easter egg. The first and it states a premise the whole site has been running on since No. 1 without ever arguing for it: Carl Sagan learned skepticism and wonder together and called them uneasily cohabiting, and his son Dorion argues that the passive voice and the “objective” stance delete the particular person who did the looking. Then the Easter Eggs collection gained the Didactylos passage from Small Gods and a drawing of Great A'Tuin. Checking the drawing turned up the thing worth publishing: the turtle-and-elephants stack is not Hindu cosmology, though it is repeated as such constantly. And a claim we had been making on two pages went stale the day the sixth checking gate landed. Last in, and the lightest on its feet: eight star-stuff drawings of Esmx, the Stimpunks mascot, made under the CC BY-SA licence that invites exactly this — and one citation it nearly got wrong on the way, by mistaking the paper that quotes a term most for the place the term came from.

NewThe Quillery — eight Esmx, in Easter Eggs

Esmx the Porkypine — part pig, part porcupine — is the Stimpunks community mascot, drawn by Kaya Oldaker and released CC BY-SA 4.0 with an explicit invitation on its own page to customise and make variants for your community. This is us taking that up: eight Esmx, pointed at the sky, each carrying one checkable thing with its source named underneath. The original art is not reproduced and not traced — the figure was rebuilt from scratch in this site's line, the way the Great A'Tuin drawing and the twelve cosmic eggs were — and both ear details Kaya's own alt text singles out, an earring in one ear and a missing chunk in the other, are treated as load-bearing rather than decorative.

The mane was already doing the physics before we got there. Esmx's spikes come loose at the tips and separate, as if they are made of energy, which is what a prism does to starlight: one mass resolving into discrete, separated, differently-coloured lines. So the first drawing makes the mane an emission spectrum, and hangs on it the fact that helium was catalogued in the Sun before anyone on Earth had held it — Janssen at Guntur on 18 August 1868, Lockyer that October, and no terrestrial isolation until Ramsay in 1895. Twenty-seven years between finding an element and touching one.

Then: a quill is a hair, keratin, the same protein as a fingernail — and its microscopic barbs do two things from one feature, raising the force needed to pull it out while lowering the force needed to push it in (PNAS, 2012). Porcupines cannot throw quills, a myth assembled backwards from finding a predator studded with them and no porcupine in reach, which is this collection's standard fault — a mechanism invented to explain a coincidence. Spines were arrived at four separate times, in four mammal orders whose common ancestor had none, so there is no standard way to make a spike either.

And then the one that is the whole site in a single drawing. Hard keratin is stiff because its strands are stitched together by disulfide bridges — two sulfur atoms holding hands. Sulfur is made by oxygen burning, late, in massive stars near the end. So the reason a spike stands up at all is an element assembled in the last days of a star that died before the Sun existed. Not a resemblance, not a rhyme: the same atoms. Love you down to your star stuff reaches all the way down to the thing that makes a quill a quill.

It closes on the name. Esmx is Esme — for Esmeralda Weatherwax and the Witches of Discworld, with the x for gender neutrality and fluidity, they/them. Which means the mascot has been carrying a citation the whole time, and it lands in the one collection that already holds a Pratchett credit: our porkypine is named after a witch who is famous for refusing to be fooled, including by herself.

One citation this page nearly got wrong, in the direction it exists to warn about. Esmx evokes the spiky profile, so the sixth drawing had to say whose the idea is — it is Damian Milton's, building on Francesca Happé, which is the attribution this collection carries throughout. A draft credited it instead to a 2020 British Medical Bulletin paper, on the reasoning that its wording is the one everyone quotes (including Esmx's own page) and that its author appeared nowhere in this project. That reasoning is the error. A study that defines a phrase in order to work with it is using the term, and using a term is not being part of its provenance; the paper is now cited for the two phrases actually quoted from it and explicitly marked as a use rather than an origin. Caught by Ryan Boren before it shipped. Recorded because it is exactly the substitution Too Good to Check catalogues — the most quotable source standing in for the real one, which looks more rigorous than the alternative while pointing at the wrong person.

Two things deliberately left out, written down so nobody adds them later. The goblin-mode strand in Esmx's design is not drawn as a feature, because it is the posture the character is already standing in rather than a thing to put on it. And the joke about porcupines being rodents rather than pigs was cut for being a joke about a word rather than a fact about an animal. Eight drawings, one figure defined once and used eight times — which is how the official variant set works too — and every one carries real alt text, because the source page asks people to.

Esmx now stands at the foot of the front page, beside the cosmic egg, as a second small door. The two are deliberately different sizes: the egg is the way into the collection and Esmx is the way into one piece inside it, and making them equal would ask the reader to choose between two identical invitations. Both carry text labels, both are keyboard-reachable, and both are hidden in print — a door to a web page is nothing on paper.

NewNot a Line — the ninth broadside, in Print

The sheet you hand across the table when someone is about to say “mild,” “high-functioning,” or “low support needs.” A functioning-labels field card, compressing Zine No. 21 onto one sheet of paper you can photocopy and take into a meeting.

The face draws the spiky profile — grid, baseline and all — in order to refuse it. That is deliberate rather than sloppy. Nearly everyone who reaches for this card has already met the spiky profile and thinks it is the answer, and you cannot refuse a picture you have not shown. So it is drawn properly, credited properly (Damian Milton's, building on Francesca Happé), and granted what it genuinely fixes: nobody is uniformly mild or uniformly severe. Then the sheet says what it keeps — a better chart is still a chart, plotted against a flat expected baseline, frozen at one moment of assessment. The reverse is where the grid gets dropped. The face→verso sequence is the argument.

Under the figure, five phrases with what each one actually does. Mild reports how much your difference costs the person describing it, usually written down on a good day about someone who was masking hard to be there. High-functioning is heard as a compliment and used as a refusal — it reads coping in one domain as proof that no support is needed in any other, and then withdraws it. Low-functioning moves you from the person a decision is about to the object it is made on. Low support needs, and levels 1, 2, 3: renaming the rungs does not remove the ladder, and the number is what gets budgeted. A little bit on the spectrum treats the spectrum as a quantity of a thing, which it never was — a fingerprint has no volume knob.

The reverse carries what to say instead, matched one to one: name the domain and the day; name the support and keep it; ask the person; a list, not a level. Then the fact the word came from — split a star's light and every element signs its own exact pattern of lines, which is still the only way we know what stars are made of, so a spectrum never ranked anything. Then Patrick Dwyer's autism constellation and Helen Edgar's constellation of intensities, with the community lineage named on the sheet rather than left to a footnote: Caroline Hearst's physical model, and Milton crediting Larry Arnold as the first he knows of to use constellation in place of spectrum. A sheet against ranking people should not erase the people whose idea it is.

And the guardrail, which the whole thing stands on: refusing the line is not refusing that some of us need far more support than others. Functioning labels do harm precisely because they gatekeep it. The honest replacement was never a better label — it is naming the specific support each of us actually needs, and then providing it. No rank, and all the care.

Two notes on how it was built. It is the only sheet in the rack with no “Not:” refusals block, because the face already is one and a second would have restated the front of the sheet in smaller type. And the figure was wrong on the first draft: the “expected baseline” label sat inside the plot and ran straight through the profile line. No gate here can catch that — the overlap checker measures text against text and says outright that text crossing artwork is outside what it reports — so it was caught by eye at render size, and the plot was shortened to give the label its own margin.

This sheet was held back on purpose, and the note recording the hold has been kept rather than deleted. The Print collection has carried a public entry saying the functioning-labels card was proposed, scoped, and deliberately unbuilt — because No. 21 is after Helen Edgar, constellation of intensities is her phrase, and a broadside circulates harder than a zine. Who moves a phrase into that kind of circulation is a decision to ask about rather than assume. That section now reads as a record of the hold and its lifting, because a hold that vanishes on the day it lifts teaches nobody anything.

Helen reviewed a PDF of the finished sheet and approved it, and it ships on her word. That is the order the hold was for: built first, then shown to her as the artifact it would actually be rather than described in a message, then published. Describing a broadside is not the same as showing someone the thing that ends up on the wall — which is why the asking came after the building rather than instead of it.

NewThe Moon Is Always Half Lit — Zine No. 53, in Star Stuff

The Sun lights one hemisphere of the Moon. Not usually, not on average — continuously, without a single interruption that was not an eclipse. Almost nobody pictures it that way, because a crescent looks like a Moon that has had most of its light taken away. It has not. It is a fully half-lit Moon seen nearly edge-on to its own daylight, and the illuminated hemisphere is exactly as large at new Moon as at full. Nothing dims, nothing is withheld, nothing is recovering. What changes is the angle between the Sun, the Moon and you.

Which means a phase needs three bodies, and one of them is the observer. There is no fact about “what phase the Moon is in” that does not have your position inside it — and the US Naval Observatory's own definitions make that concrete in a way the familiar chart hides. New Moon, First Quarter, Full Moon and Last Quarter are defined to occur at 0°, 90°, 180° and 270° of longitude difference, which makes them instants with no duration. Waxing crescent, waxing gibbous, waning gibbous and waning crescent are the roughly week-long stretches between them. So the eight equal boxes are really four knife-edges and four long weeks, drawn over an illuminated fraction that changes smoothly and without a single step. The boxes are ours. We drew them because a chart needs boxes, and then started reading them back as though we had found them.

Because the observer is one arm of the angle, moving you changes the answer. At one instant, one lit fraction, one Moon: lit along the right edge from Edinburgh, along the left from Melbourne, and underneath near the equator, riding low as a bowl — a wet moon, tipped up to hold the rain. Three drawings, three correct answers, nobody seeing an illusion. And a correction the language has been getting wrong for a century: there is a far side and there is no dark side. The far side gets exactly as much sunlight as the face we know, and at new Moon — the one night we see nothing at all — it is in full daylight, the whole hemisphere blazing, entirely unwitnessed. Luna 3 went and looked on 7 October 1959, developing the film in a small automated darkroom it was carrying and scanning the negatives home. What came back was not a shadow but a sunlit landscape. It had been like that the whole time.

The turn: waxing and waning are words about the geometry. They are not words about the Moon, and nothing in the Moon does them. A functioning label is a phase recorded as a substance — it takes the crescent and files it as the whole Moon there is — and “but she seems fine with me” is not a fact about her; it is a report of one angle offered as though it were the object. The guardrail gets its own spread, because the easy version of this argument is cruel. A crescent really does deliver less light to you, measurably, and anyone handed “cheer up, you're always full” has been given the wrong sentence. The correction is not that the difference is imaginary but that it is located in the arrangement — the angle, the room, the hour, the position of whoever is writing it down — and not in the bodymind. That is the distinction No. 51 draws about the umbra, borrowed rather than re-derived.

And a claim was cut during the check, which is worth publishing because of how good it was. The draft wanted to say that Kepler credited Michael Mästlin for earthshine in Astronomiae pars optica — the same 1604 book in which he coined penumbra for No. 51. A perfect joint between two adjacent zines, which is exactly why we distrusted it. What the sources actually support is that Mästlin's 1596 work is “often referred to” in Kepler's — referred to, not credited for this. That is an inference, not a citation. The spread now claims only what is documented: Mästlin taught Kepler at Tübingen, and the two men's work sits either side of the same refusal to accept a picture with only two states in it. Mästlin's priority for the first published explanation is graded plausible rather than verified, on a single strong secondary source. Leonardo's earlier unpublished explanation is verified — and he got the mechanism slightly wrong, crediting Earth's oceans where most of it is cloud, which the page states rather than tidies.

And the turn is landed in a life rather than left abstract, which fixed a real weakness. It originally rested on an invented scene — someone at 3pm in an open-plan office versus at home on Saturday. Ryan pointed at one of his own posts instead: R-word and Genius: Situationally Mute Hyperlexic Autistic (2022), on being read at both extremes across a single school career. Hyperlexic and Autistic, he would not read aloud — situational mutism and exposure anxiety “locked my lips” — until one day, in a quiet corner with a semblance of psychological safety, he read a book cover to cover in a whisper and asked, “Can I go now?” The made-up example was cut and a new spread added to carry the real one.

It is better on three counts. It is first-person from inside the community rather than imagined. It names the variable the geometry leaves abstract — “the difference in impressions is due to psychological safety, it’s presence and absence.” And its own phrasing is the argument: he describes going “from being a full time r-word to a part time one, depending on who was in the room with me and if I felt safe enough speak” — a phase recorded in the vocabulary of proportion, with the observer’s position in the angle stated plainly by the person being measured. His line that “Autistic people are psychological safety barometers” then inverts the whole measurement, because a barometer’s reading is a fact about the surrounding air: the instrument was reading the room, and the room wrote the result down as a fact about the child. That last inference is flagged on the page as ours, not his.

Credits kept exact rather than absorbed: exposure anxiety is Donna Williams’s (The Invisible Cage, 2003), and psychological safety as a research construct is Amy Edmondson’s (Administrative Science Quarterly, 1999) — a study of work teams, so the colophon says outright that the application to classrooms and to Autistic people is Ryan’s, not Edmondson’s. The slur is written “r-word” throughout, matching the source. And a seventh refusal was added to guard the new spread against itself: not that psychological safety is the only variable — sensory load, processing time, energy, pain and plain exhaustion are angles too, and “just make them feel safe” would be a new flattening.

Fourteen spreads, four diagrams, all four inspected by eye at render size because no gate here can see that a drawing means the wrong thing. Deliberately out of scope: the tides and co-regulation of No. 17, which is the Moon's gravity and a different physical story; and the calendar problem — that 29.53 days will not divide 365.24 — which spread 10 names and then stops, because it is a chain rather than a zine, and is parked as a candidate instead of half-told here.

NewWe Learned to Build the Eclipse — Zine No. 52, the eighth chain in How We Got Here

The Sun's outer atmosphere is always there and was, for most of astronomy's history, almost entirely unavailable. The photosphere drowns it, so the corona and the prominences could only be studied during totality: a few minutes, roughly every eighteen months, along a track a few hundred kilometres wide, usually somewhere difficult, and one cloud ended the expedition. An entire branch of physics, rationed by an alignment nobody controlled.

The chain is about how that stopped being true — and it was proposed with a different spine, which the research broke. The pitch was the obstruction is the instrument. But Norman Lockyer never went to the eclipse, and Jules Janssen stopped needing one the morning after his: on 19 August 1868, the day after watching totality from Guntur, he observed the prominence spectrum again in ordinary daylight. What the eclipse had actually given him was not data. It was the knowledge of what to build, and he built it within twenty-four hours.

So the spine was rebuilt: wait for an obstruction you cannot control, learn what it reveals, then construct it yourself. That change also closed a trap the original would have had to spend a refusals set fighting — “the obstruction is valuable” is one inch from disabled people exist to reveal the flaws in your building. The corrected arc refuses it structurally, because the entire point is that you stop needing the eclipse. The first outline was wrong in a way worth publishing, so it is on the page and in the ledger rather than quietly fixed.

Then the part the popular version deletes. Everyone knows the sentence helium was discovered in the Sun during an eclipse in 1868. It is wrong in almost every part. The yellow line was caught by several observers that day, not one. Neither Janssen's nor Lockyer's report to the Académie singled it out — the medal the Académie struck for the pair was for the method. Only Lockyer, later, called it D3 and proposed an element. And then, for a quarter of a century, chemists refused it — not because the spectroscopy was faulty but because nobody could put the gas on a bench. Nineteenth-century chemistry ran on substances you could weigh, dissolve and combine, and a thing visible only in light from 150 million kilometres away did not qualify as a thing.

They were rigorous and they were wrong, and the zine insists on both, because the same method also produced two elements that were never there. Coronium and nebulium were confidently named from eclipse and nebula spectra, and dissolved only when Ira Bowen showed in 1927 that the nebular lines are forbidden transitions of ordinary oxygen, and Walter Grotrian in 1939 and Bengt Edlén in 1942 showed the coronal lines are forbidden transitions of iron ionised past anything a laboratory could supply. One proposal in three was real. Chasing down the two false ones is also how we learned the corona is millions of degrees hotter than the surface beneath it. Ramsay finally got helium out of cleveite on 26 March 1895 — twenty-seven years late, and it had been underfoot the whole time.

The chain then runs downhill, on purpose. In 1919 the Moon was needed again, because measuring whether starlight bends requires a genuinely dark sky beside the Sun and spectroscopy's trick does not help. Capability is specific. The Sobral astrograph plates were set aside; Earman and Glymour argued in 1980 that this was data selection driven by theory, and “Eddington saw what he wanted” circulated as settled fact for decades. Kennefick's work answers it on the evidence: the call was Dyson's team's, not Eddington's, and the plates could only agree with Newton if the instrument had also undergone a large change of magnification on top of its loss of focus. There was a reason to distrust them other than what they said — which is the whole difference between rejecting bad data and rejecting inconvenient data.

It ends with Bernard Lyot, who chased stray light up a mountain and on 12 July 1931 photographed the corona with no eclipse at all: an eclipse at a time and place of human choosing, turning minutes per expedition into hours per clear day. We now fly manufactured occulters at other stars. The transfer, marked leap because it is one: a rare alignment can show you what is needed, but it is a catastrophe as a delivery mechanism — and an accommodation is simply the deliberate, permanent, boring manufacture of a condition that would otherwise depend on luck.

The chain spends its ending rather than stating it. The turn originally stopped one move short — it called the built condition an accommodation, which is precisely the word our own page exists to criticise. Accommodations: Individualized Responses to Structural Design Problems: the problem is structural, the response is individual, and that mismatch converts a design fault into a rationed personal request. And the framing the chain refuses first: eclipse tracks were computed years ahead, to the minute and the mile, so the difficulty was never luck. It was a structural condition — the observation existing only there, only then, with the ocean, the freight, the years of planning and the weather risk all charged to whoever wanted it. So there are three states, not tworeach it, ask for it, or have it — and Lyot did not apply for access to the corona. He built an instrument in which the corona is simply there for anyone who looks. The occulting disc is not a concession to astronomers who cannot handle glare; it is where the instrument's precision comes from.

Which is a curb cut. In Berkeley in the early 1970s, as Angela Glover Blackwell tells it in “The Curb-Cut Effect” (Stanford Social Innovation Review, Winter 2017), Michael Pachovas and a few friends wheeled themselves to a curb, poured cement into the form of a crude ramp, and rolled off into the night. They did not wait to be granted the condition; they poured it. The city's first official curb cut followed on Telegraph Avenue in 1972. And one correction, because this chain spends a whole spread on a smoothed retelling and could not close on one: the famous story of activists smashing kerbs with sledgehammers and dynamite before dawn is disability lore rather than documented history. What actually happened was quieter and more like engineering — somebody poured a ramp. The zine also states plainly that the curb-cut effect is an observation about what built-in conditions do and never the justification: the reason to cut the kerb was that disabled people are people and the pavement was refusing them, and that reason was sufficient without a dividend for anybody else.

Twelve documented joints, four contested, one leap — the most contested of any chain here, which is a fact about the subject rather than about the sourcing. The collection page has been re-counted from the pages: eight chains now carry 74 documented, 20 contested, 7 leaps. It also said “6 pieces” while carrying seven cards, which is fixed.

NewAlmost Shadow — Zine No. 51, in Star Stuff

Nothing on this site had ever mentioned an eclipse. Going to fix that meant looking up who named the penumbra, and every available lead said the same nine words — coined by Kepler, 1604 — with no source behind them. So we downloaded the book.

The word is in there six times, and one of those is the act of naming. In Ad Vitellionem Paralipomena (Frankfurt, 1604), in the middle of a caption to a geometrical diagram, Kepler writes: “quod est inter KE, NM penumbra dicatur, LN vero umbra”let what lies between KE and NM be called penumbra, and LN, indeed, umbra. The verb is dicatur, let it be called. That is not a man using a word; that is the word being made, in one clause, because a drawing demanded it. He built it from paene, almost, and umbra, shadow. Almost-shadow — and what gets named is neither the dark nor the light but the thing between them. A dictionary entry would have given us the etymology; only the book gave us the argument, and the zine now opens on it.

The reason two words were not enough is that the Sun is not a point. It is a disc, so every part of it throws a shadow in a slightly different direction and the result comes out layered, with no edge anywhere — just a handover. Astronomy keeps three zones now, and the third is the one nobody has heard of: the antumbra, past the shadow cone's apex, where the Moon sits entirely in front of the Sun, nothing sticking out, nothing off to one side — and it is still not a total eclipse, because the Moon is simply too small in your sky to cover what is behind it. Complete obstruction, and the darkness never comes.

Then two facts that the zine refuses to separate, because each one alone is a familiar mistake. The penumbra is the enormous zone — an umbral track a hundred-odd kilometres wide against a penumbra spanning thousands — so almost everyone who has ever seen a solar eclipse saw a partial one. The partial state is the ordinary condition and totality is the exception. And ninety-nine percent obscured is still daylight: the corona is only about as bright as a full Moon, the surviving sliver of photosphere is hundreds to thousands of times brighter than that, and measured illuminance falls more than four orders of magnitude between full Sun and totality, a hundred-fold of it in the last two minutes. The last increment is not an increment. It is a change of state, and on the far side of it the birds stop.

Two other fields went looking for a word for exactly that shape and arrived at Kepler's. In Stroke in 1981, Astrup, Siesjö and Symon found two thresholds in ischaemic brain — electrical failure, then ion-pump failure — and named the zone between them the ischaemic penumbra: tissue that has stopped working but has not stopped being tissue, salvageable if the blood comes back. That word is the reason acute stroke has a treatment window at all. Every intervention is aimed at the penumbra; the core is past help and the healthy tissue does not need it, so all of the leverage sits in the zone a two-state description cannot name. And in Griswold v. Connecticut (1965), Justice Douglas held that guarantees have “penumbras, formed by emanations.” That passage has been criticised hard ever since, and the zine puts the objection in the body text rather than a footnote: a shadow with no measurable edge can be stretched to cover whatever the reader wanted covered.

The turn is that support is not proportional. Ninety percent of a ramp is a wall; captions that drop out for the last two minutes did not deliver ninety-eight percent of the talk. And the least sentimental sentence in the piece is the most hopeful one, carried over from 1981: in the penumbra, what looks like loss is often deprivation — and deprivation is reversible, if you can see the zone exists and get there in time. Impaired is not lost. A rhyme, not a proof; the closing spread says so outright and the “Not:” set turns down the severity-spectrum reading first.

NewThe Sky Was Not Regular Enough — Zine No. 50, the seventh chain in How We Got Here

Until 1960 a second was one 86,400th of a day, and the definition pointed at something: not a prototype in a vault but the sky, checkable by anyone against a star. Then quartz clocks arrived, and for the first time in the history of measurement the instrument was steadier than the Earth — Scheibe and Adelsberger reported the seasonal wobble in 1936, Stoyko put it at about two milliseconds in 1937. The line the zine turns on: the Earth was never irregular to itself. It became irregular the moment we had something steadier to compare it to. So the tie was cut twice. In 1956 the second became a fraction of the tropical year 1900 — a year already over, impossible to re-measure, precise and completely inaccessible. In 1967 it became 9,192,631,770 caesium transitions, and after that the definition contains no day, no year and no sky.

Every one of those moves was an improvement, and the zine says so on its face. A standard anyone can rebuild in any lab beats one that needs an observatory and years. This collection exists to reclaim science from the things that wear its clothes, and a chain here that read as anti-science would have gone wrong. A whole spread is given to saying that Resolution 4 is correct.

The argument is about the announcement, not the standard. Since 1972 the gap between atomic time and the turning planet has been closed in public by leap seconds — 27 of them, first 30 June 1972, last 31 December 2016, none since, because the Earth started spinning faster and the correction now due is a negative leap second that has never been tested. Resolution 4 of the 27th CGPM (2022) decided the tolerance “will be increased in, or before, 2035” and referred the implementing text to the 28th CGPM in 2026 — this October. The proposal is a leap hour. A leap second is not a bug; it is an honesty mechanism: a standards body saying in public, on a named date, with a number attached, that its standard and the world disagree by exactly this much. A leap hour is the same total correction, deferred past the lifetime of everyone who votes for it.

The order in the received story is backwards, and the dates say so. Standard Railway Time (18 November 1883, the Day of Two Noons) does not descend from the caesium second — it precedes it by eighty-four years and helped cause it. Nobody discovered that local solar noon was wrong; it was correct, and it was abandoned because being right in your own place had stopped being what time was for. Then Bundy's time recorder in 1888, and the clock stops describing when things happen and starts recording who complied. No. 43 already owns Taylor's stopwatch and it is deliberately not re-walked here.

One fact changed the shape of the piece. Duncan Agnew, in Nature 628, 333–336 (2024), found that melting Greenland and Antarctic ice has slowed Earth's spin enough to postpone the first negative leap second from 2026 to 2029. Climate change bought the world's timekeepers three years, and Agnew refuses to read that as good news. You can no longer read a clock without reading the ice.

Eleven documented joints, one contested, one leap — the most lopsided mix in the collection, which is a fact about the subject rather than a boast, and the collection page now says so. A rail built from published resolutions, a maintained leap-second table and a paper in Nature is supposed to run documented. The honesty is in where the weak tag falls: the single leap is the step from how a standards body handles its own mismatch to how institutions handle ours, and the zine states plainly that caesium licenses nothing about a person. What crosses is a question, not a mechanism — when your standard and the world disagree, do you announce the gap or absorb it? An accommodation is a leap second, and the objections arrive in the same order (it's irregular, it breaks the system, everybody handles it differently) with the same remedy proposed: widen the tolerance, stop announcing.

It ends where No. 19 ends but by a different road — processing speed as an index score (WISC-III, 1991; Coding and Symbol Search), then crip time. The Earth is not slow. The second left. And the running spine is the first in this collection that is not a metaphor for its chain but a plot of it: the staircase is TAI − UTC at the real effective dates from IANA's leap-second table, flat before 1967 because until then the second was the day, and the Earth's own curve parting from it after 2016. Geometry generated from the data, not drawn by hand.

UpdatedAlmost Shadow was conceding the thing it exists to refuse

The turn read: “most of us are not in the umbra and not in the clear.” Ryan caught what that sentence grants. It concedes that an umbra exists for Autistic bodyminds and that some people are in it — and six spreads earlier the same zine says of the ischaemic umbra that nothing is coming back from there. That is the write-off, and functioning labels and “profound autism” are how it gets administered. A piece arguing that impaired is not lost had left the door open to exactly the reading it was written against.

A new spread 11 states the distinction flat. It runs off the optics the zine already had rather than the medicine: an umbra is a relation between a source, an obstruction and a place — never a property of the ground it falls on. The pavement does not have an umbra; it is in one, and nothing about the pavement is different. Move the source and the umbra moves. So there is an umbra of support — support can be wholly blocked, which is what “ninety percent of a ramp is a wall” means — and it is a fact about an arrangement somebody built and can unbuild. There is no umbra in an Autistic bodymind at all. Not a small one, not a rare one, not one reserved for somebody further along than you.

Functioning labels take the shadow the arrangement casts and paint it on the person: high-functioning, severe, level 3. And “profound autism” — proposed in the Lancet Commission on the future of care and clinical research in autism (2021) for people who are minimally or non-speaking, need round-the-clock care and are “not able to advocate for themselves” — is the umbra version of that move. Hold that criterion against Steven Kapp’s 2023 review in Education Sciences, which finds that minimally speaking Autistic people can communicate, especially with responsive partners, need testing that lets them show what they have, and can self-advocate. Which makes “unable to advocate for themselves” partly a statement about the listener, the method and the room. Profound reads deprivation as loss, on a person — and in the medicine the zine borrowed the word from, reading deprivation as loss is the exact error that costs the salvageable zone.

And refusing the label is not a denial of anyone’s support needs, which would be its own way of writing people off. Some people need constant, skilled, round-the-clock support, and the spread says so plainly. Helen Edgar has written on this and is credited on the page for the formulation that settles it: “Autistic people with profound and multiple learning disabilities and health needs are not ‘Profoundly Autistic,’ they are autistic with specific needs.” Support-needs language restores the penumbra — specific, by domain, by day, able to go up as well as down — and never declares any part of a person past reaching. The “Not:” set now refuses the bodymind umbra first, and No. 21’s not a line argument is left where it is; this is its companion, saying and not an umbra either.

Fact-checkThe best anecdote in No. 51 had no source, so it isn't in No. 51

Secondary accounts of the ischaemic penumbra carry a lovely origin story: that Lindsay Symon coined the term while walking across Guildford Street to lunch at Queen Square. It is specific, it is charming, it names a street, and we could not find a citation for it anywhere in the peer-reviewed literature — including in the most substantial four-decade review of the concept, which does not mention it. Cut. It would have been the zine's best paragraph, and it is exactly the shape Too Good to Check exists to catch: a detail whose vividness is doing the work its sourcing should.

A second claim was downgraded rather than cut. Several reviews state that the 1981 authors took the name consciously from eclipse geometry. That same four-decade review is silent on both the derivation and the coiner, and no primary statement by the authors could be reached. So the zine says only that the word is Kepler's and medicine took it — true regardless of what anyone was thinking — and does not put a thought in anyone's head.

And one source got the physics backwards on the way past. A widely-syndicated explainer says the ischaemic penumbra is named for “the halo surrounding a total solar eclipse.” That halo is the corona. The penumbra is the partial shadow, and it is not a halo, not visible as a ring, and not the thing you can see. Noted here because it is a good reminder that a source confident enough to explain an etymology to you can still have the object itself wrong.

Fact-checkWe called a colophon our masthead, and cut the three words that already fixed it

No. 49 built its closing argument on a sentence it introduced as “our masthead”: You are made of star stuff. The universe loves you for it. Two things wrong with that, and Ryan caught both.

It is not the masthead and never was. On the live site that sentence appears in exactly one place — the colophon of Bone Song, Zine No. 1 — against thirty-five pages carrying Love You Down To Your Star Stuff. The masthead tagline is Cosmic Connections. The sentence had been lifted from a sign-off in the repository's own working notes and promoted to site-wide doctrine without anyone checking, which is the smoothed-retelling fault committed by the page that names it. Both sign-offs now read Love you down to your star stuff, and CLAUDE.md carries a written trap entry beside the Cavendish and wood-wide-web ones, so the next person to work here is told what the signature phrase is, what the masthead tagline is, and that the working notes are a lead about the site rather than a fact about it — the same standing this house gives a quote aggregator.

And the quotation was truncated. The colophon actually reads “You are made of star stuff. The universe loves you for it. So do we. Those last three words are the correction the entire spread was labouring toward — sitting in the first zine this project ever made. We quoted the fallacy, dropped the repair, and argued against what was left.

What the fix turned up is better than what it replaced. Rebuilt on the phrase we actually use, the argument stops being a correction and becomes an explication: Love you down to your star stuff has the subject as us, not the cosmos, and “down to” measures how far the love reaches rather than why it is given. The star stuff is the extent of the claim, not its warrant. Death grinds the universe down hunting justice among the atoms and finds none; the phrase goes down exactly as far and claims only that the loving reaches there. Same descent, opposite kind of claim. The grammar has been right for forty-nine issues and nobody had said why.

No. 49 is corrected on its closing spread and carries the note there; the new essay is built on the corrected footing and quotes the Bone Song line in full. Bone Song is unchanged — it repairs itself in the next breath, and deleting the evidence that we ever wrote it would be the opposite of what this page is for.

NewA Promise, Not a Finding — three governing principles that were only reachable through an easter egg

No. 49 turned out to be load-bearing, so it has been split. The split was checked before it was made, rather than decided on taste: a grep across the repo found the three ideas the rest of the site rests on — the belonging claim as a promise, lies-to-children, and First Sight and Second Thoughts — occurring nowhere except inside No. 49 and the two pages describing it. Three principles that govern how every piece here may argue were reachable only through a page deliberately kept off the front page. That is backwards, and it is the same shape as the fault No. 49 itself found: something load-bearing, in constant use, never stated where it governs.

The essay is narrower than the zine, on purpose. It takes the three principles and leaves the Discworld apparatus behind — the Pratchett credit, the Stewart-and-Cohen corrections, the clacks header and the embuggerance all stay in the egg, which the essay links to. What moves is: grind the universe down and there is no atom of justice in the powder, so the second half of our masthead is an act we perform rather than a result we found; every piece here is a ladder, honest only where it marks the rung it stops at; and First Sight and Second Thoughts is the name for what the six gates and this changelog already do.

Three things on it are new and are ours. That a belonging claim resting on variation persists in nature would be revoked by any paper finding that it doesn't — so a revocable claim was never doing the work, which is a far sharper reason to drop it than “the naturalistic fallacy is impolite.” That the ladder has a moral limit as well as an epistemic one, which is what Field Guide No. 10 was doing when it refused to run a correction table over somebody's cosmology. And that only Second Thoughts can be automated: no gate will ever tell you a beautiful pattern is doing your looking for you.

And the risk in writing it at all, which is stated on the page. All three principles are borrowed — two from Jack Cohen and Ian Stewart, one from Terry Pratchett — so an essay presenting them as house doctrine is one careless draft away from laundering Discworld-derived thinking into “our method,” the exact fault No. 49 was written to correct. The credits therefore sit above the argument rather than in a footnote, and the closing refusal is “Not ours.” The Hogfather passages are reproduced from the copy checked against the book on 14 August, small capitals and italics intact, rather than re-transcribed.

NewWho Is Holding the Candle — the sixth piece in Foundations

The Demon-Haunted World is remembered as the skeptic's book, and the sentence in it that matters most here is about two people who knew no science at all: “in introducing me simultaneously to skepticism and to wonder, they taught me the two uneasily cohabiting modes of thought that are central to the scientific method.” Two modes, not one; and uneasily is the load-bearing word. Sagan is blunter still on the facing page — there were no inspirational science teachers in his schooling, only rote memorization and “no soaring sense of wonder.” The institution had all the content and neither mode.

The other half is Dorion Sagan, in Cosmic Apprentice: the passive voice, the “objective” stance and the anonymity of the scientist betray the fact that all observations are made from distinct places and times by particular individuals. So this is the argument underneath a house rule that has always looked like a style preference. We write we about neurodivergent and disabled people because third person here would not be neutrality — it would be a claim to stand outside a room we are sitting in. The page carries the same reasoning into the small print: why Helen Edgar's zines are hers on their faces, why every correction names whoever caught it, and why “verified” with no verifier named is the same deletion the rest of the site spends its time undoing.

It also quotes Dorion on funding — a technoscience that “has arguably lost both its moral and its epistemological compass” because of who pays for it — which is the most misreadable thing on the page, so the guard is stated on its face rather than left to the reader: this is not an argument for less evidence. It is an argument for the parts that got left behind — the pre-registration, the published nulls, the hedge the paper carried and the press release dropped.

Fact-checkA Niels Bohr line we could not stand behind, caught before publishing rather than after

Every quotation on the new page was verified against images of the printed pages, from Ryan Boren's own copies — not a quote site, not a search summary, and not the Stimpunks page that first paired the two Sagans. That turned up one thing we could not confirm, and it is on the page rather than in this file only.

“The opposite of a great truth is another great truth” is the line that explains why the two modes cohabit uneasily, and it is exactly the sort of thing this site gets wrong. It reaches us through Dorion Sagan, who writes “as Niels Bohr impressed.” Dorion writing it is primary-confirmed. Bohr saying it is not — the source usually given elsewhere is a son's recollection rather than Bohr's own writing, and we have not checked it. So it is attributed on the page as “Niels Bohr, as quoted by Dorion Sagan,” which is what we can actually support, and logged as an open item. Failure mode one, caught in advance for once.

Two smaller things the page images settled. Both of the Dorion passages as commonly excerpted begin mid-sentence; the sources note says so and describes what was cut, and the setup to the passive-voice passage is summarized in our own prose rather than quoted, because it is doing rhetorical work the excerpt would otherwise inherit unexplained. And Donna Haraway's Situated Knowledges (1988) is cited for the concept without a page range — reproducing one we had not verified would be mode two on a page about mode two.

NewThe Turtle Moves — a Discworld coda at the foot of the Easter Eggs collection

Small Gods is a book about an institution that kept every instrument of belief and mislaid the thing itself, and the Turtle in it is not a doctrine — it is the thing that goes on being the case whether or not anyone believes it, with the heresy being the flat refusal to stop saying so. Asked whether it is really true, Didactylos does not argue; he says the Turtle exists, that this will happen either way, and then: “It is real.”

That is why it sits at the foot of this collection. The eggs are the pages about our own furniture, and No. 49 spends eleven spreads conceding that the universe contains no atom of justice and that our masthead is a promise rather than a finding. The Turtle is the other half of that, and the half nobody gets to choose.

The quotation was not retyped, and that is deliberate. It is copied from No. 35, where it was checked against the book after shipping unconfirmed — including the italic on the final Moves, which every plain-text version circulating online drops. Same class of fault as the Hogfather typography a day earlier, so the verified copy already in the repo is now the source of record rather than a fresh transcription from a search result.

Fact-checkA turtle carrying elephants carrying the world is not Hindu cosmology

Drawing it made us check it, and the popular attribution does not hold. The stack appears in John Locke's An Essay Concerning Human Understanding (1690) as a story about “an Indian,” and Bertrand Russell repeats it in Why I Am Not a Christian (1927). Reference scholarship on the epics and major Puranas finds no world-upholding elephant in them at all; von Humboldt attributed the muddle to the Sanskrit nāga carrying both “serpent” and “elephant.” So what Pratchett is riffing on is a European joke about India, not anyone's scripture.

This agrees with something No. 35 established independently — Kurma is a pivot for churning, not a world-bearer — which is why the two corroborate rather than merely repeat. It is also why the new drawing is deliberately not filed beside Field Guide No. 10's five turtles people made: it is a novelist's invention, drawn as a novelist's invention. Open: the not-in-the-Puranas claim rests on reference scholarship rather than a primary Sanskritist reading, and the page phrases it no more strongly than that.

SiteWe were still saying “five checking gates” after the sixth one landed

When check-overlap.mjs shipped as the sixth gate, two present-tense claims elsewhere went stale and nobody noticed: the Easter Eggs page promising every egg “a clean pass through all five checking gates,” and No. 49 listing “five gates that measure instead of glancing” in a table and again inside a diagram. Both now say six.

The dated entries below still say five, and are staying that way. They were true when they were written, and a changelog that gets quietly edited to match the present stops being a record. Only standing claims were changed. Small, but it is exactly the class of error this page exists for — a number that was right, went wrong on its own, and needed somebody to look.

2026 · August 14

Three pieces from one essay, a fact we had been repeating that isn't true, two credits we owed — to a number, and to a comedy channel — a shadow bigger than the thing that throws it, and a third credit that cost us three attributions

Most of the day came out of Helen Edgar's My Monotropic Galaxy. No. 46 went looking for the fact that most stars have a companion, found the opposite in the literature, and now opens on the correction rather than burying it — and the same error turned out to be sitting in a field-guide entry we shipped in July. Field Guide No. 12 rehouses Helen's twenty constellations as the catalogue they already were, and is the first guide here to carry no reframe table at all. Then The Constellation Sheet, because that guide ends by asking readers to draw their own and we had nothing to give them. Three pieces, each credited to whoever's language it is built on. Then two pieces of housekeeping that turned into something: a set of counts on the front page and in the README had quietly gone stale, and the one gap in our numbering finally got a page that explains what it was — No. 37, which arrived after No. 46 and marks itself for it. That opened a thirteenth collection, Easter Eggs, deliberately unlisted on the front page — and it reached two members the same afternoon, because No. 47 paid a credit that was long overdue: the Kin collection exists because of a comedy channel whose author's name had never once appeared in this repository. And last, the first piece here that started as a request: someone asked for a zine on black holes, we searched everything we hold and found we had never written a word on them, and No. 48 came back with the number nobody mentions — the shadow in those famous images is about 2.6 times wider than the thing casting it. And then a third credit, which turned out to be the most expensive of the day: No. 49 set out to thank Terry Pratchett and found three attribution faults on the way — a method we had been using for years without naming its source, two ideas we had been crediting to the wrong author, and a passage we were quoting from a television adaptation while believing it was the book.

And then, last of all, the thing No. 48 exposed on the way past: nothing here had ever checked whether two pieces of text were sitting on top of each other. That is now a sixth gate, and its first honest run found the same fault, unnoticed, on four covers we shipped weeks ago.

SiteWe had five checks and none of them could see two words in the same place — the sixth gate, and the four covers it caught

No. 48 was built yesterday with three text collisions, and all five existing checks passed it clean. The cover motif's caption ran straight through the title; the motif's label stack ran through the ghosted issue number, and then, after a first over-correction, through the issue line; and one figure's two-line never / seen label overlapped itself. Every one was found by a person squinting at a screenshot.

None of the five was wrong to pass. The contrast tool measures colour, and both strings were perfectly legible — it has no opinion about where they are. The markup check reads source, where two elements three hundred lines apart have no spatial relationship at all. The search index read every word, because every word was there. One check is about paper, another about a file listing URLs. A collision is not a colour, not a tag tree, not a word, not a page count. It is a position, and until today nothing in this repository had ever looked at one.

The zine's own source even carries a warning comment — anything past y≈240 in this viewBox lands on the words — which is exactly the tell. A comment is a note to whoever reads that file next. It is not a control, and it does not run.

The hard part was not detecting overlaps; it was not crying wolf. A first attempt compared element boxes and buried every real finding under false ones, because the issue line is a full-width block whose text stops far short of its right edge — so a caption sitting in the empty half was “colliding” with a line it visibly clears. What ships measures where the ink actually is, one text node at a time, and shrinks each line down to the glyphs before comparing, because the empty space above and below a line of type is space its neighbour is entitled to use. Get that wrong and every zine cover fails on a tuck that has always been correct.

Then the sweep, and it is the reason the gate exists. Across all 102 pages and 55,193 measured pieces of text it found seven faults, and not one false positive. Four covers — No. 30, No. 27, No. 19 and No. 17 — had a motif caption rendered on top of the gradient word in their own title, unreadable, live, and unnoticed for weeks. That is the identical fault No. 48 made yesterday, which means it was never a one-off; it is a trap the cover layout sets. All four captions now sit in the band beside the issue line, which they clear.

The other three: on LYDTYSS, COMMUNITY is the one label in its list that is a single unbreakable word, so it overflowed its column and its last letters sat on the sentence beside it — the column is now wide enough for it, and every label reads on one line. On The Lines We Drew a chart axis was labelled light-years and the reader was getting ight-years, its first letter sliced off by the edge of the drawing. And on Why Difference Comes First a closing quote mark hung a hair past the same kind of edge.

What it deliberately cannot do is worth saying plainly. It checks one screen width, so a collision that only happens on a narrow phone is real and invisible to it. It does not check paper. And it does not check text over artwork — a label crossing a line or an arrowhead is a judgement about a picture, and still needs eyes at full size. The gate takes the mechanical part; it does not take the looking.

NewOne Atom of Justice (No. 49) — a credit to Terry Pratchett that turned up three attribution faults, two of them ours

We have cited Pratchett three times, always as fiction. What we had never said is that his witches taught us how to work. “First Sight to see what's really there, and Second Thoughts to watch the First Thoughts to check that they were thinking right” — that is Wintersmith (2006), it has been quoted on Stimpunks' If I don't help them, who will? page since 2024, and it describes this project's actual method better than our own documentation does. Discworld had never once been credited here as the source of how we operate. Same fault No. 47 found last week, different room: the citation habit points at claims, not at the book that taught you how to hold one.

Then the fact-check the credit owed, and it took a co-author's name back. The Science of Discworld books are Pratchett with Ian Stewart and Jack Cohen, and they are not blurred collaborations — the chapters alternate, Pratchett's Discworld narrative in the odd numbers, Stewart and Cohen's science in the even ones. So Pan narrans, “the storytelling chimpanzee,” comes from the science half of The Globe (2002). And lies-to-children is not Pratchett's at all: Cohen and Stewart had it in The Collapse of Chaos in 1994 and elaborated it in Figments of Reality in 1997, five years before a Discworld book carried it to a mass readership. Quote aggregators file every word of it under the one name that sells. Narrativium is genuinely his, built as a parody of phlogiston.

And the correction that changed the zine mid-build, which is ours and still live off-site. Death's speech in Hogfather was drafted here from aggregator wording and marked contested, because every route we tried ended at a quote site. Then Ryan opened the book, and the spread was rewritten to quote it verbatim. The novel sets Death's dialogue in small capitals and italicises show, little, rightness and become. The version circulating online — including in our own commonplace book and in the Becoming glossary entry at stimpunks.org — is cited to Goodreads and to a clip of the 2006 Sky television adaptation, and drops all of it. Right author, right novel, wrong typography, sourced to an aggregator and a screen adaptation. That is logged as an open item, because a fix here does not fix it there.

The book also handed over the argument. A few lines above the famous challenge, Death says the little lies are practice — “YES. AS PRACTICE. YOU HAVE TO START OUT LEARNING TO BELIEVE THE LITTLE LIES” — and what they are practice for is “JUSTICE. MERCY. DUTY.” That is lies-to-children arriving from the fiction side of the same book series, which no draft of this piece written from aggregators could have found.

Then the objection, aimed squarely at us. Grind the universe down to the finest powder and sieve it through the finest sieve and then show me one atom of justice, one molecule of mercy. Our masthead says you are made of star stuff and the universe loves you for it. [Corrected 15 Aug: it does not — see below. That sentence is a colophon on No. 1, the masthead tagline is Cosmic Connections, and the quote was truncated. Left standing here because a changelog records rather than launders.] The first half is nucleosynthesis. The second half is not in the atoms, and never was — which this site already knew (“a rhyme, not a proof”; that variation persists in nature is not why difference deserves welcome) but had never put in its strongest form and answered. The answer is Pratchett's: you need to believe in things that aren't true — how else can they become? Not a consolation, a construction schedule. The tagline is a promise we make, not a fact we found, which is a stronger thing to be: a fact you found could turn out otherwise, and a promise is only broken if we break it.

And this site now sends a header. In Going Postal the clacks towers carry an Overhead no customer sees; when John Dearheart died on a tower his father put the boy's name in it behind three letters — G, pass it on; N, do not log it; U, turn it around at the end of the line — so the name keeps going for as long as the network stands. Readers proposed the same for the network we actually have in March 2015, days after Pratchett died. Every response from starstuff.earth now carries X-Clacks-Overhead: GNU Terry Pratchett. It does nothing; that is the point, and it is the smallest door this site has. It is a reader convention, not his instruction or his estate's — said on the page, and in the config file. Eleven spreads, nine diagrams. The estate has no involvement and we did not ask. GNU Terry Pratchett.

NewThe Hatchery — twelve cosmic eggs, and a drawn door to replace the emoji at the foot of the front page

The Easter Eggs collection is the one collection with no section on the front page, which is the entire mechanism — a listed egg is not off the path. So the way in was an egg emoji in the footer credits, at 14px, wedged between “CC BY-SA 4.0” and “L★S”. Nobody read it as a door. It now has its own space at the bottom of the page, a drawn cosmic egg at 104px with a text label under it. Off the path is not the same as too small to see.

The drawings that lost are on a page too, and it is the more interesting half. The Hatchery is a specimen sheet of twelve, each carrying one thing we can check: the leatherback, which has no bony carapace and dives to 1,280 m on hundreds of irregular ossicles; the Arrau, filed as a silent animal until a hydrophone caught 2,122 sounds in eleven types, hatchlings calling from inside the shell and females answering; collagen rather than hydroxyapatite as the source of bone's piezoelectricity, which is the error our own Manifesto made twice; painted-turtle hatchlings supercooled below −10 °C, where survival turns on what touches them rather than how tough they are; and the double empathy problem drawn as two jagged edges that do not interlock, with the gap in neither half.

The world-egg motif is named and not retold. Hiraṇyagarbha in the Rigveda, the Ogdoad's egg at Hermopolis, Ilmatar's in the Kalevala, Pangu's, Ta’aroa's, the Dogon Amma — each stated at the level of “this exists here,” and none of them drawn. That is the line Field Guide No. 10 drew around its five turtles people made: a borrowed shape is not a borrowed belief. The page also declines the popular every culture had the same idea smoothing, because the resemblance is real and the explanation for it is not settled.

The door mark collides with our own argument, and the page says so instead of resolving it quietly. It began as a straightforward idea — make the crack a spiky profile — and No. 21, Not a Line is a case against exactly that: the profile beat the single severity dial but still plots peaks and troughs as distances from a baseline of neuronormativity, and a better chart is still a chart. Shipping a celebratory spiky profile on the front page would have parked the door one step behind our own argument. So the drawing keeps the jag and throws away the apparatus — no baseline, no grid — and what is inside the shell is a constellation, after Patrick Dwyer (2020) and Helen Edgar (2026).

And one drawing was cut for making a claim the physics does not support. A Clone Row of twelve identical eggs said a single crack “can run through every one of them without changing direction.” That is not how a monoculture fails: nothing propagates between separate individuals. The vulnerability is shared, so whatever defeats one defeats all and there is no resistant individual anywhere for selection to find. Ryan caught it in review. It was replaced rather than patched — by The Breathing Shell, an eggshell drilled through with thousands of pores, the only channels by which anything passes between embryo and world, where sealing the shell does not make a safer egg but a suffocated one. A picture that argues badly is worse than no picture, and this page is a page of pictures attached to claims.

NewThe Shadow Is Bigger Than the Thing (No. 48) — a community member asked for a zine on black holes, and the interesting number turned out to be the one nobody mentions

A reader asked for black holes. Before writing a word we searched everything we hold — every page in this repo, stimpunks.org, morerealms.com, autisticrealms.com, Ryan's highlights, the PDF library — and found nothing. No prior art to companion, no primary source already on disk, and no framing of Helen's to build on or credit. So this one was read from the literature this session, and the ledger says so.

Start with the thing most of the 2019 headlines got wrong. Nobody has photographed a black hole and nobody will. A camera catches light that left the subject; the event horizon is the surface where every outward direction has stopped existing. That is not a limit of our instruments — no better lens fixes it — and it sounds like the end of the enquiry. It is the beginning of it, because a thing that emits nothing still does a great deal to everything near it.

What the Event Horizon Telescope released is a shadow: the set of directions in which light that might have reached you went into the hole instead, ringed by light that passed far enough out to be bent around and escape. And here is the fact the zine is built on, which is exact geometry rather than an impression. For a non-spinning black hole the horizon sits at 2 GM/c² and the shadow's edge at 3√3 GM/c². Divide: the dark circle is about 2.6 times wider than the object casting it. Gravity does not merely hide the thing, it magnifies the hiding.

The instrument is the other half of the story, and it is a collaboration argument. Eight radio telescopes at six sites from Spain to the South Pole, ~3.5 petabytes written to helium-filled hard drives and flown to two correlators because no network could carry it — the Antarctic share stranded on a shelf until the winter ended. No site saw the ring; no site could have. Then four imaging teams worked blind to one another, on two different families of algorithm, because everyone involved knew exactly what they hoped to find. That is the same instinct as No. 39 and Too Good to Check: wanting a result is not a disqualification, failing to build a guard against wanting it is.

The turn comes in two halves, and the second is the one worth having. The warm half is familiar — some things are known only by their effect on everything around them, and the absence of a photograph was never evidence of an absent thing. But the geometry does not stop there, so neither does the zine: what people see of an unmet need is the disruption, not the need — and the disruption is the larger object, inflated by every year of bending and masking and quiet accommodation folded into it. That cuts both ways on purpose. Don't size a need by the wreckage; and the wreckage isn't the measure of you either. In physics the magnification is exactly 3√3/2 and you can divide it out. In a life there is no factor, which is precisely why you ask the person instead.

It ends on a guardrail rather than the warm note, because the comfortable misreading needed closing off on the page: unphotographable does not mean unfalsifiable. The collaboration pinned Sagittarius A* to 51.8 ± 2.3 microarcseconds without ever seeing it. Not being able to see something is not being unable to know anything about it — the evidence just arrives sideways. And the “Not:” set refuses the black-hole-as-person reading first and flatly: it is the obvious misreading, and leaving it implicit would have been cowardice.

Two corrections and a cut, made before it shipped. A draft credited the weak dependence of shadow size on spin to Physical Review Letters 116, 031101 — that is a different paper, by Johannsen et al. The claim belongs to Psaltis, Özel, Chan & Marrone, ApJ 814, 115 (2015), whose abstract gives the half opening angle as (5 ± 0.2) GM/Dc². Caught by checking an author list instead of trusting a search summary, which is the same failure that once put King's words in Baldwin's mouth here. And the mechanism usually given for that near-constancy — a cancellation between frame-dragging and the Kerr quadrupole — appeared in secondary summaries but could not be confirmed in a primary source, so it was cut from the page rather than hedged onto it. The zine states the measured constancy and calls it a quirk of the equations. The colophon records both.

And a render fault worth naming, because our five gates are all blind to it. Contrast measures colour, markup measures structure, and neither knows that two perfectly legible strings are sitting on top of each other. A one-off probe measuring bounding boxes in headless Chrome found three collisions: the cover motif's caption running straight through the cover title, the label stack overlapping the corner numeral block, and Figure 8's two-line label overlapping itself at 5.5px. Two further flags turned out to be false positives, confirmed by measuring the inked text extent rather than the box. Separately, one print failure was caught by the contrast gate — a label sitting inside a hardcoded dark SVG disc, which survives print because SVG fills are content, measuring 1.76:1 — and fixed by moving the label off the disc rather than recolouring it. Twelve spreads, ten diagrams. A rhyme, not a proof.

NewA Field Guide to Watching Animals (Field Guide No. 13) — sixteen animals to watch, with the papers underneath them

The companion catalogue to No. 47, and the watching list that produced half our animal writing, written down at last. Sixteen animals, each with a True Facts video and field notes taken from the primary literature. Twelve pair with something already published here and link back — the mantis shrimp to our Umwelt zine, five separate entries to the nervous systems guide, the crab to No. 31, the shark to No. 32, the acacia ants to Symbioses, the beaver to Minor Worlds. Four are new: the aye-aye, the sea cucumber, the nudibranch, and the hedgehog.

The table was pointed deliberately, and this is the part worth recording. No. 47 argues that the series never issues a verdict on the animal — so a sounds like / actually table aimed at the videos would contradict the zine it is a companion to. It corrects the popular verdict on the animal instead: disgusting, primitive, a mistake, bird brain. Those come from culture and from language, and the third column answers them. The page says so on its face rather than leaving a reader to work out why.

And one entry has no row aimed at a belief, on purpose. The aye-aye is killed in parts of Madagascar for what it is held to mean; running three columns over somebody's cosmology is the error Field Guide No. 10 refused with its five turtles people made. So the table there answers claims about the animal's body — the finger is a precision instrument, not a withered one — and the killings are stated plainly, outside the table, because leaving them out to keep the entry cheerful would be its own dishonesty.

Nothing loads until you press play. Each entry holds a still card rather than a live embed, so no request reaches YouTube until a reader asks for one — the same promise search makes about queries. It is also the difference between one page and sixteen simultaneous third-party embeds, and it keeps the two browser-driven checkers honest, since both reveal every entry to read it.

Two things about how it was made. The video ids were extracted from the playlist in a browser and then diffed against the finished file programmatically — not written from memory — because a wrong id is a dead embed that still looks entirely plausible, and a plausible wrong link is worse than a broken one. And the honest limits are on the page: hedgehog self-anointing is the thinnest entry here and says so, listing the competing hypotheses, picking none, and citing no study, because every source we could reach on the specifics was popular rather than primary. Ze Frank has no involvement and was not asked.

NewTrue Facts About True Facts (No. 47) — a credit our animal zines never paid, and the one thing nobody checked about a series called True Facts

Six zines here and three field guides exist because Ryan watched Ze Frank's True Facts with a young person in our community whose special interest is sharks, now studying to be a marine biologist. No. 32, No. 34 and Field Guide No. 9 already say who they were written for, and the whole Kin collection sits behind them. Until this page, his name appeared nowhere in this project at all. The debt slipped through for a reason worth naming: we are tedious about citing papers, and the citation habit points at claims. This one was a cause, and causes do not look like sources.

What we actually took is narrower than “it makes science fun,” and it took a while to see. Watch where the comedy points. It lands on the narrator, on human expectation, on the ridiculous names we gave things — and, in our reading, never once on the organism for being a defective version of something else. Ridiculous is not deficient. You can call a creature absurd, compare it to a household object, and in the same breath describe precisely and accurately what it is extremely good at. That is the same turn every field guide here makes with its “sounds like / actually” table — except our tables exist to take back a verdict somebody handed down, and True Facts simply never issues one. Same destination; one of us needs the apparatus. Flagged on the page as our reading of a body of work, not a measurement.

Then his own sentence, from Pamela Hill Nettleton's interview in U.S. Catholic (86:7, July 2021): “I like reminding people that we are flawed and wonderful. I like helping people feel less alone.” Flawed and wonderful, one breath, no ranking — not but, not despite. Which is close to what the neurodiversity paradigm says about human variation, arriving from a man narrating footage of a sea slug. He is not making that argument and the zine says so; we are the ones noticing the shape. Two attribution fixes before we built it: the quote reached us via Nettleton's own site, which is a reprint, so we cite the magazine — and the much-quoted “a kind of Mister Rogers of the internet for grown-ups” is her characterisation, not something he said about himself, so it is credited to her throughout.

The spread that made us pay proper attention is about direction. Sheela Clary's SUCCESS profile (2022) is blunt about the first outing — it “included neither truth nor facts” — and that format found an audience, at which point every incentive says make more of it, faster. He went the other way: full-time after leaving BuzzFeed by April 2019, videos longer and better-researched, footage from NOAA's public-domain archive and from scientists directly, named researchers thanked on the work. His account: “I was much more interested in the science part.” A comedy channel that discovered it liked the citations — and we are not going to pretend that isn't what happened here too. This site started with a poem about bones and now maintains an error log, a taxonomy of how facts go wrong, and five automated gates. Nobody plans that.

And then the fact-check the title owes. The origin of True Facts exists in three incompatible published versions. SUCCESS says the first instalment dates to 2013 and names Hedgehogs; reference sources say December 2012 and Baby Echidnas; the contemporaneous record has a hedgehog piece being blogged 16 November 2012, the echidna dated 7 December 2012, and a hedgehog Redo in April 2013. Our explanation — that a profile written nine years later, working from a catalogue where the redo is the surviving copy, lands on the right animal and the wrong year — is marked contested on the page and stated as an inference from upload dates rather than a finding. Not a gotcha. It is the ordinary way a story goes smooth, we have published worse and logged it, and the fix is the one the series would use on itself: look at what is on the tape.

It closes on why this is an easter egg rather than a front-page piece, said straight, because a credit that dodges it is worth less than none. True Facts is bawdy and we are not. The reason the register doesn't port isn't squeamishness — it is who is in the room: this site is read by people who have been laughed at, often about their bodies, often by someone who then explained it was affectionate. Same joke, same goodwill, different room. And explicitly not disapproval, because his register does work ours cannot — it buys fifteen straight minutes of real zoology from an audience that would never open a field guide, which is a genuine access achievement and not a lesser one. Two doors, same building. Eight spreads, six diagrams, a “Not:” refusals set. Ze Frank has no involvement in any of it, was not consulted, and has not seen it — every reading is ours and so is every error.

NewOut of Order (No. 37) — an apology to a number we held and never used, and the first piece in a new Easter Eggs collection

Count the zines here and you find a hole: Nos. 36 and 38 sit next to each other. This is the page about the hole, and it had to start by correcting the reason it exists. The brief was “we accidentally skipped 37, so here is an apology to the number.” We did not skip it. Our own decision log says, in writing, that 37 was assigned to a zine on 11 August, held back so a question could go to Helen Edgar rather than be assumed, and shipped two days later as No. 45 because seven pieces had taken the intervening numbers — “the number says when, and that gap is the rule working, not a renumbering.” So the gap was a receipt for a question asked, and building on the tidier version would have been the exact failure we catalogue, committed by us, in a piece about honesty, for a joke. The correction is spread two.

And the true story turned out to be the better one, because the number of the wait and the fraction of any search you are supposed to spend not choosing are the same 37. The optimal stopping rule says look at the first 1/e — 36.8% — of your options and reject every one however good, then take the first thing that beats them all; it finds the actual best about 37% of the time whether there are a hundred options or a hundred million. The Cloud Phase spent its looking time. The sequence recorded it as an absence.

Then the most famous 37 in the world, which is out of date. Carl Wunderlich published 37 °C in 1868 from over a million armpit readings across roughly 25,000 patients, taken with a foot-long thermometer that needed twenty minutes each. It was an excellent number. Protsiv and colleagues (eLife 9:e49555, 2020) put 157 years of American data together and found body temperature has been falling the whole time — 0.03 °C per birth decade, −0.59 °C in men born between 1800 and 1997 — putting the modern mean nearer 36.6. Nobody lied: a number was measured carefully, published honestly, then outlived the population it described and kept being taught. That is the number that went stale, the third of our own six ways a fact goes wrong, and the failure mode with no villain in it at all.

The spine of the zine is a refusal, and it is aimed at itself. Three 37s in a row — a temperature, a stopping fraction, and the number people apparently reach for when told to be random — and something in the head immediately starts reaching for a because. There isn't one. They have different units and are different kinds of object; 37 °C is 98.6 in Fahrenheit, where the coincidence evaporates entirely. A coincidence dressed as a mechanism is precisely the move No. 40 was written against, so spread five draws the connecting arrows and strikes them out. We are allowed to enjoy it. We are not allowed to explain it. The one genuinely people-shaped claim — that 37 is the most-picked “random” number, from a survey of ~200,000 responses run by Veritasium — is marked contested on its face, because it is a large self-published experiment rather than a refereed finding and every account of it we could reach is secondary.

What is left is the honest arithmetic, all of it checkable by hand in a minute, which is the nicest property a fact can have: 37 is the 12th prime and reverses to 73, which is the 21st; it is the third star number and 73 is the fourth, so a site built entirely out of starfields managed to skip the star number; 111 is 3 × 37; and every positive whole number that has ever existed is a sum of at most 37 fifth powers — the exact value of g(5) in Waring's problem, settled by Chen Jingrun in 1964.

The cost is stated on the page rather than in a footnote. Before this zine existed, the missing 37 was itself evidence — you could count the sequence and find the place where somebody chose to ask instead of assume. That evidence is now covered by a building. So the page carries a plaque: it is younger than No. 46, its own number is the least reliable claim on it, and spread eight marks that leap in How We Got Here's notation — borrowed for exactly one claim, on the grounds that a piece about its own honesty cannot leave its weakest link unlabelled. Every other gap in the numbering stays empty. An archive that gets edited stops being evidence.

It also opens the site's thirteenth collection, Easter Eggs — the first with no section on the front page, and the first created below the two-member floor we argued for when How We Got Here was deferred at one member. Both exceptions are stated on the collection's own face, along with what an egg is here: not a lower standard. Same sourcing, same grading, same ledger entry, same five gates. The only difference is where the doors are, and there are two of them in the footer of the front page, sitting among the ordinary links where they read as boilerplate: a bare 37 straight to the zine, and an egg to the collection. Both carry labels, so a screen reader announces them as plainly as it announces About or Search — an egg only sighted readers can find is not an egg, it is an exclusion. Nothing is hidden from the sitemap, the search index or the checking tools — a page the gates cannot see is a page that rots.

Fact-checkFour counts had gone stale — including one on the front page, and one still advertising a contrast failure we fixed a day earlier

Ryan noticed the README's zine table stopped at No. 27 and that it claimed search-index.json held 425 records when the real figure was over a thousand. Auditing outward from those two found more of the same, all of them numbers that were correct when written and then quietly stopped being true:

The front page's own collections lede said “Thirty-five zines, sorted after the fact into five collections” — it is thirty-six. Start Here described a reader arriving at “a wall of thirty-six zines and eleven field guides” — forty-five and twelve. The README said “all 44 Atkinson pages” are on Atkinson Hyperlegible Next; ninety are. And the front-page card for the design system was still promising readers “the contrast value that still fails” — a day after the sweep that took it to zero, which makes it the shortest-lived stale fact we have published.

All fixed, and the record kept honest in both directions: the identical phrasings inside dated changelog entries were deliberately left alone, because those describe what was true on the day and an error log that gets retro-edited is not a log. The README's counts now come with the command that re-derives them, and the record count is stated as “roughly a thousand” so it cannot go stale the same way twice. The lesson is the boring one: every one of these was written accurately and then outlived its facts, which is the same failure mode as 37 °C, three floors down in our own house.

NewCompanion Stars (No. 46) — what gravitational binding actually is, and the theorems that say no path can be solved alone

A star that shares a system with another star already has astronomy's own working word for it: a companion star. Helen Edgar's thirteenth constellation in My Monotropic Galaxy carries the same name — “the people who orbit close … who don't need me to perform and who just ‘get it’.” The plural is hers, and the zine follows it outward from one bond to a whole community.

But the fact it was going to open on turned out to be wrong, so the correction goes first instead. Everyone has met the line most stars are in binaries — the Sun is the odd one out. Charles Lada put the binary statistics beside the stellar mass function in 2006 and published the answer as his title: Most Stars Are Single. Two-thirds of main-sequence stellar systems in the Galactic disk have one star in them. The reason is arithmetic rather than romance — multiplicity climbs steeply with primary mass (~26% of M dwarfs, 44 ± 2% of Sun-like stars, near-total at the top), and the galaxy is overwhelmingly made of the small end. So the zine does not promise anybody their people, and it says so on spread three rather than at the end.

What is left is smaller and it holds all the way down. Sirius A and its white-dwarf companion orbit a barycentre lying in neither star, over 50.13 years (Bond et al., ApJ 840, 70, 2017) — and equal binding is not equal motion: the pull is symmetric, the displacement isn't, and the heavier body moves less. Then the spread that keeps the piece honest. A warmer version would say neither star has to change shape to stay in relation; that is false, and the way it fails is the most useful thing here. Close companions stretch each other into ellipsoids, then teardrops, then one shared dumbbell envelope with matter crossing between them. Proximity is not automatically good for a star. It is the wide pairs — bound out to a parsec, one orbit longer than the entire history of flowering plants — where both keep their shape.

And then the turn, which is theorems rather than interpretation. With two bodies you can write the solution down; with three you cannot, and not because it is hard. Bruns (1887) showed no further integrals algebraic in the coordinates exist, Poincaré (1890) closed off the single-valued analytic ones, and Sundman's 1912 convergent series converges far too slowly to compute or understand anything with. So these systems are stepped forward numerically, together — no one body's path can be solved on its own and the others added afterward. That same work is where chaos was found, and the zine holds hard to the part the popular word destroys: nothing is random. Every rule is exact and known, and the system is still unpredictable far out. Both at once.

Written after Helen Edgar and David Gray-Hammond — a first for the series, which has credited one person at a time until now. Spread seven rests on David's own coinages, used with his agreement: the Chaotic Self, “a fluid and moving entity, constantly changing and reshaping” (Munday & Gray-Hammond, 2023), and the Autistic Rhizome, “networks with no single point of origin … interlinked but not dependent on one another for their existence” (Gray-Hammond, 2023) — set beside Helen's Rhizome Array and Mycelial Stars. The tension between them is left standing rather than smoothed: the rhizome describes resilience (no node depends on another to exist, so cutting a tie doesn't collapse the network) and the three-body physics describes non-separability (while bodies are bound, their paths can't be worked out apart). Both true. Neither cancels the other, and a network can be one while a cluster inside it is the other.

Two things it deliberately doesn't take. No. 29 Only in Relation already owns Karen Barad's intra-action — relation before relata, an ontological claim — so this zine stays on separability, which is about whether a trajectory can be computed alone, and says so in place on spread six. And Helen's galaxy also holds Gravity Well and Dark Matter Field, left untouched rather than spending two of her namings in one piece.

NewMy Monotropic Galaxy (Field Guide No. 12) — a guest guide, and the first here with no reframe table at all

Helen Edgar had already built a field guide; she just hadn't called it one. My Monotropic Galaxy: A Constellation of My Autistic Self (More Realms, June 2026) is, in her own description, “a deep-field image of space, overlaid with constellation lines, accompanied by an index of 20 named features” — and her own section heading for the twenty is The Constellation Index. So this is a rehousing rather than a reformatting: her words, her numbering, her map, with Stimpunks building the page. Dark Matter Field is “the weight of neuronormativity before I had words for it.” Stellar Current is the heart of it, the deep monotropic flow where “my whole bodymind system exhales and time dissolves.” Time Drift is lived time “closer to superposition than sequence.” Emergence Point is what surfaces when something is ready, “trusted rather than forced.”

It carries no “sounds like / actually” table, and that is the argument rather than an omission. Every other guide in the collection has one, because that table is a machine for correcting a verdict somebody else handed down. There is no verdict in these twenty to correct. They are one person's naming of her own life. Field Guide No. 10 found this limit first and kept its five turtles people made behind a dashed border with no table, on the grounds that running “sounds like / actually” over somebody's cosmology would be obscene; this is that standing rule at full scale, and the first guide to carry it end to end. The collection page has been updated to say so, because the anatomy list there previously described the reframe table as universal.

It also answers a constraint Helen set plainly: “I wouldn't want it too technical though!” The answer is structural rather than editorial. Field-guide entries already render collapsed and open on a click, so the astronomy is not softened, it is simply not on the face — open a card and the real object is there. Galaxies rotating too fast for their visible mass. The quantum tunnelling without which the Sun could not shine. Pebble accretion, where millimetre grains turn out to be the mechanism that builds planets rather than the decoration. Ram-pressure stripping, where a galaxy runs out of what it needs because of the medium it is moving through and not because of any fault in the galaxy.

Two things the guide holds carefully. Helen writes that the twenty “are not separate entries in a list; they are interdependent, entangled and always in relationship with each other” — which is a direct objection to the form, since a grid of cards is exactly a list. So there is an index map, and it draws a line only where her essay states the relationship outright. The first version of that map was laid out in tidy numeric rows and had to be thrown away: the line joining 4 to 20 crossed half the figure, and the dashed group line ran straight through 11 and 12, putting two constellations into a group she never put them in. A diagram that asserts a relationship the source does not is a factual error, and no automated check on this site can see it.

And it ends where she ends. Her essay asks twice that readers make their own, and her chapter on the galaxy is forthcoming in a book called UNIQUE that was still open for contributions from neurodivergent people, diagnosed or self-identifying — “No artistic skill is needed. No particular way of writing.” That invitation is carried in full rather than reduced to a footnote. A printable blank sheet to draw one on was considered and deliberately not built in the same pass, so the guest guide could ship as Helen wrote it; it is now named on the collection page as the honest next thing.

NewThe Constellation Sheet — eighty stars, nothing joined, and a title with a gap in it

Field Guide No. 12 ends by asking readers to draw their own constellations, and we had nothing to hand them. This is a blank two-sided sheet built for exactly that, and it is the ninth piece in the Print rack. The face is a field of eighty stars with no lines drawn between any of them, under a title reading My ______ Galaxy — the gap being where Helen Edgar's reads Monotropic. That word is hers for her own experience and a blank sheet must not assume it of whoever picks it up. The reverse is a blank Constellation Index of ten numbered rows, not twenty, because twenty is her number and printing it would quietly turn a personal map into a quota.

It fails the first rule of what earns a broadside, and that is the interesting part. Every other sheet in the rack compresses an argument made at length elsewhere and inherits that piece's fact-checking. This one compresses nothing at all — it is a surface. So the Print collection page has been updated to say it hosts eight broadsides and two pieces that are not broadsides, alongside the typographic specimen that already sat there under the same kind of exemption.

One engineering decision carries the whole artifact. This site's starfield is a CSS radial-gradient, and browsers leave Background graphics off by default — the reason 44 pages here once printed blank. On every other page that is a cosmetic loss. On a sheet whose entire purpose is dots you join up, it would have printed an empty white box, which is not a blank sheet but a mistake. So every star is an SVG <circle>: content, not decoration. We printed it to PDF with backgrounds off and looked at the result rather than assuming — all eighty land on paper, on both A4 and US Letter.

The scatter is generated once from a fixed seed and pasted in literally rather than produced at page load, so that every printed copy is the same object and two people can talk about the same star. And check-sheets.mjs earned its keep twice: side B first overran its page box by 104px and side A later by 7px, both of which would have been silently clipped rather than paginated — a cut-off line on a sheet that still reports a clean two-page count.

Fact-check“Most stars live bound to another” — corrected in A Field Guide to the Ways of Being a Star

The Never Alone entry (Field Guide No. 5, shipped July 2026) asserted that “most stars live bound to another” and closed on “Most of the sky was never single.That is the smoothed popular version, and it is wrong. Two-thirds of stellar systems in the Galactic disk are single (Lada 2006), because multiplicity is a steep function of primary mass and the galaxy is dominated by M dwarfs, about three-quarters of which are alone.

The entry's own coordinate line — “~half of Sun-like stars have a partner” — was right the whole time; the prose around it generalised from Sun-like stars to stars and inverted the answer. That is exactly the failure mode this collection was built to argue against, and we did it to ourselves. Rewritten with the mass dependence stated and all three sources named (Lada 2006; Raghavan et al. 2010; Duchêne & Kraus 2013), the closing line replaced, and a dated correction note left on the entry's own face. Caught while researching No. 46 — which is the argument for the standing rule that when one source is found wrong, its siblings get re-checked for the same error.

2026 · August 13

Every contrast failure on the site was opacity doing a job that belonged to colour

The contrast checker had been reporting 110 failures for as long as it has existed, and we had been reading that number as the cost of the design. It wasn't. Cleared to zero across all 89 pages, on screen and on paper — and what the sweep turned up is that nearly every failure had the same cause. Somebody wanted a thing to recede, reached for opacity, and made it unreadable instead. One case genuinely was decoration, and got the site's first decorative exemption — written so that claiming it costs something.

NewThe Cloud Phase (No. 45) — astronomy's own name for the last stage of a remnant, and the discovery that the in-between is the long part

The story we get handed about a dead star ends about one step past the explosion: the shell expands, thins, cools, disperses into the interstellar medium, fade out. But the physics runs further than the sentence does. Romano, Behrendt & Burkert (ApJ 965, 168, 2024) followed remnants through their long cold decline and found the radiative phase divides into four stages — and they call the last one the cloud phase. Not the end phase. Not the dispersal phase. Once nothing is driving the shell and the pressure inside has fallen to match the pressure outside, nothing holds the cavity open, so the remnant falls back into itself and settles as a chemically enriched cloud. We did not go looking for a metaphor and bend the astronomy to fit. The astronomers got there first and wrote the word down.

That paper is the best image in the zine and deliberately not its spine. It is one 2024 simulation study, not consensus, so it is hedged in place on spread two the way we hedge the wood wide web — and nothing in the argument rests on it. The weight sits on a measurement instead. Murray (ApJ 729, 133, 2011) took the Milky Way's thirteen most luminous free-free sources, matched them to their host clouds, and asked how much of each had actually become stars: an ionizing-luminosity-weighted average of 0.08. Eight percent — in the brightest, most productive clouds in the Galaxy, the ones you would pick on purpose if you wanted star formation to look efficient. Ninety-two percent of the cloud never becomes a star, and since Murray gives the Galactic average as 0.005, the honest figure is nearer ninety-nine and a half.

Put that beside the other number in the same paper — a giant molecular cloud lasts 27 ± 12 million years, and the luminous clusters in that sample are actively tearing their host clouds apart — and the story turns over. The bright part is brief and it ends the cloud. The cloud part is long and it is nearly all of what there is. So the in-between is not the gap between the real states; it is the majority state, by mass and by duration. That is offered as fact, not as comfort: the refusal to rush the piece to a bright resolution isn't editorial restraint, it's what the measurements say.

Written after Helen Edgar, whose My Monotropic Galaxy maps the same stage from the inside — Supernova Remnant is her second constellation and it is burnout, “remnants of my old self entangled in new ways of being”; Emergence Point is her twentieth, “arriving in its own time, on its own terms.” With her Part 3 on recovery as re-assembly rather than return, and her gloss on the body without organs as “a soft loosening of pressure.” The physics agrees with her: a cloud never decides to collapse, it is collapsed upon — by gravity, by radiation, by the neighbours — so the honest question when one of us reorganises is what the pressure is and where it is coming from, not what is wrong with the person under it.

The care is the point, and it is where a piece like this usually goes wrong. It would be easy to run the astronomy together with Emergence Point and land somewhere warm — hold on, your star is coming — and the numbers forbid it. Most of the mass never lights. So the claim is smaller and it holds: the cloud is a real state, not a waiting room. A waiting room is defined by what happens next; a molecular cloud is defined by what it is. And it closes on something we refuse to tidy: aluminium-26 in the Allende meteorite proves something nearby and freshly dead was in our own birth cloud, but which star — a supernova, a Wolf–Rayet wind, or no single event at all — is openly contested fifty years on. We name the contest instead of picking a winner, and that refusal is on the page.

One thing worth flagging for anyone who checks our sources: Murray's arXiv preprint and his published paper disagree. The preprint says cloud lifetimes are 17 ± 4 Myr; the published ApJ says 27 ± 12. There is only one arXiv version, so it was never updated. We cite the published paper as the record — and the zine says so on spread six rather than letting a reader find the gap alone, because the free copy is the one most people will reach for.

NewYou Cannot Flatten a Sphere (No. 44) — a theorem from 1827, and what a single number has to throw away to be a single number

Try wrapping paper smoothly around an orange. It creases, always — and that is not clumsiness, it is forbidden. Gauss proved it in 1827 and liked the result enough to call it the remarkable theorem: a surface's curvature is intrinsic, so bending that doesn't stretch can never change it. You have used this today without noticing, because folding a pizza slice is the same proof held in one hand.

The consequence is that no flat map preserves everything. Every projection sacrifices area, angle, distance or direction — and Mercator chose angle in 1569 so a sailor could hold a bearing, swelling Greenland to the apparent size of an Africa roughly fourteen times larger. The distortion isn't the scandal. The silence is: the map never says what it chose, or for whom, and then it goes up on a classroom wall where nobody is navigating anything. Tissot's 1859 answer is the honest one — you cannot remove the distortion, so draw it, as a grid of ellipses showing what the map did to each place.

Then the turn. An IQ score, a support level, a functioning label each take a many-axis person and return one value — which is not a metaphor but literally a projection, so information was destroyed, the choice of what to destroy was somebody's, and the number never records it. And it is worse than a map: a Mercator keeps every place badly, while a single number doesn't distort the other dimensions, it deletes them. Ask what a summary was optimised for and you learn whose journey it serves. Closes on the gentlest thing the theorem gives — a globe has no edges, so being at the margin was never information about you, only about where somebody cut.

A note on where it was filed, because the decision is the interesting part. This was proposed as a seventh How We Got Here chain and rejected for it. Every chain in that collection has a documented handoff between its physics and its endpoint — Bessel's apparatus really did reach the classroom, Carnot's word really did arrive in Cubberley's textbook. Nothing in the history of IQ descends from Gauss's theorem; nobody carried it there. As a chain, that missing handoff would be one leap joint carrying the whole argument, which that collection's own rules forbid. In the founding Star Stuff register — one settled fact followed honestly — an analogy is the form rather than a defect. It's a companion to No. 21 rather than a repeat: that one asks what shape the thing is, this one asks what a reduction costs.

NewThe Elimination of Waste (No. 43) — a phrase that names, in the physics it came from, the one thing that cannot happen

The sixth chain. In 1824 Sadi Carnot proved that a heat engine has a hard ceiling on its efficiency — set by the two temperatures available, beatable by no engineer who ever lives — and with it that waste heat is not sloppiness but the fee. An engine with nowhere to dump it does not run. So “eliminate all waste” is not an ambitious goal not yet reached; it names the outcome the physics rules out.

Then the word left the engine room, and what it shed in transit was the ceiling. Raymond Callahan dates the crossing to the month. In July 1911, one month after Taylor's American Magazine series concluded, a school board member told the NEA that “scientific management” held a message for every teacher — and that if teachers did not voluntarily raise their efficiency, the business world would force them to. There is no claim about learning anywhere in it.

By 1916 Cubberley's textbook — the most widely read book on school administration of its generation — was listing what schools must take from the factory: good tools, specialized machinery, continuous measurement of production, and “the elimination of waste in manufacture.” Ninety-two years after Carnot, the phrase arrives in a book about children as a specification. By 1912 an educator was already complaining that teachers were “curiously protected in inefficiency” — the demand internalised inside a year, no longer needing to be imposed.

The best thing in the primary is a parenthesis. The 1912 editorial praised science for “reducing the fatigue in handling pig iron.” Callahan stops mid-chapter and adds: “(Incidentally, one wonders whether Schmidt would have agreed that experimental science had ‘reduced his fatigue’ in handling pig iron.)” A historian of education wrote this collection's entire argument in brackets in 1962 — the claim was about Schmidt's body, and Schmidt's testimony was not part of the evidence. It is the same shape as No. 40's empty harms column and No. 41's missing observers.

It ends at spoon theory (Christine Miserandino, 2003) — and then spends a whole spread arguing against itself. You are not a heat engine; the second law sets no productivity ceiling for a person; and deriving your right to rest from a steam-engine theorem is precisely the move this collection spends its time condemning. That joint is the chain's leap, and spread 13 says take the history and leave the analogy. What survives is narrower and documented: the word arrived carrying borrowed authority from a domain where it was bounded, and arrived without the bound.

One more smoothed retelling caught, this time in our own opening: Carnot reached his result from caloric theory, which was wrong. Clausius and Kelvin supplied the formula later. “Carnot derived the efficiency equation” is a tidy story about a messier event — the second founding anecdote this collection has had to mark contested, after No. 41's Leaning Tower.

Fact-checkWe said No. 42 carried the collection's first leap joint. It didn't — Nos. 38 and 39 got there first

Look for the Air shipped claiming, in seven places, that its leap joint was the first in the How We Got Here collection. That is wrong, and it is wrong about the very notation the collection uses to keep itself honest, which makes it worth more than a silent edit.

Counted from the pages: No. 38 carried one leap (Kelly's multiple-choice item → Pressey's machine) and No. 39 carried two (the Stokes bridge to interstellar dust, and the 1–2 metre distance rule). Nos. 40 and 41 carried none. No. 42 carries one.

The error came from generalising off the two most recent chains. Nos. 40 and 41 were genuinely leap-free, both said so in their colophons, and we flagged that run as something to be suspicious of rather than pleased about — then wrote "first in the collection" without going back to count 38 and 39. A claim about our own record, made from memory instead of from the record.

Corrected on the zine, both cards, and the earlier entry below. The collection page now prints the running tally — 43 documented, 12 contested, 4 leaps across five chains — and says on its face that the numbers are counted from the pages rather than remembered, because that is the failure this correction is about. The substantive point survives intact and is now stated accurately: leaps returned after two chains without one, which is what a working notation should do.

SiteA fade is not a hierarchy— 110 contrast failures to zero

Our own design system has said full-opacity body text, no faded greys since the beginning. The failures were the places that rule had quietly lapsed, and they had lapsed in the same way every time.

The manifesto faded an entire divider row to 0.3 — which was right for the two hairlines and wrong for the sitting between them, dragged down to 1.98:1 on screen and 1.88:1 on paper. Shorthand Evolution had two annotation rows at the same value, so D, T, Y dropped and Y becomes U — real explanations of how the phrase compresses — measured 1.86:1. And Bone Song faded its drop cap to 0.8, which reads as a typographic flourish until you notice that a drop cap is the paragraph's first letter, so it is body text and the rule was always meant to cover it.

The fix in each case was to move the fade onto something that isn't text — the ::before/::after rules, which are decoration — or to drop it and let a quieter colour carry the subordination instead. Rules, hairlines and shapes can whisper. Glyphs cannot.

Two more, both structural rather than local. Seven captions inside the cover-art motifs failed because the motifs run at opacity: 0.7–0.75, and a violet or pink label cannot reach 4.5:1 through that veil — even at full strength, where violet tops out at 4.46:1. Raising the motif's opacity would have meant retuning the artwork, so the labels moved one rung up the same Tailwind ramp instead, 400 to 300, landing near 5.7:1 without leaving the documented palette. And in print, SVG labels now take #111111 rather than the #222222 body text takes: a diagram label often sits on a coloured shape that survives print because it is content, and on the elements guide the C, Fe and I discs put the old ink at 4.16–4.24:1 — under the line by a hair, while the same ink on bare paper is 15.9:1. One shared rule reaches every such shape; darkening each disc would have chased them one at a time and missed the next one.

SiteThe one thing that really was decoration — and what it cost to say so

Eighty of the 110 failures were a single element: the ghosted issue numeral in the corner of forty zine covers. It restates a number already printed at full contrast two lines below it — Zine No. 30 — so it is a watermark, not a label. Reaching 3:1 would have taken it from opacity: 0.15–0.26 to 0.44–0.57, which is not a fixed cover, it is a different cover.

So it is exempt under WCAG 1.4.3's pure decoration clause. The interesting part is the two conditions we put on claiming that, because a decorative exemption is the easiest kind in the world to abuse. First, the selector list in the checker is explicit and one item long — there is deliberately no “anything marked aria-hidden” rule, because that would let any future failure vanish by adding an attribute. An exemption should be a decision somebody wrote down, not a mechanism to fall into. Second, an element must also be aria-hidden before the tool will honour the claim: text a screen reader still announces is not decoration. Marking all forty fixed a small separate rudeness in passing — those covers had been announcing a bare “30” before the title.

Both exemptions — this one and the disabled prev/next buttons — print on their own lines and are counted, never summed. Two allowances added together read as one small concession; kept apart, a number that grows is a number somebody can question.

What this changes about the checker is that it is now a real gate. A tool whose baseline is 110 is a tool you have to read past to find the number that matters, and that is a tool that stops being read — the same failure that let ninety pages print blank titles while a 196-entry list said check these by eye. All five gates now hold at zero.

2026 · August 12

We went looking for a table of contents and found forty-five pages printing their titles blank

A question about the front page — why is there nothing to skip down to? — turned into two findings, the second much larger than the first. The front page had no heading elements at all, so a screen reader’s headings list came back empty on the landing page of an accessibility-first site. And checking whether the new heading would print found ninety headings across forty-five pages that had been printing blank on paper the whole time, the wordmark among them. Then the eighth collection page: a landing page for the field guides, which turn out to be sorted by something none of the other collections sort by — and which caught us wrapping a correct attribution around an article number we had invented. And then the last three, so that every section of the front page now has somewhere to elaborate — which meant admitting why a site built on links has a Start Here at all, untangling the head of the reading chain, and finding that one zine had never been in the sitemap. And last, every piece got a badge naming its collection — after a measurement that killed the obvious way of doing it — and the sitemap audit became a real check, minus the one test that would have made it useless. Then a new zine that is a new kind of zine: a chain, in the manner of James Burke, which meant working out how to publish the weak links rather than smooth them — and which corrected two things in the Stimpunks essay it grew from.

Fact-checkIron has two parents, and our own field guide said otherwise for three weeks

Field Guide No. 2 said that everything heavier than iron, “and most of the iron itself,” comes from the core-collapse supernova it had just described. Roughly half of it doesn't. About half the iron in the universe — and so about half the four grams in your blood — is scattered by Type Ia supernovae: white dwarfs that pull in enough matter from a companion to detonate. Per Kobayashi, Karakas & Lugaro, ApJ 900:179 (2020).

We had already corrected exactly this, on 3 August, in Zine No. 2. The uncomfortable part is why it survived here anyway. A sibling sweep on 9 August did touch this file — but it was a targeted fix for a different claim, the hydrogen-versus-helium slip, and was recorded as targeted. Nobody re-read the file for the iron correction from six days before. Two sweeps, two claims, one file, and the second did not imply the first. “We checked that file” is not the same as “we checked that file for this.”

Swept again properly this time. Every other iron claim on the site is generic — forged in a dying star, from stars and their deaths, calcium and iron from supernovae — and all of those are correct, because a Type Ia is a supernova and is a stellar death. The field guide's “most of the iron” was the only false sentence. Sagan's “interiors of collapsing stars” is a verbatim quotation and stays as he wrote it.

What found it was building the broadside below. Giving each element a one-line forge label forces every origin into its shortest form, and “supernovae” for iron does not survive being set on the same sheet as a panel headed Type Ia. Compression as a checking method — which is the opposite of what you'd expect compression to do.

NewThe Star Stuff You're Made Of — the periodic table as autobiography, on one sheet

Eighth sheet in the print rack, and the one most likely to end up on a wall. Eight elements on the face with their house names, their abundances and their forges — The First Light, The Weight of You, The Scaffold, The Borrowed Letters, The Bone Note, The Death Rattle, The Spark, The Rare Catastrophe. The reverse walks the five forges in order: the Big Bang, aging stars, massive stars and core collapse, Type Ia, and the neutron-star mergers that made the iodine in your thyroid and the gold in the ground.

It was held back twice, and the reason is worth stating. The rack's third rule asks that you can name the moment someone reaches for a sheet, and “a kid's bedroom wall” is a placement, not a moment — which is what makes something a poster rather than a broadside. It ships because the moment turned out to be nameable after all: you want to hand someone the fact that they are made of star stuff, and you want them to be able to check it. The face is the gift. The verso is the checking. A poster would stop after the face.

NewBetter Get Used To It — a broadside for the sentence that ends every accommodation argument

Seventh sheet in the print rack, and the hand-out companion to Zine No. 34. The moment is the meeting where somebody says the real world won't wait and expects that to end it. BGUTI — Better Get Used To It — was named by Alfie Kohn in Education Week in 2005, and both of his sentences are on the face, verbatim: the defence “almost by definition… ignores developmental differences,” and people don't get better at coping with unhappiness by being deliberately made unhappy young. Early adversity is not a vaccine.

The title is the doctrine in quotation marks, and that is deliberate. A face reading “the real world won't wait” unmarked looks like agreement from across a room — which is exactly the distance a broadside is read from. So the sheet names the doctrine as a quoted thing and refutes it in the largest type on the page.

The reverse inherits No. 34's structural safeguard, and the stylesheet says it must not be reordered. That zine puts its conservation alarm — a shark that takes about 156 years to reproduce cannot replace what we kill — before any application to people, so the cost of slowness lands before its consolations. Side B does the same: the bill comes before the moral. Get that backwards and you have the slow-is-beautiful poster No. 34 says outright it is most at risk of becoming.

Which made the space problem interesting. Side B came in 116 pixels over, and the refusals are the longest block on it — but two of them, not slow is better and not a reason to skip support, are the ones that stop the whole sheet inverting. All five were kept and shortened instead; the space came from merging two figure items, dropping an inline quote, and trimming the sources. The rule is now written into the sheet's own header for whoever edits it next: if you need room, take it from anywhere but the refusals.

NewLook for the Air (No. 42) — physics spent two thousand years deleting character from its explanations, and an industry put it back

The fifth chain, and the last of the run. Aristotle explained falling by what a thing is: heavy bodies seek the centre because it is in their nature. It is not a foolish theory — go outside and test it and every prediction checks out, because everyday observation happens in air. The error is not in the observations. It is in where the explanation was put.

Galileo showed the rule contradicts itself — tie a heavy body to a light one and the same premise predicts both faster and slower — rolled balls down inclined planes, and made the strange move of reasoning about a fall with no medium at all. Newton finished it: acceleration is set by the forces acting plus one scalar property, and disposition disappears from the account entirely. Arguably the most productive move in the history of physical science was deleting character from the explanation. Then on 2 August 1971 David Scott released a geology hammer and a falcon feather together in the lunar vacuum, and they landed together. The difference was never in the feather. It was in the air.

Mindset marketing runs that road backwards. And the sharpest thing in the zine is an objection answered: didn't behaviourism already make the Newtonian move? No — it moved the explanation outward and then put it straight back in a box around the individual. The "environment" in an operant account is the reinforcement schedule arranged around this one child. Housing is not in it. Hunger is not in it. You get the worst of both: no interior life, and no structure either.

The self-esteem story is worse than the usual telling. California's task force commissioned its own research, and the resulting University of California volume reported that the associations between self-esteem and its expected consequences were “mixed, insignificant, or absent.” The final report shipped in 1990 regardless. That is not a failure to check — they checked, they paid for the checking, and it changed nothing. Growth mindset fails the same way across 63 studies and 97,672 participants, with higher-quality studies less likely to show benefit, and both Dweck and Duckworth objected to the deployment while it kept growing. Then the dashboard: a schema with fields for effort, focus and behaviour points, and no field for the room.

And this chain has a leap in it again — the first since No. 39. Nos. 40 and 41 had come back with only documented and contested joints, and the colophons flagged that as suspicious rather than impressive. Here the notation fires all three, and the leap is the sentence a reader most wants to be true: remove the barriers and the difference vanishes, the way it vanished on the Moon. We don't claim it. The strong version is actively harmful — if gaps must vanish once barriers are gone, a persisting gap becomes proof the barriers are gone, which is deficit ideology by a longer road. It would also contradict the rest of this site, which exists to say human variation is real and not a defect.

Fact-checkThe quote about causes becoming rackets is itself a corrupted quote — and we had used it

Writing No. 42 we reached, as everyone does, for Eric Hoffer: “Every great cause begins as a movement, becomes a business, and eventually degenerates into a racket.” It is a misquotation.

What Hoffer wrote, in The Temper of Our Time (1967), essay “The Negro Revolution,” is: “What starts out here as a mass movement ends up as a racket, a cult, or a corporation.”

The edit is not cosmetic. The circulating version converts three parallel outcomes into a three-stage moral decline — inventing an arc from purity to corruption that Hoffer never described — and drops the specificity of here, turning an observation about America into a universal law of causes. It is more quotable in exactly the direction that makes it feel true.

A quote about how movements get corrupted, corrupted in transmission. Our own We Don't Need Your Mindset Marketing — the essay this zine grew from — uses the smoothed form, so this is logged in FACTCHECK.md as open on stimpunks.org rather than fixed from here. The zine prints both versions side by side rather than quietly using the right one, because the correction is a better illustration of its own argument than the quote was.

NewA Conquering Gaze from Nowhere (No. 41) — you only get depth by moving, and a view from nowhere cannot measure anything

The fourth chain. For roughly two centuries the strongest objection to a moving Earth was that the stars showed no parallax — valid reasoning from careful data, defeated by distances nobody would credit and by a telescope quietly drawing its own diffraction artefacts onto the sky and handing them back as stellar diameters. In 1838 Bessel measured 61 Cygni at 0.3136 arcseconds: a two-centimetre coin seen from thirteen kilometres.

The method is the argument. The baseline is the observer's own displacement across Earth's orbit — so a viewpoint with no location has no baseline, no angle, and no depth. The view from nowhere is not a purer vantage; in the one domain where we can check it exactly, it is the blindest available position. And it is the same Bessel, at the same observatory, who gave us the personal equation in No. 38. Twice, from opposite directions, one man showed that knowledge requires a located, particular observer.

Every rung of the distance ladder above parallax is calibrated by the rung beneath it — and rung two was built by Henrietta Swan Leavitt, employed at Harvard as a “computer,” paid by the hour, not permitted to observe. Her period–luminosity relation appeared in Circular 173 under her director's name, opening “has been prepared by Miss Leavitt.” That is the third woman in three chains to do the work and lose the byline, after Cretyl Mills and Mildred Wells in No. 39, so the zine stops and names all three on their own spread — with a note saying plainly that treating three cases as a pattern is our reading, not a demonstrated law.

Reading Haraway at the primary changed the zine twice. She is popularly taken to be attacking objectivity; the essay says the opposite in a sentence she marks as its moral — “only partial perspective promises objective vision.” Situatedness is the precondition of objectivity, not its refutation, which is parallax stated as epistemology. And she refuses relativism at least as sharply, calling it “a way of being nowhere while claiming to be everywhere equally” and naming relativism and totalisation both as god tricks. Most secondary accounts drop that guard rail entirely; without it this zine would collapse into “everything is subjective,” which is precisely what it argues against.

It lands on WEIRD sampling — 96% of behavioural-science samples from Western industrialised nations, 68% from the US, published as facts about humans — on research done on Autistic people rather than with them, and on double empathy as a finding that only exists because somebody stood at the other end of the baseline. The correction is neither removing the observer nor declaring all views equal. It is Bessel's answer, twice: publish your coordinates.

Fact-checkA correction to this page: we said the header bug was fixed, then shipped it twice more

The entry below, published earlier today, reported that the .ss-nav placement fault had been “fixed on both” Nos. 38 and 39. That was true when written. What it implied — that the fault was dealt with — was not: No. 40 shipped with the same bug reintroduced, and No. 41 was written with it too. Four occurrences, twice after we announced a fix. Ryan caught it on the live page again.

The fault: .ss-nav placed outside the centred content shell, so the header runs the full width of the window while the page beneath it stays in an 820px column. Both are now fixed and all four chain zines verified.

So it stops being a promise and becomes a gate. tools/check-markup.mjs has a fourth check: a page with a content shell whose .ss-nav sits outside it now fails. It is the one check in that file that is a house convention rather than a parser repair, and it earns the place on the same grounds as the others — no other gate can see it. Contrast passes because the text is legible, the tag tree is valid, the sitemap and chain checks never look at layout, and a DOM query finds a perfectly well-formed nav that is simply in the wrong parent. Regression-tested against the real fault reproduced from No. 40, with broadsides and playlists — which legitimately have no shell — confirmed as passing. Repo-wide: 85 pages, zero problems.

NewFive Sigma (No. 40) — physics demands one-in-3.5-million odds to say a particle exists; we use one-in-twenty to decide a child must be changed

The third chain, and the one that states what this collection is for. Particle physics will not permit the word “discovery” below five sigma — a p-value of 3 × 10⁻⁷ — and the reason is empirical rather than principled: too many 3σ and 4σ results kept evaporating, so the field raised its own bar against its own enthusiasm.

The thing almost nobody outside physics knows is that Lyons argues against the uniform threshold. His section is headed “Why not 5σ?”, and he publishes a table grading required significance by degree of surprise, impact, look-elsewhere effect and systematics: single top production 3σ, the Higgs 5σ, supersymmetry 7σ, faster-than-light neutrinos above 8σ. He also prints the statisticians' objection that his own gold standard is unsound, and concedes it “may well be valid.” A field that publishes the case against its own gold standard is doing science.

Against that stands p = 0.05 — about 2σ — which Fisher chose in 1925 with the word convenient. The gap is roughly 170,000× in tolerated false-positive rate, and the asymmetry runs backwards: if physics is wrong, a paper is retracted and the particle was never harmed; if we are wrong, the childhood already happened and there is no more data to collect.

Run Lyons' four dials on “this intervention should be applied to this child” and every one reads high — by his own table, past 7σ. Then the systematics column turns out not to be large but empty: Bottema-Beutel, Crowley, Sandbank and Woynaroski reviewed 150 intervention studies for young Autistic children and found 11 that mentioned adverse events at all. You cannot underestimate a systematic by a factor of two if you never assigned it a number; an unmeasured harm enters the arithmetic as a zero.

Two things the zine does to itself. The central move — borrowing a physicist's framework for a human question — is ours, not Lyons', so it is marked contested and spread 11 argues the four strongest objections against it at full strength rather than hedging in a footnote. And this chain has no leap joints at all: eleven documented, two contested. That is unusual here, and it is reported rather than tidied away, because it means every gap in this one is published and counted rather than inferred.

SiteWhy we make chains, written down at last — and a summary that nearly inverted a zine

How We Got Here now opens by saying what it is for, in Ryan's framing: reclaim science from pseudo-science, scientism, and smoothed popular misrepresentation. Eugenics and behaviourism did not fail by being too scientific — they took real mathematics and applied it to human beings without the discipline that made it work. Scientism keeps the authority and drops the practice: the p-value and the phrase “evidence-based” without pre-registration, blinding, reported harms or published nulls. Pointed at people, these flatten exactly the variation the science elsewhere insists is real, and produce epistemic injustice with a citation attached — much harder to answer than a plain insult. A chain here is never an argument against evidence. It is an argument for the parts left behind.

And a working note worth publishing, because it is the same failure this collection keeps documenting. Building No. 40, the automated summary of Lyons' paper reported that he “does not argue the threshold should vary by experiment.” That is the precise opposite of his thesis — his abstract asks whether “a more nuanced criterion might be better” and his third section is headed “Why not 5σ?”. Reading the actual PDF caught it. Had the summary been trusted, the zine would have argued the inverse of its source while citing it approvingly: a smoothed retelling of a paper about why smoothed thresholds are dangerous. It is logged in FACTCHECK.md as the reason the primary gets read, every time.

NewFive Microns (No. 39) — Wells said one hundred, and the number that ran infection control said five because it was answering a different question

The second chain, and the one that proves the form. In March 2020 the WHO posted “FACT: COVID-19 is NOT airborne” and called the alternative misinformation; the CDC did not use the words “airborne” or “aerosol” until October. Nobody lied. It was doctrine, faithfully applied, resting on a number that had quietly changed jobs.

William Wells put the boundary at 100 µm — the size where a droplet falls to the floor faster than it evaporates. Below it, what is left is a nucleus that stays up; his own table gives a 1 µm particle sixteen hours to fall two metres. His 1934 papers never mention 5 µm. That figure came from a different field asking a different question: industrial hygiene in the 1930s and 40s found that only 1–5 µm particles reach the deepest lung — deposition, not suspension. Alexander Langmuir fused the two in a 1951 lecture preparing public-health students for biological warfare, months after the Korean War began, and stated the droplet/aerosol distinction outright in 1964.

And the historians who reconstructed this refuse to solder the joint — which is the best thing in their paper and the centre of the zine. Randall, Ewing, Marr, Jimenez and Bourouiba (Interface Focus 11(6), 20210049, 2021 — titled, remarkably, “How did we get here”) write only that the deposition focus “likely” popularised the cut-off, with “no association made explicit in any of the literature we reviewed.” The single most consequential link in seventy years of infection control is one careful historians will only call probable. The zine marks it contested, because firming it up would commit the exact error it is describing.

Two findings from the paper that ought to be better known. Flügge's team in Breslau had the answer in the 1890s: colonies 2 m from speakers, 4 m from coughers, 9 m from sneezers; “droplets” meaning all respiratory emissions, wet or dry; plates left five hours before collection because they knew things stayed up; and a recommendation to ventilate. Someone gargled a broth culture and recited Shakespeare into the empty House of Commons — plates grew over 21 metres away. And the 1–2 m rule has a separate lineage entirely, which the paper calls puzzling: when photography made emissions visible in the 1940s, the observation window was 1–2 m wide. The danger zone was the size of the viewfinder.

The zine ends where it has to. Cretyl Mills carried the multi-year experiment that finally proved airborne TB transmission, contracted TB, and appears in the source paper's own figure of key contributors as “not pictured” — as does Mildred Wells. Both are named here on a spread. Then the rest of us: told that asking about ventilation was catastrophising, by institutions whose confidence rested on an inferred citation.

SiteA twelfth collection — How We Got Here — and a header we shipped broken

Two chains now exist with the same shape, the same notation and the same ending, so they get a page. It sorts by form, not register — the fourth collection to do so, after Field Guides, Print and Sound, and like them it says so on its own face rather than letting the odd axis read as an oversight.

The page was deliberately deferred that morning and built the same afternoon, and the reversal is worth stating plainly rather than smoothing over. The deferral was right in principle — collections here are observed, not planned, and eleven of them were noticed only after thirty-five zines had accumulated in no folders at all. But the principle was already satisfied: No. 38 was built with no collection in view and the form was noticed afterward. What settled it was a precedent that had been missed — Stars We Grew Up On has carried two numbered zines since 11 August. Two is the floor here; “wait for three” was an invented number. Ryan spotted the forcing function: No. 39's second spread says “Their paper is called ‘How did we get here.’ So is this collection” — so shipping without the page would have put a live artifact on the site pointing at nothing.

And the header on both chain zines shipped broken. No. 38 went live on 12 August with its .ss-nav placed outside the centred content column instead of inside it, so the nav ran the full width of the window while everything beneath it sat in an 820px column — flush to both edges, unpadded, misaligned with the page it belonged to. Every other zine on the site has the nav inside the shell. Ryan caught it on the live page. Fixed on both, and worth recording because none of the five gates could see it: contrast passed (the text was legible), markup passed (the tree was valid), the sitemap and chain checks do not look at layout. A structural placement error inside otherwise-correct markup is a gap in the tooling, not just a slip.

NewEight Tenths of a Second (No. 38) — a man fired in 1796 for having a different nervous system, and the two-hundred-year road from there to the ABA table

The first zine built as a chain in the manner of James Burke's Connections — one link per spread, running from a transit clock at Greenwich to the ed-tech dashboard, with a second rail alongside it from Galton through Kraepelin to the DSM. The two meet in 1987, at a table with a child at it.

The opening fact. David Kinnebrook was an assistant at the Royal Observatory from 23 May 1794. Bradley's eye-and-ear method asked him to watch a star cross the meridian wire while counting the clock's beats aloud and judging where between two beats the crossing fell — of which Maskelyne wrote that "a good ear seems, in this kind of observation, to be almost as useful as a good eye." In his published observations the Astronomer Royal recorded that his assistant had "began, from the beginning of August last, to set them down half a second of time later than he should do," and that in January 1796 "he increased his error to 8/10ths of a second." He was dismissed on 12 February 1796, and died in 1802, aged about thirty.

And the answer astronomy actually gave. Bessel established that observers differ from one another systematically — stably, not by carelessness — and the discipline's response was the personal equation: publish a constant for each observer, add it to their readings, keep the observer. The variation went into the model, and the science got more accurate for it. School inherited the same measuring apparatus and made the opposite choice. Accommodation is not a modern concession bolted onto a rigorous system; it is what the more rigorous discipline did with this exact finding two hundred years ago.

What is new here is that the joints are published. A Burke chain is the most seductive form there is — it is built to feel inevitable — and the house standard is to verify everything, so the two are in tension. The zine resolves it by marking every one of its ten links on its face: documented, contested, or leap, with the line style in the running chain spine encoding the same thing. Six are solid, three dashed, one dotted. Its own founding anecdote is the first contested one, deliberately — the tidy story that runs Kinnebrook's dismissal straight into experimental psychology is under active revision (Matthew D. Lund, Isis 116(3), 2025), and we have not been able to read that paper at the primary, so the zine says so in place rather than quietly leaning on a summary. A chain that hid its weak links would be a better story and a worse object.

Fact-checkTwo corrections to our own essay, found by going past it to the primaries

No. 38 grew out of The Road to Neuronormative Domination on stimpunks.org. Our own site is a lead, not a citation, so every borrowed quotation was re-traced — and two did not survive.

Cubberley's factory sentence is 1916, not 1905. "our schools are, in a sense, factories, in which the raw products (children) are to be shaped and fashioned into products to meet the various demands of life" is from Public School Administration (1916), p. 338 — the standard administration textbook of its era — not from his 1905 dissertation, as the essay gives it.

Thorndike did not develop multiple-choice testing. Frederick J. Kelly did, in 1914, in the Kansas Silent Reading Test, written while completing Teachers' Marks, Their Variability and Standardization at Teachers College. Thorndike's contribution is the credo and the apparatus, which is quite enough to carry the argument without borrowing Kelly's.

Both errors are outside this repo, on stimpunks.org, and are logged in FACTCHECK.md as open there rather than fixed from here. We are naming them now instead of waiting to announce them alongside a fix.

Two more things the re-tracing changed. Lagemann's famous line is more careful than its reputation: she wrote that she had "often argued to students, only in part to be perverse," that Thorndike won and Dewey lost. It is a provocation, and the zine passes it on as one. And the addendum — "Seymour Papert lost and B. F. Skinner won" — is Audrey Watters', from Hack Education, 18 October 2018; Ryan's "Skinner won, Papert lost" is his own reformulation after her, and is credited that way rather than quoted as hers. We also guarded specifically against re-importing the pathology paradigm misattribution we corrected at No. 9: the term is Nick Walker's, and Chapman works with it.

NewNobody Got His Eyes Right — the Bowie rack, and the two things everyone knows about him that aren't true

The fourth rack on the Sound shelf, and the long version of the five Bowie cards that open the L★S Playlist. Thirty-one songs from Space Oddity to I Can't Give Everything Away, arranged as a career arc rather than by theme, and the listening companion to Turn and Face the Strange (No. 12).

He did not have different-coloured eyes. This is the most-looked-at face in pop music and the one fact everybody repeats about it is wrong. Both irises were the same colour. In February 1962 his schoolfriend George Underwood punched him in the left eye over a girl; a fingernail caught the eyeball and paralysed the muscles that contract the iris, so that pupil could never close again. A pupil stuck wide is a hole full of shadow, which is why the eye reads darker in exactly the bright light where a working pupil contracts — under stage lights and camera flashes, which is where nearly every photograph of him was taken. Anisocoria, not heterochromia.

And the correction is not pedantry, which is the reason the page exists. It changes what kind of thing the famous feature was. Heterochromia is a variation you are born with; this was an injury, reportedly with lasting consequences for his depth perception. Sixty years of writing about that eye and almost none of it about light sensitivity or what it takes to perform under those conditions. Glamour is not an accommodation.

Then the second thing everyone knows: the constellation named for him in 2016 is not a constellation. There are 88, the IAU fixed the list in the 1920s, and the Belgian observatory that made the tribute said plainly it was an invented asterism. Both errors lean the same way — heterochromia is prettier than a punch in the eye, an official constellation grander than a radio station's gesture — and both round something real up into something more elegant, which then travels further than the truth did. That is Too Good to Check with a soundtrack.

One thing we did to ourselves on purpose. The essay also corrects the story of Ziggy's retirement at Hammersmith on 3 July 1973 — you often read that he told nobody, when in fact Mick Ronson knew and it was most of the band who were blindsided, not all of it. Making a story marginally less punchy is a small price on a page whose whole first half is about anecdotes getting rounded up.

UpdatedSound — recounted, and a to-do item we refused to quietly delete

The shelf is now four racks, 121 cards, 117 distinct titles, with 95 embeds resolved through the oEmbed endpoint to date. Both the card count and the title count are printed, because they differ and rounding the awkward one away is how numbers go bad.

Two edits the page makes about itself. Its What is not here yet section had listed a Bowie rack as not started — and rather than delete the entry now that it exists, the page records that one of its own to-do items got built. A list you quietly rewrite once the work is done stops being evidence of anything. What remains on it: a happy-flappy and stim-dancing rack, still not started, and honestly flagged as not obviously clearing rule one.

And the Two pages, one piece of physics section now says that the third essay did not join in. The punk rack found overtones and the AURORA rack found emission lines, and those turned out to be the same fact; the Bowie rack went looking for its own and came back with optics and an anatomy correction instead. Three essays, two convergences, one that went elsewhere. A pattern you have to push into shape is not one you observed, so the page reports the miss rather than stretching to cover it.

SiteThe front page had no headings at all — and forty-five pages printed their titles blank

Ryan went looking for a table of contents on the front page and didn't find one. Looking for why turned up something worse: index.html had no heading elements whatsoever. The wordmark was a styled <span> and all twelve section labels were <span>s without ids. For a screen-reader user the headings rotor is the table of contents — press H, jump to the section — and on the landing page of a site that puts accessibility first, that list came back empty. Nothing on the page could be linked to either: no #kin, no #field-guides, no way to hand anyone a link to a collection.

The wordmark is an <h1> now and every section label an <h2> with an id, styled to look exactly as before. Above them sits a two-tier jump strip: the seven top-level sections, then the five collections, each pill tinted with the same accent its heading and rule already carry, so the pill you press and the row you land on are the same colour.

Then, checking whether that new <h1> would print, a much larger fault fell out. Ninety elements across forty-five pages printed blank on paper. Where a heading paints itself with a clipped gradient — background-clip: text plus -webkit-text-fill-color: transparent — the fill property beats color outright. So the print block forcing every colour to ink left those glyphs transparent, and since backgrounds don't paint on paper either, nothing filled them back in. The casualties: the ★ stuff wordmark, so the front page printed with no title; every .spectrum-word and .flock-word in the zines; and the entire manifesto title.

This is the unfinished remainder of the print bug we fixed on 8 August. That fix inverted the --sp-* tokens, which caught everything whose colour arrives through color. Gradient-clipped text never did, and we did not think to ask.

The sharpest part is that our own tooling had been pointing at it the whole time. check-contrast.mjs cannot measure gradient-clipped text — there is no single pair of colours to compare — so by design it lists those elements as “unmeasured — check by eye” rather than guessing. It was telling us to look, in a list 196 entries long, and we had been reading it as a footnote. A tool that says “I can't check this” is reporting a gap, not clearing it.

The fix follows the argument the print block already makes for itself — accent text reaches paper through too many routes to enumerate, so chase the mechanism rather than the class names. -webkit-text-fill-color now sits next to color in both blunt rules, and no page-specific selectors were added. Confirmed with a separate probe that asks the narrow question the contrast tool can't — which elements compute a transparent fill under print media? — across all 75 pages: 90 before, 0 after.

NewField Guides — the eighth collection, and the third one sorted off register

Eleven guides had accumulated with no landing page, which made the Field Guides the last shelf on the site arguing for itself only through the index. This is the eighth collection page, and it sorts on an axis none of the others use.

Five collections sort by register — what kind of argument a piece makes. Print broke that by sorting on medium and disclosed it rather than letting it pass; Sound was the second on that axis and repeated the disclosure. The Field Guides sort by form: a catalogue of same-shaped entries, each standing alone, none of them ranked. That cuts across register cheerfully — the elements guide is settled physics and the constellations guide is frank invention, and they are the same kind of object.

Every number on the page was counted rather than recalled. Eleven guides and 114 entries, summed from the guides' own entry arrays. And the awkward second number is printed too — 119 cards — because the turtle guide holds five turtles people made that it deliberately does not file as entries. The claim that six of the eleven arrive at the same sentence was grepped, not estimated: There is no standard star / nervous system / migration / shark / turtle / tortoise, in six guides, none of which set out to say it.

The best thing the page had to report is a place where the format stops, and the tenth guide found it. The five turtles people made get a dashed border and no reframe table, because the reframe table is a machine for correcting a mistaken verdict, and running “sounds like / actually” over somebody's cosmology would be obscene. The guide says so on its own face and then makes the point structurally — the format difference is the argument — and that is now the standing rule: a subject that cannot take the apparatus gets a different card, not a smaller one.

One thing the page publishes that a tidier version would have left out. Four of the first five guides were cosmological; the last six are all biological. Nobody decided that. It is easy to see why it happened — animals come with better-documented individual cases, and the deficit vocabulary this form exists to dismantle is thicker in biology than in astronomy — but a collection that drifts without noticing has stopped choosing, and the sky has not run out of catalogues.

Fact-checkWe nearly shipped a citation with an article number we had made up

The new collection page carries the house hedge on the “wood wide web,” keeping the settled root-to-fungus mycorrhizal trade and naming the forest-wide reading as contested. The attribution was right — Karst, Jones & Hoeksema — and the draft wrapped it in a Nature URL written from memory.

It did not resolve. Fetching it returned an authentication redirect rather than the paper, so it could not be confirmed to point at the right article — and none of the seven other places this repo cites Karst links it at all; every one of them uses plain text. Replaced with the exact citation the Underground zine already carries: “Positive citation bias and overinterpreted results lead to misinformation on common mycorrhizal networks in forests,” Nature Ecology & Evolution 7, 2023.

What made it plausible is that the shape was right. This site does link a Nature Ecology & Evolution article — Brazeau and colleagues on Minjinia turgenensis, in the shark material — so s41559-, a year, a serial looks exactly like a real identifier from this repo, because it is the pattern of one. A well-formed identifier is not evidence of anything.

Worth naming plainly, because it is a new shape of the old error. Mode 02 is restating a number without re-measuring it; this is its cousin — a fabricated identifier inside a correctly-attributed citation, which looks more rigorous than the plain-text version it replaced and is worth less. A link is a claim that a specific document exists at a specific address. It gets checked like any other claim.

A second, smaller correction on the same page: a draft said the six guides end on the no-standard sentence. The last occurrence actually falls anywhere from a third to three-quarters of the way through the source, so “end” could not be supported. It now says they arrive at it, which was the better sentence anyway.

SiteYesterday's entry about the front page was filed under yesterday

The table-of-contents entry above was first published in the 11 August section, and the work was done on the 12th. Moved here, with the running note for the 11th put back the way it was. A changelog that misdates its own entries is the one kind of error this page cannot shrug off, so it gets a line rather than a silent fix.

NewStart Here, Foundations and Notes & Rationale — every section now has a page

Three more collection pages, which completes the set: every section of the front page now has somewhere to elaborate. Until today the five register collections, Print, Sound and the Field Guides had landing pages and the other three sections had only a heading and a grid of cards, which meant the parts of the site that most needed explaining — the way in, the commitments, and the working papers — were the parts explaining themselves least.

Start Here had to begin by admitting a tension. Cosmic Connections argues this project runs on links rather than folders, and a section called Start Here is the most folder-shaped thing on the site. It stays because the alternative is worse — a reader arriving cold at thirty-six zines and eleven field guides is not being respected by the absence of a door, they are being asked to redo curation we can do once. The fix is not to remove the door; it is to be honest that it is a door and not a queue. Four doors: three ways in and one way out, the last being the open call. And the page says plainly that these four are not the easy ones — Too Good to Check is one of the most demanding pieces here, while a field guide can be read in fragments on a bad day.

Foundations runs on a narrower test than it sounds: a foundation is a piece the other pieces presuppose. When a Kin zine says a shark's cartilage is a secondary loss rather than a primitive state, it leans on a paradigm, an ethic about checking, and a position on difference that it never stops to restate. Those had to be written down once, or every zine would relitigate them and have no room left for its subject. The page is careful that load-bearing is a structural fact, not a compliment, and it explains the oddity on its face: Nos. 3 and 18 keep zine numbers and still sit outside the register collections, because the number records when and the collection records what, and this is the clearest case of the two disagreeing.

Notes & Rationale is the receipts, and its argument is consistency rather than virtue: a site that spends this much time telling you to check the primary source cannot then ask you to take its own work on trust. It also names the gradient of publication honestly — four pages on the site, FACTCHECK.md public in the repository but not a page, and DECISIONS.md which says on its own face that it is a working doc and not published. Nothing is hidden; some of it is simply not a page.

One structural fact fell out of building it. All four Notes members sit outside the prev/next reading chain, so its collection page does too — the only one that does. Threading a changelog and a design system into a reading sequence would put a maintenance document between two zines. Being off the path is not the same as being buried.

The chain was also reordered at the head, because adding the two new pages exposed a real tangle: We Are All Star Stuff, a Start Here piece, sat between Too Good to Check and the Neurodiversity Field Guide — squarely inside the Foundations run. Now Start Here's members precede Foundations' as the documented rule always said they should. 70 pages, traced in both directions, zero mismatches.

SiteA zine had been missing from the sitemap, and a broadside was in it twice

Verifying the sitemap after adding three pages to it turned up two faults that had nothing to do with today's work. The Nearest Body was absent from sitemap.xml entirely — a live Star Stuff zine, linked from the front page and from its collection, sitting in the reading chain, and invisible to anything crawling the sitemap since it shipped on 20 July. And Six Ways a Fact Goes Wrong was listed twice, once beside its parent essay and once in the Print block where it belongs.

Neither is dramatic and neither was findable by the four gates we run, which check markup, contrast, sheet fitting and the search index — nothing checks the sitemap against the filesystem. It is now correct: 79 pages, no duplicates, no stale entries, balanced tags. The check that found it was three lines of Node comparing the sitemap's URLs to readdir, which is the kind of thing that should probably not stay a one-off.

SiteThe markup gate caught us making the exact mistake it was built for

Worth recording because it is the cleanest possible test of a check. tools/check-markup.mjs exists because the Print collection page shipped with four <a> elements nested inside its <a class="card"> wrappers — anchors cannot nest, so the parser closed the outer anchor early and each card came apart on the live page, with the footer and arrow floating free.

The first draft of the Start Here page did the same thing: two links to stimpunks.org and morerealms.com inside a card wrapper. The gate failed the build before it reached a browser, naming the file and the line. Fixed the way the original was — inner links dropped to plain emphasis, since the card already links to its destination.

The timing is the point. The tool was written yesterday, and it did not catch the Print fault — a human did, by noticing a button sitting alone on the live page. The check was built afterwards, from that fault. Today, less than twenty-four hours later, the same mistake was made again and this time it was caught before a browser ever rendered it. That is the first real catch of its life, and it is exactly the argument for writing the check down instead of resolving to be more careful: the fault is invisible in a rendered DOM, because by then the parser has already repaired it.

SiteEvery piece now says which collection it is in — and the measurement said the obvious design wouldn't fit

Most people arrive at a zine from a search result or a shared link, not from the front page, and until today such a reader had no on-page answer to where am I? All 66 collection members now carry a small Collection · <Name> › line under the nav, linking to the collection page that argues for the grouping. The eleven collection pages, the index and search do not have one, because they are not in a collection.

This had been sitting in the decisions log as an open question since 11 August, deferred with a specific condition: measure before adding anything, because the slots that could carry a badge are tracked-out uppercase in tight measures. That caution turned out to be worth taking literally.

The obvious design is a badge in the middle of the nav bar. Prototyped and measured on all 66 pages at 390px and 1280px, it overflowed the nav on most pages at phone width — worst case 408px of content in a 342px nav — and on the Bowie zine it overflowed at desktop width too, because Stars We Grew Up On is nineteen characters of tracked-out uppercase. Had this been eyeballed on one page, at one width, it would have shipped broken on most of the site.

Two fixes were rejected before the one that shipped. Conditional wrapping fails because a flex item that doesn't fit drags every item after it onto the next line — the prev/next controls would have jumped rows unpredictably from page to page. Hiding the badge on small screens, the way the nav already drops its destination labels, fails for a worse reason: a phone is exactly where a cold arrival needs orienting, so that removes the feature for the readers it exists for. What shipped gives the badge its own row at every width — deterministic, and nothing to re-measure when a twelfth collection is added.

The badge sits inside the nav rather than under it, and that is load-bearing. Inside, it inherits two behaviours: it does not print (a link to a collection page is no use on paper), and it is stripped from the search index along with the rest of the nav chrome. That second one matters — this site's rule is that collection pages, not badge slots, are what make collection names findable, and a badge repeating one of eleven names across 66 pages would have added noise to every record. Confirmed by rebuilding: search-index.json came back byte-identical.

One fault was caught by the contrast tool on the way. The word Collection was set in the house dim grey to sit quieter than the collection name, and on the L★S broadside — whose ground is lighter than the site's usual near-black — it measured 4.15:1 against a 4.5:1 floor for text that small. It now inherits the nav's own colour and is set apart by weight instead. The general lesson is worth keeping: on a site where pages carry their own grounds, dimness is not available as a hierarchy tool at ten pixels — weight and letter-spacing do the same job and cost no contrast. Found only because the tool runs on all 79 pages rather than a representative one.

SiteThe sitemap audit becomes a real check, and the tempting eighth test was left out on purpose

Earlier today's entry noted that a live zine had gone three weeks unlisted and a broadside had been listed twice, and that nothing checks the sitemap — the four existing gates all examine a page, and every one of them passes on a page the sitemap has simply never heard of. The audit that found those faults was three lines of Node pasted into a shell, written down with the condition if this keeps finding things, it should become a fifth tool. It had already found two, so it graduated the same day.

tools/check-sitemap.mjs asks one question seven ways: does the sitemap agree with the filesystem? Missing entries, stale ones pointing at deleted files, duplicates, locs that wandered off-site, malformed structure, lastmod sanity — and the bare root entry, which needs its own check because the front page is deliberately not listed under its own filename and relies on it. Without that check, losing the root entry would drop the front page from the sitemap in a way the missing-file check is designed not to notice.

It was regression-tested against the real fault rather than a synthetic one — run against sitemap.xml exactly as it stood before this morning's fix, it names the missing zine and the duplicated broadside. Seven invented faults were each confirmed to fire, and the decoys that must not fire were confirmed silent: the bare root entry, the front-page exemption, and a date of exactly today.

The more interesting decision is a check that was left out. Comparing each lastmod against the file's last commit is the obvious eighth test, and it would have ruined the tool. This morning's collection-badge pass touched 66 pages without altering a word of any of them; a git comparison would have flagged all 66 as stale and invited bumping dates that should not move, telling crawlers to re-fetch pages that had not meaningfully changed. A check whose first run emits sixty-six warnings nobody should act on is a check that gets ignored — and then so are its real findings. Whether an edit earns a new date is an editorial judgement, and it stays with the person making the edit.

Also skipped: priority and changefreq, which Google has said publicly it ignores. Gating on values nothing consumes would be theatre. The tool needs no browser and no dependencies, and it is now a step in the routine that ships a change.

2026 · August 11

We filed the Arrau as a silent animal for as long as nobody brought a hydrophone

The companion catalogue to yesterday's turtle zine, promised in the fact-check ledger and now built: twelve turtles, nearly all of them defined by something a turtle is supposed to have and doesn't. Plus a structural decision about the five turtles people made, and three drawing faults caught by looking at the pictures rather than measuring them. Then a second guide on the land ones — which opens on the Moon, because in 1968 two tortoises went round it and came back. And then, at the other end of the day, the whole collection got sorted into five collections — without renumbering a single piece. Last of all, the contrast check we kept saying we ran finally became a thing in the repo that runs — and it immediately found a button we had been quietly lying about. And then one more zine, on whale brains, which found a paper that measured us into second place and kept us in first anyway. And last, an essay that goes back through a year of this page and asks what all our corrections have in common. Then, after all that, three more broadsides — one for a door, one that counts our own refusals back to us, and one for the day your capacity has crossed a boundary — and a first fact-check of the creed, which found we had been splicing two of Clark's sentences into one.

NewSound — a collection page for the racks, and the rule the oldest one breaks

The Sound shelf went from one rack to three in a week, which is enough that it needs explaining. Sound is the seventh collection page and the second sorted by medium rather than register — the same odd axis Print disclosed on its own face, and disclosed here for the same reason.

But it has a sharper thing to say than Print does. Everything else on this site is ours: we wrote the zines, drew the diagrams, checked the claims, and if a page is wrong it is wrong in our voice. A rack is not ours. The songs belong to the people who made them; what we add is selection, arrangement and a reason per track. Which fixes what the work has to be careful about: the recording is the destination and the writing is the doorway. A card more interesting than its song has failed.

Four rules, applied in order, with the first doing most of the filtering. The music has to be doing the arguing — if the songs could be swapped without changing what the page says, it is a zine with a soundtrack. Every track carries a written reason, no vibes-only entries. Every embed is resolved before it ships, because a card pointing quietly at the wrong recording is invisible to every gate we run — 64 through the oEmbed endpoint so far, which has already produced two corrections. And describe the song, don't reproduce it.

That fourth rule arrived with the second rack, and the first rack predates it. Seven cards on the L★S Playlist quote short lyric fragments — counted, not estimated. The page names the inconsistency rather than quietly conforming the older rack or pretending the rule was always in force.

Two things the page publishes that a tidier version would have left out. First, a number: the shelf holds ninety cards but eighty-six distinct songs, because a few pieces appear twice in different rooms on purpose, and both numbers are printed rather than the awkward one rounded away. Second, and more importantly, the access gap. A collection built out of ninety embedded videos has a problem the rest of this text-only site does not: there are no transcripts, and caption quality is whatever the uploader or the platform provided, which on sung material is frequently poor. We do not control it and have not audited it. Naming it is not fixing it — it is on the page so the next person to build a rack knows what the outstanding job is.

One thing turned up that nobody planned. The punk rack went looking for what makes an amplifier sound like punk and arrived at overtones; the AURORA rack went looking for the northern lights and arrived at emission lines. Those are the same fact in different clothes — what comes out is characteristic of the material, whatever put the energy in — and neither page knew the other was going to say it. The convergence was noticed afterward, reading them side by side, which is exactly the method Cosmic Connections describes. Still a rhyme rather than a proof.

NewStimming and Belonging with AURORA — forbidden only means slow

A companion rack for Warriors and Weirdos (No. 13), and the third essay-first page on the Sound shelf. Twenty-eight performances, weighted deliberately toward live footage, because the argument here is the body and you cannot make it with studio audio.

It opens on AURORA's own account of the first time she saw herself perform on video. She was, in her words, terrified — she says she looked like she was doing an exorcism — and then, in the same breath, that she can't do anything about it and doesn't want to: I have to use everything I got to sing those songs. She saw it, she was shocked by it, and she kept it. Anyone who has been told to keep their hands still knows how rare that order of events is.

Then the physics of the light she shares a name with, which turns out to be about exactly this. The solar wind delivers energy and nothing else — the colour is the atom's own, and that famous green is atomic oxygen's 557.7 nm line. And that line is a forbidden transition: it breaks the electric-dipole selection rules, so where an allowed transition is over in nanoseconds, the oxygen ¹S state waits about 0.7 seconds before letting the photon go, and the ¹D state behind the red line waits about 110. Which is why altitude decides the colour. Lower down the air is crowded and a collision takes the energy first — collisional quenching — so green shows at roughly 100–150 km and red only higher. The most famous light in the sky is a slow release the rules call forbidden, and it only completes where nothing crowds it. Both halves are the point: forbidden describes a ruleset, not a possibility, and whether a slow thing finishes depends on the density of what surrounds it.

The page is careful about whose word is whose, and says so on its face rather than in a footnote. AURORA describes her stage movement as emotion. We are the ones calling it stimming. She has spoken publicly about being neurodivergent and we use her word and name no diagnosis — but she has not called her movement stimming, and we are not putting the term in her mouth. What the page claims is narrower: a great many of us watch her move and recognise something, and the recognition is ours.

The sharpest refusal is saved for last, because a page about a beloved performer's body has to earn it. Her movement is celebrated because it is on a stage, set to music, and lovely to watch. The same body doing the same thing in a classroom gets a behaviour plan, and a child flapping in a supermarket gets stared at by people who would applaud this. If the movement is only permitted once it has been made into art, nothing has actually been conceded.

Also here: stim listening, Jim Irion's coinage for playing one song on repeat, and the observation that Ryan's own Stimming with Aurora playlist is almost entirely live sessions rather than official videos — which is the thesis of the page in the form of a collection. As with No. 13 and the punk rack, no lyrics are reproduced anywhere; every card describes its song.

Fact-checkWe cannot support “for the first time” in Zine No. 13, and a coinage everyone repeats got cut

Building the AURORA rack meant re-checking its parent. Warriors and Weirdos states in its colophon that in November 2025 Aurora “spoke publicly for the first time about being neurodivergent.” We could not verify the “first time” part. No primary source for the late-2025 interview was reachable — only aggregator and SEO pages — and Wikipedia carries “She identifies as an introvert and neurodivergent” in a sentence whose only citation is a 2018 Independent interview, which leaves room for an earlier public statement.

That is not a demonstration that the zine is wrong; it is a claim we cannot currently stand behind. So the new page makes no first-time or date claim at all, and No. 13 should either cite the primary interview or drop the three words. Logged as open in the ledger rather than quietly patched, because Ryan may hold the source.

Two related refusals, both about the same trap. Aggregator pages have started attaching specific diagnoses to her name, and we are not repeating them — the house position is her word, neurodivergent, and nothing further. And the Galileo attribution was cut from the aurora essay: that Galileo coined “aurora borealis” in 1619 is repeated everywhere, but the Discourse on Comets was published under Guiducci's name and Gassendi is also credited, so the page uses only the uncontested etymology — Aurora, Roman goddess of the dawn — and drops the charming detail it could not settle.

SiteAn SVG label printed at 1.93:1 because the print rule stopped at text and never reached tspan

starstuff.css inverts diagram labels for paper with svg text { fill: #222 !important }, because color never reaches an SVG fill. A tspan carrying its own fill attribute is not covered by that: the attribute applies to the tspan, and an !important rule aimed at the parent never touches it.

Caught on the new AURORA diagram, where a “ground state” tspan measured 1.93:1 on white paper while every sibling label in the same figure inverted correctly — which is exactly the kind of single-element failure that is invisible to the eye and obvious to the tool. The rule is now svg text, svg tspan. It was the only tspan in the repo, so nothing else changed, but any future one now gets the inversion for free.

NewIt Take a Joyful Sound — a punk playlist, and the physics that turns out to be underneath it

The Sound shelf had one rack on it, and the L★S Playlist is the cosmic one — Bowie, Joni Mitchell, ambient Eno. This is the loud one, and unlike its sibling it argues before it plays. Thirty-six songs drawn from the Stimpunks public service announcement, built out from Ryan's essay It Take a Joyful Sound: New Wave, New Phrase, Neurodiversity.

The spine is a thing that happened twice. In July 1977 Bob Marley recorded Punky Reggae Party with Lee “Scratch” Perry after hearing what The Clash had done to a Jamaican record, and the song is essentially a guest list — it reads out The Damned, The Jam, The Clash, Toots & the Maytals — for an alliance that did not exist until somebody named it. Nine months later roughly 100,000 people walked six miles from Trafalgar Square through Cable Street into National Front territory for the Rock Against Racism carnival, where The Clash, Steel Pulse and X-Ray Spex played the same bill. Naming an underground phenomenon helped it happen. Which is what neurodiversity did, and roughly as recently.

Then the physics, which is the reason this belongs here rather than on a music blog. Sound is a mechanical wave and gets no exemption: in a vacuum there is none at all — so every note anyone has ever heard was carried by nitrogen and oxygen forged in stars, arriving in a body made of the same stock. A pure sine wave has a pitch and almost nothing else; Helmholtz worked out in 1863 that what tells you who is playing lives entirely in the upper partials above the note. And distortion — the sound the genre is named by — is a nonlinearity that adds harmonics which were never in the signal. The scene's signature is difference, deliberately added. There is a diagram, and it is honest about being schematic.

Two refusals are built into the page rather than bolted on. Punk was not automatically inclusive and the page does not tell it as a fable — Riot Grrrl's manifesto exists because punk told girls they could not play, cripple punk exists because disabled punks were handed the inspirational role and refused it, and the corrections came from the people being excluded. And a loud room is itself an access barrier: a scene that will let anybody in and then builds the only entrance out of volume has not finished the job. Acceptance is not any scene's nature; it is a practice re-won in every room.

One production note, stated on the page: no lyrics are reproduced anywhere on it. Every card describes its song instead. The words are the artists' work and the place to meet them is the recording, which is what the embeds are for.

Fact-checkThe sentence that names punk's whole method may be a Wikipedia editor's, and we had been quoting it for years

Everything that was normally supposed to be hidden was brought to the front. It is one of the load-bearing phrases across stimpunks.org — it titles a whole page there — and it travels everywhere as a quotation attributed to nobody in particular, or to “punk subculture.” Building a page around it forced the question of where it actually comes from.

The trail ends at the Wikipedia article on punk subculture, where the sentence appears as unquoted prose — ordinary encyclopaedia narration, not a quotation — footnoted to LeBlanc, 1999. That is Lauraine LeBlanc, Pretty in Punk: Girls' Gender Resistance in a Boys' Subculture (Rutgers University Press, 1999), a study built on interviews with forty punk girls and women.

So the good news is that the idea has a real scholarly source, and it now gets credited to her. The finding is that we cannot confirm the wording is hers. An encyclopaedia sentence summarising a book is a different object from a line in the book, and this may well be a case of an editor's paraphrase acquiring quotation marks on its way around the internet. The page keeps the phrase — it is ours by use and it is true — credits LeBlanc for the argument, and prints the uncertainty rather than laundering it. Exactly the shape Too Good to Check is about.

There is a second gain in the trace. The sentence that names punk's central gesture comes out of a book about a boys' subculture, written to document the women who had to fight it for room. Bringing everything to the front was never a courtesy the scene extended. It was a demand made on it.

Two smaller corrections from the same pass. Every one of the 36 video embeds was resolved through YouTube's oEmbed endpoint before shipping, because a card whose embed quietly points at the wrong song is invisible to every gate we run; that pass established that Shave the Pride, listed without an artist on the PSA page, is Le Butcherettes (2015). And Keep On Livin' is 2001, from Feminist Sweepstakes — not 1999, which is Le Tigre's self-titled debut and does not contain it. That one would have shipped wrong from memory. Release years that could not be pinned were left off rather than guessed.

NewShared Air — a broadside for the room where someone can't breathe easy

Sixth sheet in the rack, and the hand-out companion to Zine No. 24. The moment is a specific and common one: somebody is asking for a window opened, a fragrance-free room, or a filter running, and is being told they're too sensitive. The face answers that in the largest type on the sheet — don't blame the canary; change the air — with the one air that has no walls in it, shared-air space and co-regulation, and the habitability question underneath.

The reverse is the most actionable thing in the rack, and the first verso that is mostly instructions rather than argument: what to build (open a window, add a plant, wear the mask, run a Corsi–Rosenthal box), then two plain lists — what to say, and what not to say. “This is a fragrance-free space” is a property of a room; “just sit by the door” is the fix dumped on whoever is being harmed.

One credit added that the zine didn't carry. No. 24 names the Corsi–Rosenthal box but not the people who made it. The sheet now credits Richard Corsi, who conceived it, and Jim Rosenthal, who built and tested the first prototype in 2020 — checked against Rosenthal's own company site rather than the several popular accounts that came up first, and including the part that matters most here: the design was deliberately never patented. Free instructions are the whole mutual-aid point.

And one thing the sheet deliberately does not do. There is no filter count, no MERV rating and no assembly steps on it. Partly that is rule one — No. 24 carries no build guide, and a broadside invents nothing its parent lacks. Mostly it is that this is a sheet people act on, and a specification that is slightly wrong on paper cannot be corrected once it is taped to a wall. It says what the box is, credits whose it is, and says the instructions are free.

NewDesigning for Paper — the craft split out, so the collection page can show the sheets

The Print collection page shipped this morning carrying both jobs at once: what earns a sheet, and how a sheet is made. Measured afterwards, the consequence was plain — the list of actual broadsides sat 2,518 px down a 4,470 px page, past a spec table, five ink swatches and three paragraphs on tooling. Its sibling collection pages put their cards around a quarter of the way in. Ours was at 56%. A collection page whose collection is below the fold is not doing its job.

So the craft moved to its own page in Notes & Rationale, next to The Design System — and got more room than it had, not less: the format table, the ink-on-white argument, the type, the five darkened inks, and a proper account of the three gates that measure a sheet before it ships.

The collection page then got reordered rather than merely trimmed, because trimming alone still left the cards at 49%. The sheets now come before the four rules. A reader arriving here needs to know what a broadside is, then see the six, then read how membership is decided — the rules land better as “here is how we decide what joins these” than as a gate you pass through before being shown anything. Cards now sit at 1,042 px, about 24% in, which is marginally earlier than the Kin page's 27%.

Kept on the collection page: the four rules, the refusals, and the note about the sheet that doesn't exist yet. Moved: every number and every tool. The two pages link to each other in both directions.

NewPrint — a collection page for the paper, and the four rules that decide what earns a sheet

The rack has five sheets now, which is enough that the thing needs explaining. Print is the sixth collection page and the odd one out: the other five sort zines by register — what kind of argument a piece makes. This one sorts by medium. That is a different axis, and the page says so on its face rather than letting it read as a sixth zine collection.

The centre of it is four rules, applied in order, because “that would make a good broadside” is an easy thing to say about almost anything and is usually wrong. A broadside compresses something already argued at length here and links back, inventing no new claim. Side A is a face you'd pin up; side B does the work. You can name the moment someone reaches for it, away from a screen — and that is the rule that does the filtering, because if you can't finish the sentence “someone picks this up when…”, what you have is a summary, and summaries belong on the page they summarise. Then the physical spec: ink on white in both media, 190 × 259 mm, two sides, no third page, two spot inks that clear AA.

The rest of the page is the working: why 9 mm margins and not 10 (at 10 the Letter box is 259.4 mm against a 259 mm sheet, and that 0.4 mm of slack tipped it onto a third page); why borders rather than backgrounds; why no display serif; the five darkened house inks with their measured ratios on white, each sheet taking a different pair so you can tell them apart face-down in a stack. And the two things the tools found — both original sheets called themselves “a two-sided single sheet” while the L★S one printed as three sides on US Letter and two on A4 — alongside the standing caveat that no tool here can see a drawing that means the wrong thing, with both worked examples.

Two things are named rather than smoothed over. Shorthand Evolution shares the rack and is not a broadside — it fails rule four — so the page says that instead of quietly counting it as a sixth. And the functioning-labels card still doesn't exist, so the page publishes why: No. 21 is after Helen Edgar, constellation of intensities is her phrase, and a sheet that goes on walls is something to ask about rather than assume.

NewThree more broadsides — Owed, Not Earned, What We Refuse, The Same Water

The print rack goes from two sheets to five. Each is the same object as the first two: one physical sheet, 190 × 259 mm, two sides, drawn as ink on white in both media, verified to print uncropped on A4 or US Letter. And each has a moment you can name, which is the test a broadside has to pass — if you can't say when someone reaches for it, it's a zine.

Owed, Not Earned is for a door. The face carries the qualification at the size you can read across a room — be human, be harmless — with the one disqualifier stated plainly underneath: acceptance is owed to everyone, and harm, not difference, is the only thing that can cost you your place. The reverse carries the whole creed, Clark and Douglass, and the four doors.

What We Refuse is the one that could only exist here. Nearly every piece we publish ends by naming the traps it won't fall into; lay them side by side and the same refusals keep returning. So the sheet counts them. A rhyme, not a proof appears in nine pieces. Not anyone's metaphor in nine. Not a superpower in five. The reverse says what each refusal is protecting, and ends on the one that points inward: nine pieces carry the same sentence because nine pieces reach for the same shortcut, so the count is not a boast about our standards but a measurement of our appetite.

The Same Water is for the day you can't do what you did last week. Capacity is a state, not a trait; the drop from managing to not managing is a cliff, not a ramp, and you were near a boundary. The reverse has supercooling, critical slowing down and threshold anxiety, then two plain lists — what to ask for, and what not to say.

Three things were deliberately not done. Latent heat was cut from the water sheet: it is real physics and it is in No. 20's source list, but the zine doesn't argue it, and a broadside that adds an argument its parent never made is not a compression. Three refusal families shipped without a number, because they recur too thinly for a count to be honest and rounding one up is exactly the stale-figure failure the Six Ways sheet calls mode 02. And a fourth sheet was proposed and held — a functioning-labels field card from No. 21, the highest-use idea of the set, blocked because that zine is after Helen Edgar and constellation of intensities is her phrase. A broadside circulates harder than a zine. That one waits for her word.

Fact-checkThe creed's Clark quote is real — and we spliced two sentences without saying so

The Inclusion Safety creed had never been fact-checked. Building a broadside from it forced the issue, because a sheet meant to be pinned at a door circulates harder than a page.

An intermediate pass could not find “Giving inclusion safety is a moral imperative” in the licensed book text it could reach, and provisionally called it a compression. That was wrong, and Ryan settled it with a photograph of the page. The sentence is verbatim in Timothy R. Clark's The 4 Stages of Psychological Safety, closing the Stage 1 section — as are the other three lines the creed quotes. Recording the wrong call as well as the right answer, because “we could not find it” is not the same claim as “he did not write it,” and this page has now made that exact slip twice in one day.

The real finding is smaller and still worth fixing. The creed's pull-quote runs “Inclusion safety is not earned but owed. Giving inclusion safety is a moral imperative” as one continuous quotation. Both sentences are Clark's and both are from Stage 1, but they are not adjacent — the sentence that actually follows the first is “Every human has title to it as a nonnegotiable right.” An ellipsis now marks the gap, and the attribution names the edition and the stage.

And Douglass finally has a citation. The creed attributed “I know of no rights of race superior to the rights of humanity” to Frederick Douglass with no work and no date — an attribution by name only, which is the shape of a fact that has never been traced. It is from Our Composite Nationality, delivered in Boston on 7 December 1869. Worth flagging for whoever checks this next: the Library of Congress catalogues its manuscript of the lecture as 1867, and at least one reputable teaching repository repeats that date, so the two circulate side by side.

SiteThe search index was built against a stopwatch, and once it quietly lost eight records

The index generator loads all 66 pages in a headless browser and reads their text, because you cannot index this site from its source — the field guides build their entries in JavaScript, and most zine text sits in spreads that are hidden until you page to them. To know when a page had finished rendering, it waited 1300 milliseconds and then read the DOM.

That is a race, and it lost one. During this session a build wrote 629 records and 936,594 characters where the builds either side of it produced 637 and 951,741 — eight records and 15KB of the collection simply absent, with exit code 0 and no warning. A truncated index looks exactly like a healthy one, which is the same lesson as the coverage percentage and the contrast tool before it. It also broke the ship gate in the other direction: --check compares bytes, so it announced the index was STALE seconds after the generator had written it.

It now waits on a condition instead of a duration — the document complete, and the page's own text length holding steady across two samples — and then extracts twice and requires the two reads to agree, which is the only step that actually proves nothing was captured mid-render. It is explicitly not gated on webfonts: the extractor reads textContent, so fonts cannot change a character it captures, and gating on them hung the whole run for nine minutes waiting on a font request that never resolved. Then a second layer, because the damage case was silence: any page that produces no records aborts the write rather than overwriting a good index, since a 1.25% dip across the repo is far too small for any overall threshold to notice.

The guard then caught a real bug within the hour, which is the best argument for it we could have asked for. The new sheet checker had been given the same browser debugging port as the index generator — the contrast tool already carried a comment about deliberately avoiding that clash — so running all three gates in a row let the index build attach to a browser another tool was still shutting down, and a page came back empty. The old code would have written that out without a murmur. Instead it stopped and named the page.

Three consecutive builds are now byte-identical, --check passes immediately after a build, and the guard was also tested directly by handing it a page that renders empty — it refused the write and left the index untouched. The run also got faster, to about 56 seconds, because 66 pages are no longer each sleeping through 1.3 seconds they didn't need.

Fact-checkSagan did say “harvesting starlight” — our correction was the thing that was wrong

On 3 August we corrected No. 6 for presenting “We are star stuff harvesting sunlight” as a Sagan quotation. We had searched all thirteen chapters of Cosmos, found nothing like it, and concluded the famous line was a compression nobody ever said.

He said it out loud. Ryan Boren found the footage: Sagan, on camera in the television series, says “We are star stuff. Harvesting starlight.” So the real fault in the popular quotation is far narrower than invention — circulation changed starlight to sunlight, ran two sentences into one, and cited the book, where it has never been.

Which means our debunk was itself a misconception, and for a textbook reason: we checked one medium and concluded about all of them. A book search cannot settle what a man said aloud. Too Good to Check was published two days ago using the tidy version of this story as its worked example; it now carries both failures instead, because the double error demonstrates that page's own “a debunking can be a misconception” refusal better than any outside example could. The broadside receipt is corrected too.

Fact-checkWe have been printing “a way for the Universe to know itself.” Sagan said cosmos

Setting a Sagan epigraph on the redesigned L★S broadside meant checking the wording, and the check found something uncomfortable: the three-sentence quotation this house has circulated for a year ends “a way for the Universe to know itself.” Every external source consulted gives cosmos. None gives Universe.

And we already knew. The fact-check ledger records “a way for the cosmos to know itself” as verified for No. 18, which prints it correctly — while Love You Down To Your Star Stuff carries the altered wording five times and No. 6 once. The collection has been contradicting itself in public, which is the same shape as the Orion's Belt error and the same lesson: read your own siblings.

It has also travelled beyond this repo — to the star-stuff page on stimpunks.org and to Helen Edgar's More Realms post, in text and in a graphic. Those are not ours to quietly rewrite, so they are logged as open and Helen is being told rather than corrected behind her back. Nothing is fixed yet; this entry exists because the error is public and the fix isn't. The broadside sets only the two attested sentences, in the correct wording. The much-quoted opening, “The Cosmos is within us,” is cut rather than shipped unverified: the archive.org copy of the book is lending-restricted and we could not confirm it at all.

SiteThe edge stamp on the L★S broadside has been printing down the middle of the sheet

Building a second broadside surfaced a bug in the first one. Both sheets carry a small vertical stamp along the right edge — open edition · print freely · share freely. It was built with rotate(90deg) on a white-space: nowrap element, which looks right in a stylesheet and isn't: a rotated element keeps its original wide layout box and spins about its own centre, so pinning it to right: 0.9rem put it nowhere near the right edge.

On the L★S broadside it had been sitting 265 pixels from the edge — straight through the giant L★S, the tagline and one of the three pillars, on the live page, for as long as that sheet has existed. Rebuilt on both sheets with writing-mode, which produces a genuinely narrow box: measured at 10px wide, 11px from the edge, overlapping nothing.

Worth naming why it survived: every automated check we run passed it. Contrast is measured, print is measured, coverage is measured — and none of those can see that a decorative element is lying across the artwork. It took looking at the sheet. Two contrast defects on the same page were fixed in the same pass, both alpha-faded text of the kind this design system says it refuses: the side stamp at 1.75:1 and the footer credit with its licence link at 4.14:1, now solid values at 4.87:1 and 5.46:1. Still open and deliberately unchanged: two gold-on-cream L★S marks there measure 1.84:1. One is a brand mark and one is the riso misregistration shadow sitting behind the ink L★S — a design decision about the risograph look, not an oversight, and not one to make quietly while shipping something else.

NewSix Ways a Fact Goes Wrong — a broadside, and both sheets redesigned for paper

The hand-out version of the essay below: a two-sided single sheet you can print, pin up, and give to someone. The face carries the six failure modes with the tell that gives each one away — more quotable than anything anyone says out loud, repeated everywhere and dated nowhere, the paper's own hedge is missing, one name where a community was, the vivid verb is doing the work, you wanted it true before you read it. The reverse carries the eight habits, the refusals, and five of our own published errors, each tagged with the mode it belongs to.

Then both broadsides were rebuilt, because measuring them showed they were lying. Each called itself a “two-sided single sheet.” Printed to PDF and counted, the L★S sheet came out as three sides on US Letter and two on A4 — a different physical object depending on the reader's country — and the new one as four. They are now 190 × 259 mm, the intersection of A4 and Letter, and both are verified at two sides on both papers by a committed tool, tools/check-sheets.mjs.

The risograph treatment went with the rebuild, and the reason is that it never reached paper. The cream stock was a background colour and the halftone a background image, and browsers leave background graphics off by default. What did print was the gold misregistration shadow, because it is text — at 1.84:1 on white, a faint smudge. The reader got the flaw of the effect and none of its charm. Both sheets are now drawn as ink on white in both media, so the screen view is a preview of the sheet. Fraunces went too, and Boogaloo: the type is Atkinson Hyperlegible Next, drawn by the Braille Institute for exactly the small sizes a hand-out uses, and the L★S star is now a drawn SVG path rather than a character, because Atkinson has no ★ and the glyph was silently coming from whatever font the reader's system supplied.

It claims nothing the essay doesn't, and it was checked for the specific risk a compression runs: dropping a hedge to make a line fit. The mycorrhizal receipt keeps “no published evidence” scoped to the elder-feeds-offspring claim rather than to mycorrhizal trade in general, which is settled; the Sagan receipt says the famous line is a compression of two real sentences rather than that he said nothing like it.

NewToo Good to Check — an essay, in Foundations

A theme kept surfacing while building this collection: most of what “everybody knows” about science is a claim that got smoother somewhere between the paper and the retelling, and the fix is almost always the same — go back and read the primary. This essay is that pattern written down, and it is written from inside the problem rather than above it. Nearly every example in it is one we published and had to fix.

It opens where we were worst. The wood wide web — elder trees feeding shaded seedlings through a fungal network — went into three of our pieces without a single hard question asked of it, because it rhymed with everything we already believed about mutual aid. Karst, Jones and Hoeksema (2023) found the evidence insufficient that these networks are widespread, insufficient that transfer through them reliably helps seedlings, and no published evidence at all for the elder-feeds-offspring part. A story that fits gets less scrutiny, which is exactly when it needs more.

Sorting a year of the fact-check ledger gives six failure modes, each with its tell: the quote nobody said (Sagan never wrote “we are star stuff harvesting sunlight”; the circulating Eno definition of scenius is Kevin Kelly's wording, not Eno's); the number that went stale (Orion's Belt, on Hipparcos figures for stars Hipparcos measured badly); the story told backwards (carcinization was lost at least seven times, and the shark's cartilage skeleton is derived rather than primitive); the credit that drifted (neurodiversity was developed collectively by the online Autistic community, not coined by one author in 1998); the press release, not the paper (“adopted” was never the researchers' word); and the finding that flatters you. Seventeen worked corrections in a receipts table, each linking to the piece where it was fixed.

Two things it refuses. It is not “do your own research” — tracing a claim moves toward evidence and ends somewhere checkable, which is the opposite direction from disqualifying everyone who has any. And a debunking can itself be a misconception: Carol Black's Science / Fiction names the mirror-image failure of asserting “there is scientific consensus where there is no such thing,” and the MYTH! headline is exactly as smooth and retellable as the thing it debunks.

The turn at the end is why this belongs in a collection about belonging rather than in a skeptic's blog. The deficit story told about us has the same citation structure as the wood wide web: repeated until repetition passes for evidence, hedges fallen off, credit drifted onto the people who wrote about us rather than the people who are us. The primary source for an Autistic life is an Autistic person — which is not a metaphor, and is what happened when Helen Edgar's correction arrived after No. 33 had already shipped and we rewrote the piece. Two of the corrections on this page exist because somebody told us we were wrong.

NewThe Layer We Call Essential — Zine No. 36

In 2014 a group of researchers counted the neurons in the neocortex of the long-finned pilot whale and found about 37.2 billion — in the paper's own words, “almost twice as many neocortical neurons as humans.” The first animal ever counted above us, and it is a mid-sized dolphin most people have never heard of. Then, in the same paper, the conclusion drawn is that the absolute number of neurons is “not correlated with the superior cognitive abilities of humans.”

Read it twice. The yardstick was neuron count; the count came back against us; and what gave way was the yardstick. To be fair to the authors that is a defensible narrow point — neuron number alone plainly does not explain human cognition, and it is an honest negative result. But it shows you where the load actually sits: human superiority is not what the test is testing, it is what the test is being fitted to. Which means no count could ever have disturbed it.

Underneath that sits the fact the zine is named for. Open a textbook at the cortical column and layer IV is the front door — the granular input layer where signals from the thalamus arrive first. The cetacean neocortex does not have one. Not thinned in patches: the sheet is agranular, and the literature describes “an absent or underdeveloped layer IV.” The current reading is that layer I takes the job instead, precisely because layer IV isn't there, which produces “a very different connectivity scheme compared to more commonly studied species, like rats and macaque monkeys.” That last phrase is worth sitting with: the canonical column is canonical because of who we happened to put under a microscope.

And then the part that made this a Star Stuff piece rather than a neuroanatomy explainer. In 2006 Paul Manger argued that cetacean brains are big in order to make heat, and that one of his three claims — a section heading in the reply — was “there is no neural basis for complex cognition in cetaceans.” Among his evidence: the indistinct lamination, the pyramidalised layer II, the absent layer IV. In 2008 sixteen authors replied that these are one aspect of an unusual mix of conservative and derived features, and that cetacean brains likely represent “a non-primate route to neuroanatomical (and cognitive) complexity.” A brain organised unlike ours, read as a brain insufficient for mind — and the answer being that the difference is real and is not a deficit. That is the argument made about us, in clinics and classrooms, conducted here by neuroscientists about whales in a review journal.

We are not telling you who won, and the zine says so on its own spread. Manger's hypothesis is serious, later work does report thermogenic signatures in cetacean brains, and an organ can do heat work and thought work at once. The reply is itself an argued position by researchers with a stake. Our claim is narrower: given a cortex unlike the ones we had studied, this brain is built differently and this brain is built worse were both available, and the second was downhill.

On the question Ryan actually asked — is there neurodiversity among cetaceans? — the honest answer is no literature, and we did not invent any. There is no cetacean autism, no whale ADHD, no diagnostic framework applied to a cetacean; we looked, and the zine states that as an absence we searched for rather than a proven one. Writing “whales are neurodivergent too” would have been false and would have borrowed standing from a clinical apparatus we spend most of our time arguing with. But the paradigm was never about diagnoses — it is about variation within a population, and whether the population is built so variation survives. At that level the record is full: sponging occurs in 15 of 141 known Shark Bay mothers, passed almost entirely down a single matriline, and those spongers are more solitary, dive longer and forage more than non-spongers in the same bay. One gene pool, one population, a minority with a different route to food and a different shape of day. Ethodiversity — Ombre Tarragnat's extension of the paradigm by way of ethology — is the frame that lets that count without a clinic.

Two corrections we made to the popular version rather than repeating. The dolphin who spent eight days among sperm whales off Pico in 2011, with a spine curved into an S, was not “adopted”: the paper is titled Repeated Non-Agonistic Interactions, and “adopted” is the press's word, not the researchers'. And the much-repeated explanation that other dolphins had bullied him is a researcher's suggestion to reporters, not a finding — the motive is unknown, and the zine says so. What is in the record is eight days, and the rubs coming back, which is enough.

It closes on Douglas Adams, who made this joke better in 1979 and did not overturn the ranking to do it — he kept its shape exactly and put humans third, behind the mice, at which point the whole apparatus collapses. Then the bill: Adams went to the Yangtze in 1988 to see the baiji for Last Chance to See, and in December 2006 a six-week survey of the river ended without a single sighting. A species actually said so long. A rhyme, not a proof — and a closing refusal naming the fact that this zine spends eleven spreads using cetacean minds as material for a human argument.

SiteThe “prev” button looked switched off and wasn't, on 35 zines

This site tells itself that print and contrast get measured, not assumed, and that a stated principle nobody measures is a wish. That check had been written three times as a scratch file and thrown away three times, which means it was closer to a wish than we were admitting. It is now a committed tool that anyone can run, and running it is a required step before anything ships.

It measures what a reader actually gets rather than what our colour tokens claim: every piece of text composited against its real background stack, with transparency and fading folded in; every label inside a diagram, which the ordinary check cannot see at all, because a diagram paints its text with fill rather than color and a colour check looks straight past it; and then the whole page again as paper, on the bare white sheet a printer actually hands you, since browsers leave background graphics switched off by default.

The first thing it found was ours. On every paged zine, the “← prev” button on the first spread was faded to 30% to signal you can't go back from here — but it was only painted to look switched off. The button stayed live, stayed in the keyboard tab order, and stayed clickable. So a reader navigating by keyboard could tab to it, press it, and get nothing, with no way to tell the difference between a control that is off and a control that is broken. And on Bone Song the fade was applied once when the page loaded and never updated, so “prev” sat there looking unavailable on every spread while working perfectly.

All 35 zines now set the real disabled state, the way the footer navigation already did, with the faded look coming from one shared rule instead of thirty-five inline fakes. It looks the same and it now means what it looks like. Verified in a browser on all 35: switched off on the first spread, live on the second, switched off again at the end, and a press on a disabled control moves nothing.

And the honest total: the check reports 107 remaining failures, not zero. Every earlier scratch version reported zero, because each of them missed the same three things — faded text measured as though it were full strength, only the first spread of a twelve-spread zine measured at all, and diagram labels never measured. Most of what is left is decoration rather than reading matter: 68 of them are the big faint issue numeral in a cover corner, and ten are a decorative star between sections. Eleven are diagram labels that land just under the bar. We are publishing the number before we have fixed it, because a check whose first act is to grade its owner generously is not a check.

SiteThe categories were outputs all along, so we finally wrote them down

Thirty-five zines had accumulated with no folders at all, which is the way this site says it wants to work: the categories are outputs, not inputs. Helen Edgar noticed the newer pieces had drifted somewhere else — “more experimental neuroqueering thoughts” only loosely tied to star stuff — and suggested a home for them. Sorting them now is not a betrayal of the links-over-folders principle; it is the step that principle was waiting for. The clusters were observed after the fact, by two people independently, which is exactly what an emergent category is.

So there are five, and each one is a page rather than a directory — a note that links, listing its members and arguing for why they belong together. Star Stuff is the founding register, where one settled, checkable fact carries the claim about belonging rather than decorating it. Star Gazing — Helen's name, and her description — is the experimental, neuroqueer end. More Than Human is the de-anthropocentrized strand. Kin is the citation-dense natural history. Stars We Grew Up On is where “star” means the other thing, and we are naming that rather than letting it read as drift.

Nothing was renumbered, and that was the main decision. The number on a piece records when it was made; the collection records what it is. Renumbering would have falsified this changelog — which has dated entries naming numbers, and cannot quietly rewrite its own history — broken the fact-check ledger, whose rows are keyed by number and cross-reference each other by number, and invalidated every reference anyone has ever made to a piece in prose, where a number has no redirect. Chronological numbering is also the evidence that these categories emerged rather than being imposed, which is the whole claim. So the numbers inside a collection run non-contiguously — 1, 2, 6, 7, 8 — and that gap is information.

One consequence worth naming: membership is decided by mechanism, not by date. Five pieces that look like later drift on a skim — The Nearest Body, No Universal Now, The Same Water, Not a Line, Shared Signal — turn out to be squarely in the founding register, because in each of them the physics is still doing the argumentative work. Sorting by register instead of by chronology moved them home. And three pieces filed as zines are not reading-collection essays at all: No. 3 is a paradigm primer, No. 4 is an open call for contributors, and No. 18 is a self-portrait of the project. They moved to Start Here and Foundations, keeping their numbers.

The reading chain was rewritten to follow collection order, so prev/next now walks you through a collection instead of crossing between them — 57 pages, verified end to end. The search index was regenerated, and the new pages measured clean for text contrast both on screen and in print emulation, which on this site is a thing we check rather than assume.

NewA Field Guide to Being a Tortoise — Field Guide No. 11

Testudinidae, the land ones, and a sibling to No. 10 rather than a slice of it. First, the scope problem, stated in the guide's own intro rather than glossed: tortoises are turtles. American English calls the whole order turtles; British English splits tortoise, turtle and terrapin. Both are fine, neither is the taxonomy, and the Mojave desert tortoise stays in No. 10 rather than being reused here.

It opens where this collection has to open. On 15 September 1968, Zond 5 carried a biological payload — flies, worms, seeds, and two Soviet steppe tortoises — around the far side of the Moon and brought it home. They splashed down in the Indian Ocean on 21 September, having lost about a tenth of their body weight, and were examined in Moscow and found in good health. Apollo 8 would not carry humans around the Moon for another three months. The first living faces to see the back of the Moon belonged to two undramatic reptiles from the Central Asian steppe, and nobody asked them, and nobody could have.

Then the ordinary astonishments. The gopher tortoise digs burrows over fourteen metres long and three deep, and more than 350 other species live in them — the same sentence as the desert tortoise in No. 10, and the same argument this collection keeps making: access built for one is infrastructure for many. The pancake tortoise has a shell whose bone is full of gaps and is the fastest and best-climbing tortoise there is. Jonathan hatched around 1832 and is blind and hand-fed and still interested in the food, which is not a tragedy and not an inspiration — it is an old person on a lawn, being looked after. And the speckled padloper is six centimetres long and is not a scaled-down giant any more than a wren is a scaled-down eagle.

Fact-checkThe pancake tortoise does not inflate itself, and "tortoises are herbivores" was a summary rather than a law

Two entries in the new guide are deliberately placed next to each other because they are the same kind of error pointing in opposite directions.

The inflation story is wrong. Popular accounts have said for decades that the pancake tortoise wedges into a rock crevice by inflating itself, chuckwalla-style. That claim is now believed to be untrue — the wedging is done with the forelimbs. It is a charismatic mechanism that got attached to a real animal and travelled for years on how good it sounded, and the guide prints the correction rather than quietly dropping the sentence.

And the category moved the other way. On 30 July 2020, on Frégate Island in the Seychelles, Anna Zora filmed an adult female Aldabra giant tortoise walking deliberately down a log after a stranded tern chick and swallowing it — about seven minutes end to end. She and Justin Gerlach published it in Current Biology (2021) as the first documented deliberate hunting by any wild tortoise. "Tortoises are herbivores" was never a law; it was a summary of what we had happened to watch, holding until somebody was standing in the right place with a camera. An animal is not obliged to stay inside the description we wrote of it.

Two more things held honestly. The star tortoise's pattern is usually explained as disruptive camouflage in dry grass, and the guide words it that way rather than as a finding it can point to a test for. And the frequently quoted ~255 years for Adwaita of Kolkata is not established and is not used — Jonathan's 1832 is stated as the back-calculation it is.

NewFour entries whose endings are decisions rather than facts — and the one that worked

The last four cards in the tortoise guide carry a dashed edge. Not because they are sadder: because they are unfinished. The Indian star tortoise is the most trafficked tortoise on Earth — over 34,000 confiscated between 2000 and 2015, 2,098 taken off a single dinghy by the Sri Lankan Navy in 2017 — and it is trafficked precisely because it is beautiful and small and easy to carry. The ploughshare tortoise's shell is engraved with numbers by the conservation staff trying hardest to save it, deliberate defacement of a living animal to make it worthless to collectors, and conservationists report that it does not seem to have deterred the poachers. We kept that ending on the card instead of stopping at the clever bit.

Then the pair the guide is built to be read as a pair. Lonesome George died on 24 June 2012 and took Pinta Island with him — and the entry rejects "the loneliest animal in the world" as a description of how we felt rather than of him, while saying plainly that this does not make the loss smaller. By the time a species is down to one, the decision was made decades earlier; George was not the emergency, he was the receipt. And Fernanda: a species known from one specimen collected on Fernandina in 1906 and written off for 113 years, found alive in 2019, and confirmed by genome sequencing in Communications Biology in 2022 as genuinely Chelonoidis phantasticus. George is what it looks like when the answer is no. Fernanda is what it looks like when the answer was never actually taken — 113 years of "extinct" turning out to mean "nobody had climbed that lava field."

It ends on Île aux Aigrettes, where 26 Aldabra giant tortoises were introduced between 2000 and 2011 as ecological replacements for the extinct Mauritian Cylindraspis inepta. They eat the fallen fruit; the seeds germinate better afterwards; the clearings came back. A minimum of 529 hatchlings in eleven years. The guide flags the obvious objection rather than dodging it — introducing a large non-native animal to an island is how much of this damage was done, and ecological replacement is contested practice, not settled policy. But it is a real answer to the question the whole guide circles: what do you do when the thing holding a system together is gone? Sometimes the job is more portable than the animal, and somebody else can be supported to do it. Which is, more or less, what accommodation is.

NewA Field Guide to Being a Turtle — Field Guide No. 10

The catalogue behind Everywhere That Turtles Go (No. 35), and the argument the zine was circling: almost every entry here is a thing a turtle is supposed to have and doesn't. The leatherback has no bony carapace at all — hundreds of interlocking ossicles set in oily skin — and it dives to 1,280 m and holds its body up to 18 °C above the sea around it by sheer size and insulation, which is why it has the largest range of any reptile alive. The mata mata has poorly developed jaw muscles and a nearly absent tongue and is a superb predator, because it never bites: the mouth is a pump, and every "weakness" on the checklist turns out to be a component of the pump. The Fitzroy River turtle takes roughly 70% of its oxygen through two enlarged sacs at the far end of itself. The Chinese softshell excretes urea through the lining of its mouth rather than its kidneys — the head-dipping that looks like drinking is the exact opposite of drinking.

Two entries carry the weight. Painted turtle hatchlings spend their first winter inside the nest, in soil below −10 °C, staying liquid by supercooling — and the variable that decides whether they live is not how tough they are, it is what touches them: ice nuclei in the nest soil, active around −3.5 to −5 °C, end the whole strategy on contact. And last, the bill: Rafetus swinhoei, two or three animals left, the last known female dead in April 2023. Everything else in the guide is a reason for delight; that one is what it costs to say so.

Fact-check"Turtles are silent" was never a fact about turtles

Freshwater turtles were understood to be mute animals. Then Ferrara, Vogt and Sousa-Lima recorded them properly — in the water, in the nests, in captivity — and logged 2,122 sounds sorted into eleven types. Hatchlings vocalise from inside the egg, in the open nest, and in the river. Adult females vocalise while basking and nesting. And in the river, females were recorded approaching hatchling sounds and answering them, which was the first evidence of post-hatching parental care in any turtle (J. Comp. Psychol., 2013; Herpetologica, 2014).

A textbook line about an entire order fell over and nothing about the animals had changed. What changed was that somebody brought a hydrophone and stayed. We are being careful about what this does and does not establish — the finding is that these turtles vocalise and that females respond to hatchlings; it is not established what any particular call means, and the entry refuses to translate them. But the shape of the error travels: an absence of communication is a claim about a listener at least as often as it is a claim about a speaker. Non-speaking is not non-thinking, unrecorded is not absent, and "doesn't communicate" has meant "doesn't communicate in the channel I was monitoring" often enough that it should never be the first conclusion. A rhyme with what this community knows, and named on the page as a rhyme rather than a proof.

SiteThe five turtles people made get a different card, and the format difference is the argument

The guide catalogues Turtle Island, ao in the Huainanzi, Kurma, and Great A'Tuin — and doing that in a field guide is a real hazard, because a field guide's native move is compressing things into comparable units, which is exactly how a knowledge system becomes a motif. So they sit in a separate section with a different card type: dashed border, and no "sounds like / actually" table. That table is a deficit-reframe device for reading an animal, and pointing it at somebody's cosmology would be obscene. They get whose-it-is, what-the-turtle-does, and what-gets-got-wrong instead.

Kurma is flagged hardest, because Vishnu's tortoise is a pivot for Mount Mandara during the churning of the ocean and is constantly merged with the world-on-a-turtle's-back story, which is a different story — and because we nearly made that error ourselves from secondary summaries while building No. 35. The fifth card declines to be a card. The Larrakia Star Dreaming that gave the zine its title is Oldman Juma Fejo's, shared in Tyson Yunkaporta's Sand Talk; the card gives provenance, notes that the invitation to share is real and published, states plainly that an invitation to share is not an invitation to paraphrase, points at the quoted passages and at the book, and offers no summary. Sometimes the respectful entry in a catalogue is the one that says: not here, go there.

Fact-checkA drawing that said the fish was being spat out, and one contrast fault found by measuring

All seventeen diagrams were rendered and looked at, which caught three things no check catches. The mata mata's suction funnel was drawn apex-first toward the prey — a solid triangle with its point at the fish — which says the prey is being expelled from a point rather than drawn into a gape. Direction is the entire content of that figure, and it was backwards. The alligator snapper was a featureless mound with a yellow squiggle on it: no jaws, so nothing read as a mouth, or as a turtle; it is now an open gape hinged at the left with the lure on the tongue inside and a fish approaching. And two labels on the painted-turtle card overlapped.

A fourth was caught the other way round — by measurement, not by eye. The house ember #c1653a, used as the Rafetus entry colour, drives the coloured value in that card's footer strip, and on the tinted panel it measures 4.33:1 — under the 4.5:1 floor for small text. Lifted to #d97848 at 5.61:1, same hue family. Final numbers for the page: 629 text elements, minimum 4.63:1 on screen, minimum 12.22:1 in print, zero failures, and no horizontal overflow at 390px. Neither method finds what the other one finds, which is why the design system asks for both.

2026 · August 10

Everything keeps becoming a crab — and keeps stopping, more often than it starts

A new zine on convergent evolution, built after an essay by the mathematician Brett D. Wick and then read against the crab literature itself, which turned out to say three things the popular version leaves out. Checking one of its quotations also turned up a misquotation we have been repeating on stimpunks.org for years. Later the same day, three zines and a field guide for a young person in our community whose special interest is sharks — on the shark skeleton, on disgust, on developmental pace, and twelve ways to be a shark — plus a correction from Helen Edgar and a contrast defect in our own diagrams, found by measuring. And last, a zine that starts from one sentence in Tyson Yunkaporta's Sand Talk, treats it as a range map rather than a figure of speech, and finds the turtle literature reversing the obvious reading twice over.

NewEverywhere That Turtles Go — Zine No. 35

Tyson Yunkaporta (Apalech clan, Wik) writes in Sand Talk that a Star Dreaming Oldman Juma Fejo of the Larrakia People wants to share with all peoples “goes everywhere that turtles go—and there are turtles all over the world, even in desert country, so it connects everybody.” Read quickly that is a lovely figure of speech. It is not one: it is a testable claim about where an animal lives, with the reach of the story pinned to the reach of the turtle. So we checked it, and it holds — roughly 357 species on every continent but Antarctica, in every warm ocean, and yes in desert country, where Chelodina steindachneri buries itself in a dry Pilbara riverbed and waits out a year or more without water, and where the Mojave desert tortoise spends up to 95% of its life underground in burrows that shelter other animals too.

Then the literature reverses the obvious reading twice. Lyson and colleagues (Current Biology, 2016) find the shell did not begin as armour: rib broadening in Eunotosaurus africanus was an adaptation for burrowing, broadened ribs on their own “provide little protection” while costing you stride length and breath, and protection is a later exaptation. The shell is a shovel's anchor. And Lyson and colleagues again (Nature Communications, 2014) give the price: lock your ribs into a shell and you lose the way almost every land vertebrate breathes, so turtles run their lungs off a sling of abdominal muscle instead. They lost the ordinary way and went everywhere anyway. Which is why the phrase “come out of your shell” — said to quiet kids, to Autistic kids, to anyone whose way of being in a room reads as absence — gets the zine's sharpest refusal: the carapace is the ribs and vertebrae, it is bone, and bone is piezoelectric, so there is no coming out and nobody hiding behind it.

The rest follows the range. Side-necked and hidden-necked turtles fold the head away by two unrelated means and both are still here, with every living side-neck southern — their map is the shape of Gondwana. Sex is set by the temperature of the sand rather than by chromosomes, which makes the Discworld philosophers' failed expedition to determine Great A'Tuin's sex a better joke than they knew: they were looking in the wrong place. A hatchling learns the magnetic field of one beach and finds it again decades later. And the closing argument is the one the range makes inevitable: every people had to think with this animal, and they did not think the same thing. Turtle Island, ao in the Huainanzi, Kurma, Great A'Tuin, the Star Dreaming — five peoples, one animal, five thoughts. The connection is the meeting, not the matching. The Star Dreaming is quoted from Yunkaporta's published account and never retold in our voice; it is not ours to narrate.

Fact-checkA spread was cut because the famous version of turtle anatomy is the looser one — plus two conflations caught before they shipped

The scapula is not inside the ribcage. Everyone repeats that the turtle's shoulder blade sits within its rib cage, unique among tetrapods, and a draft spread was built on it. Lyson & Joyce (Biology Letters, 2012) say otherwise: “the scapula remains anterior to the first dorsal rib even in adult turtles,” and a vertical scapula in front of the thoracic ribcage is the basal amniote condition. What encloses it is the shell, which includes dermal bone beyond the ribs. The claim is still strange and still worth the wonder — it is just not the sentence in circulation. The spread was cut rather than hedged.

Kurma is not a world-bearer. Vishnu's tortoise avatar is a pivot on the seabed holding Mount Mandara steady while the ocean is churned. The world-resting-on-a-turtle's-back story is a different story, and merging them is a Western habit that flattens two traditions into one motif. The zine names the distinction on the page, in a spread whose whole argument is that these turtles are not versions of each other. And “turtles all the way down” is not William James, not Bertrand Russell, and not the little old lady in A Brief History of Time. James's 1882 essay uses rocks; the turtle punchline was attached to him in a 1967 linguistics thesis and repeated ever since; the earliest located printed version is from 1854. Recorded on the page rather than used.

Fact-checkWe carried the Fibonacci passage from Sand Talk and named its overreach on the page, rather than quietly dropping it

The hardest editorial call in the piece. Yunkaporta records Oldman Juma giving the sequence in the shell — “one became two, then three, then five in a row along the center of the shell… 1, 2, 3, 5, 8, 13” — and then extends it to the golden ratio “that all nature is built upon, from flowers and trees to your body and even DNA.” There were three options: carry it silently, cut it, or carry it and say where it stops.

We carried it and said where it stops, because the two halves are genuinely different kinds of claim and collapsing them serves nobody. The count is right. A typical carapace really does run five vertebral scutes down the midline, flanked by four pairs of pleurals and about twelve pairs of marginals — you can go and count them, and the zine draws them. The general golden-ratio claim is not supported, and the golden ratio is not in the structure of DNA. Carrying a knowledge system faithfully includes not laundering an empirical claim through it. The count in the shell is not made better by a modern number, and not made worse by that number turning out to be over-claimed.

The same discipline applies twice more in the piece. The source's cosmology of expansion and contraction is not presented as physics; the honest resonance offered instead is breathing, set against the real finding that turtles had to replace rib ventilation. And the resemblance between natal homing and songlines is named on the page as what it is: “The Larrakia story is not turtle magnetoreception, and turtle magnetoreception is not a songline. Two true things, next to each other.” One thing shipped open: the Didactylos passage from Pratchett's Small Gods was drafted from quote aggregators, so the zine used only a fragment and the colophon said the wording was unconfirmed. Ryan opened the book the same day and photographed the page — see the entry below.

Fact-checkClosed the same day: the Turtle Moves, and now we have actually read the page it moves on

No. 35 shipped with one item deliberately unresolved. Its closing beat leans on Didactylos in Terry Pratchett's Small Gods (1992), and the wording had come from Goodreads and Reddit — which the house rule calls leads, not citations. So the zine used only a fragment plus the three-word slogan, and said in its own colophon that the quotation was unconfirmed. Ryan then opened the book and sent the page.

It is verbatim, italic on the final word and all: “Mountains rise and fall, and under them the Turtle swims onward. Men live and die, and the Turtle Moves. Empires grow and crumble, and the Turtle Moves. Gods come and go, and still the Turtle Moves. The Turtle Moves.” The zine now carries the whole run as a pull-quote instead of a clipped line.

And the page showed something the aggregated version had lost. Every copy we could find ran Didactylos's speeches together as one block — but in the book they are two speeches with an interruption between them: a voice from the darkness asks “And that is really true?”, and only then does Didactylos shrug and give the line our draft had been paraphrasing all along — “The Turtle exists… And this will go on happening, whether you believe it is true or not. It is real. Which is exactly the sentence the zine wanted, and exactly the sentence we could not honestly have used. We are not splicing the two runs together, not even with an ellipsis, because doing that would silently delete another speaker's turn — the same class of error as dressing a paraphrase as a quote. The first run is quoted whole; the second is characterised in our words with only “It is real” in quotation marks. The colophon keeps its note about having shipped this unconfirmed rather than deleting it now that it checks out: the point was never that we turned out to be right, it is that we did not know we were until somebody opened the page.

Fact-checkFive drawing faults in the turtle zine that every automated check passed — including one that meant the opposite of its caption

Logged for the same reason as the shark guide's three: measurement cannot see meaning. The worst one was the neck spread. The hidden-necked turtle's neck was drawn looping outside the shell — which reads as a neck extended, i.e. precisely the opposite of the caption sitting under it, in the one figure whose entire job is to show two ways of putting a head away. Both turtles were redrawn with the head inside the shell outline. The burrow, drawn as a closed fill path, rendered as a trapezoid with the turtle sitting below its floor; it is now one thick translucent stroke, so the void has a constant bore and the animal can be inside it. On the cover, the desert tortoise sat on top of the “35” and its “RANGE” label, and once the drawing was shifted clear, an “every warm ocean” caption ran straight through the title (cut — the waves and the sea turtle already say ocean). And the charge symbol “↯” is not in Space Mono, so it fell back to a glyph that renders as a 4; it is now drawn as a path. Every fix carries a comment in the source saying what went wrong, so the next person editing that figure knows what to check. The page itself measured clean throughout: 455 text elements, minimum 4.70:1 on screen, minimum 13.92:1 in print, zero failures — and all five faults were invisible to that.

NewThe Skeleton That Skipped Bone — Zine No. 32

This collection opens on a bone. Bone Song starts with the fact that your skeleton is piezoelectric — press it and it makes voltage. So here is the counter-song: a whole class of vertebrates that never turns up to the bone at all. Sharks, rays and chimaeras carry a cartilage skeleton stiffened by thousands of mineral tiles called tesserae, which Dean & Summers (Zoology, 2006) describe as tuned species by species, region by region, and even to how the animal feeds. Then the finding that turns the zine over. Sharks were taught for a century as the before picture — cartilage first, bone later, primitive, not there yet — but Brazeau and colleagues (Nature Ecology & Evolution, 2020) describe endochondral bone in Minjinia turgenensis, an Early Devonian fish near the common ancestry of jawed vertebrates. If the shared ancestor had bone, the shark's bonelessness is not a failure to arrive. It is a loss — derived, not primitive — which is the same shape of fact as the crab body plan being abandoned more often than adopted, one zine earlier. It also means the word primitive was carrying a verdict it hadn't earned about a fact that wasn't a fact, which is the move that gets made with low-functioning and delayed too. The second half follows what was done with that skeleton once somebody decided it was a cure. A body read as a cure gets harvested — and extraction never starts as cruelty, it starts as appreciation.

Fact-checkSharks do get cancer, and the pills were tested

The shark-cartilage industry rested on one premise: sharks don't get cancer. Cartilage has no blood vessels of its own, tumours need a blood supply, so — the reasoning went — sharks must be carrying something that stops them. The premise is false, and someone counted. Ostrander, Cheng, Wolf & Wolfe, “Shark Cartilage, Cancer and the Growing Threat of Pseudoscience” (Cancer Research, 2004) documented 42 tumours in cartilaginous fishes across at least 21 species in nine families and seven orders — 24 in sharks, 16 in skates and rays, 2 in chimaeras — spanning the nervous, digestive, skin, excretory, blood-forming, reproductive, endocrine and skeletal systems, with at least 15 malignant by invasion into normal tissue. Then it was tested properly: Loprinzi and colleagues (Cancer, 2005) ran a randomised trial in advanced cancer and found no difference in overall survival and none in quality of life, with side effects bad enough to wreck compliance. One thing we deliberately do not claim: we could not verify a primary-source figure for how many sharks the trade killed, so the zine puts no number on it and asserts only what is documented.

NewThe Ick Is a Border — Zine No. 33

A house companion to Wyrd & Weird, Helen Edgar's guest zine on the word this community did take back. Weird is hers. This one takes the word next door — gross — which works differently and doesn't get reclaimed, it gets disarmed. Disgust presents itself as a fact about the animal and is a fact about the frame: Rozin & Fallon (Psychological Review, 1987) describe it arriving across a child's first eight years and running on the magical law of contagion, where one touch renders a whole plate inedible forever — a reaction so far out of proportion to any physical fact that what's operating must be a rule about categories, and rules about categories are taught. Three marine arrangements then read as gross and turn out, in frame, to be simply competent: Osedax, the bone-eating worm with no mouth and no gut, rooting into whale bone; the deep-sea anglerfishes, whose permanently fused males cost them their adaptive immunity; and the whale fall, where a corpse becomes a town for decades. Then the turn, which is what the zine is for. The same reflex fires at feeding tubes, at drooling, at incontinence, at a stim that isn't the socially cleared kind, at a communication device someone decided sounded unpleasant. Martha Nussbaum named it projective disgust in 2004: we load what we can't stand about being animal onto a group of people, who then work as a buffer between us and our own bodies. Nobody is guilty of a flinch. Everyone is answerable for the two seconds after.

Fact-checkReading the whale-fall paper corrected a number we'd have shipped — and “matter out of place” is not Mary Douglas's line

Two catches from the house rule about aggregators. First: secondary summaries put the sulphophilic stage of a whale fall at about 100 macrofaunal species. Fetching Smith & Baco, “Ecology of Whale Falls at the Deep-Sea Floor” (Oceanography and Marine Biology, 2003) and reading it gives the real figure: a mean of 185, which the authors note is higher local diversity than any other deep-sea hard substratum community, with 407 species known from whale falls globally and 21 known from nowhere else. The primary also supplied what no summary carried — soft tissue stripped at 40–60 kg a day, opportunist densities up to 40,000 per square metre, and an initial pulse to the sediment worth roughly 2,000 years of the normal background supply. Second, an attribution trap caught before it shipped: “dirt is matter out of place” is not Mary Douglas's coinage. It is near-universally credited to her, and she did make it famous in Purity and Danger (1966) — but it appears there unreferenced, later editions credit it to Lord Chesterfield without a source, and the earliest located instance is an 1853 address by Lord Palmerston. The zine does not use the line as hers, and its colophon records the problem so the next piece reaching for it doesn't repeat the error.

NewTwo Hundred Years Before You're Grown — Zine No. 34

Third and last of the shark set, and the one most at risk of becoming a poster we'd hate. The Greenland shark is the longest-lived vertebrate known and does not reach maturity until it is about 156 years old. Nielsen and colleagues (Science, 2016) got that by radiocarbon-dating eye lenses: the core of a vertebrate lens is laid down before birth and then never replaced, so each animal carries its own birth certificate in protein, readable against the atmospheric bomb pulse from 1950s nuclear testing. Life span at least 272 years; the largest animal 392 ± 120. It is also the slowest fish for its size — 0.34 m/s, one tail-beat every seven seconds (Watanabe et al., 2012) — and it eats seals anyway, apparently by arriving quietly while they sleep. That isn't succeeding despite being slow: silence is only available at that speed, so the strategy needs the trait. And nearly all of them carry a copepod clamped to the cornea, which costs them almost nothing, because vision is not what the Arctic deep asks for. So late turns out to be a comparison rather than a measurement, and an impairment turns out to be a relation rather than a property. But the zine refuses to stop there, because Nielsen's own paper doesn't: having established the longest vertebrate life ever measured, the authors raise the conservation alarm. An animal that needs a century and a half to reproduce cannot recover from pressure that arrives in decades, and the species is IUCN Vulnerable. Slowness is not a superpower; it is a strategy with a bill attached. A pace is survivable or it isn't, and what decides that is the water — which is the social model of disability, stated in fish.

NewAnd the argument that gets used against every accommodation of pace: BGUTI

Added to No. 34 mid-build, because a zine about respecting pace has to answer the standard objection rather than leave it implied. Ask for a slower pace and you meet one particular reply so often it has an acronym: BGUTIBetter Get Used To It — named by Alfie Kohn in “Getting Hit on the Head Lessons” (Education Week, 7 September 2005). Homework early because there's homework later; grades young because there are grades eventually; no accommodation now because the real world won't accommodate you. Kohn's sentence is the one that belongs in a zine about developmental pace, and it is exact: “Almost by definition, the BGUTI defense ignores developmental differences.” It has to — the whole argument treats the timetable as fixed and the child as the adjustable part, so if children genuinely arrive at things at different rates, “everyone gets this at this age” guarantees some are handed what they cannot yet use. BGUTI doesn't miss developmental difference by accident; it cannot survive noticing it. The empirical claim underneath is also false: “People don't really get better at coping with unhappiness because they were deliberately made unhappy when they were young.” This is where behaviorism does its worst work — a model that watches compliance and reaches for consequences has no way to represent a child who needs longer, so needing longer reads as refusing, refusing gets a consequence, and the consequence never changes the pace. It only adds fear to it. Our own blunter formulation stands alongside Kohn's and is credited as ours: we don't prepare students for a world of potential oppression by oppressing them.

NewA Field Guide to Being a Shark — Field Guide No. 9

The catalogue behind the shark set, and the argument the three zines were circling: one clade, radically variant. Not distant relatives — one group, one body plan, four hundred million years — and almost nothing about it holds still. The whale shark reaches ~18.8 m and lives on plankton; the dwarf lanternshark tops out near 20 cm and erases its own silhouette by lighting its belly to match the light falling from above. The goblin shark cannot give chase in the dark, so it doesn't: the jaws fire forward at up to 3.1 m/s, the fastest protrusion known in any shark. The thresher hunts with the far end of itself. The epaulette shark walks between tide pools and rides out near-anoxia by suppressing its own metabolism. The cookiecutter, at fifty centimetres, takes a plug out of animals hundreds of times its size and everything swims off alive. And the bonnethead eats seagrass and digests it — which turned "sharks are carnivores" from a finding into a category nobody had gone back and tested.

Two entries are about a phrase rather than an animal, and they point in opposite directions. Everyone knows the hammerhead's head supercharges its electrical sense — except that when Kajiura and Holland tested it directly, it didn't. There was no increase in sensitivity to prey-like fields. What the head gives is a wider search area, not a sharper sense. And the frilled shark is not a living fossil, because nothing alive is one; that lineage has stayed well matched to a deep, stable niche, which is not the same as standing still. One phrase flatters, one condescends, and both skip what the animal is actually doing — which is the same reflex No. 32 caught in the word primitive.

Fact-checkThree diagram errors in the shark guide that every automated check passed

Logged because they are the kind of fault no measurement catches. The reusable shark silhouette, at the size these diagrams actually render, drew a thin lens with a detached triangle floating above it — it read as a paper dart, not an animal; redrawn with a fuller body, a dorsal based on the back, a pectoral, and a notched tail. The whale shark was facing away from the plankton, which streamed past its tail rather than into the mouth it filters with. And the thresher's strike arc left the middle of its body instead of the tail — in the one entry whose entire point is that the tail does the hunting. All three passed contrast checks, link checks and syntax checks, and all three were wrong. A drawing can be perfectly valid and still say something false.

Fact-checkWe said the ick is learned. Helen Edgar, who taught PMLD for twenty years, said: not all of it — and she's right

The Ick Is a Border shipped this morning arguing that disgust is learned, full stop. Helen Edgar — who taught children with profound and multiple learning disabilities for twenty years — read it and said it presumes a cognitive, intellectualising response to the ick. Pre-term babies pull away from something sticky or slimy and settle with something soft and warm. Some of the young people she worked with developed that newborn-type reflex response only at three, four, five, six years old — but it did come. An ick without an intellect is still an ick.

She is right, and the awkward part is that Rozin's own framework already makes the distinction our zine collapsed. Distaste is chemosensory: rejection tied to a thing's actual properties, producing the highly conserved “gape face” — gape, upper lip retracted, nose wrinkled, brow down — present at birth and observed in utero. Disgust proper is, in Rozin's phrase, ideationally based and contamination-sensitive; you can be disgusted by a cockroach without ever tasting one. And the finding that settles how deep the first one runs is Jacob Steiner's 1973 observations of the gustofacial response in anencephalic newborns, who produce it without most of a higher brain. The response doesn't require a cortex, so it cannot be an opinion.

This mattered beyond accuracy. As published, a reader with sensory processing differences could reasonably have read the zine as telling them their aversions were learned prejudice to be got over — aimed at our own community, that does harm. The zine now opens the argument with a new spread, Two icks, not one, and everything downstream is scoped to the ideational kind. Two refusals were added: Autistic and otherwise neurodivergent sensory aversion is distaste, not prejudice, and we are not claiming a blank slate. The closing claim changed from “the ick was never in the water” to “the verdict was never in the water,” because your body may still not want to touch the thing, and that was always allowed.

Helen's deeper point is the one that goes furthest, and it is now in the zine's own voice: we are not blank slates — that is the point of star stuff; we have history in us. A response conserved across species and present before birth is that history. The first draft was quietly arguing against this collection's own founding premise, and didn't notice. Twelve spreads became thirteen.

FixedOur own diagram labels were failing the contrast rule we keep telling everyone to measure

Update, later the same day: swept the whole site, and the sweep found this entry's own numbers were wrong. Auditing every page properly — compositing each SVG label against its real backgrounds in headless Chrome — turned up 226 failing labels across 27 pages and 20 different colours, not the 126 across 14 estimated below. Everything now standardises on the canonical muted palette token at 6.00:1 worst-case, because the value we'd picked from two zines held 6.17:1 on the usual card background but dropped to 4.19:1 on the tinted panels some diagrams use. Result: zero failing labels across all 53 pages, on screen and in print.

Two near-misses worth publishing. The first audit said all eight labels on Field Guide No. 2 were at 1.05:1 — but those are the element symbols drawn on filled colour discs, dark-on-light and perfectly correct. The tool couldn't see the disc behind the letter. Running the "fix" would have erased every symbol on the page. And in Zine No. 8, the label “focus” was a layout bug wearing a contrast bug's clothes: it was anchored to run rightward straight through its own green node, so it read at 1.21:1 — green on green. Recolouring it would have hidden the actual fault. It's now anchored the other way, clear of the circle, mirroring the label opposite it.

The sweep also found three labels written on top of the very thing they name, all worse than what we set out to fix. In Zine No. 10, the word “you” was near-white on the near-white figure it labels — 1.36:1, completely invisible. Same in No. 12 (“room to move” on its own violet disc) and No. 1 (“forge”, gold on gold). All three now use dark text on the bright shape — which is the pattern Field Guide No. 2 had right all along.

Both new zines were checked the way the design system insists — by measurement, not by eye — and the check turned the finding back on us. The small labels inside our SVG diagrams use two house fills, and against the card background they come out at 4.16:1 and 4.28:1: under the 4.5:1 minimum for small text. They pass in print, because the shared stylesheet already handles SVG separately there, which is exactly how a screen-only gap stays invisible. Fixed in Nos. 32 and 33 by lifting the two values to 6.17:1 and 6.11:1 in the same hue family. The old values remain in 14 other pages — 126 occurrences — and that sweep is still open, logged in FACTCHECK.md rather than quietly cleaned up here. Recorded for the same reason as everything else on this page: a principle nobody measures is a wish, and we had been wishing.

NewFive Times a Crab, Seven Times Not — Zine No. 31

“Given enough time, everything wants to become a crab” is a real pattern with a real name — carcinization, coined by L. A. Borradaile in 1916 — and the crab-like body plan really did evolve at least five separate times in decapod crustaceans. King crabs are not crabs; they came up out of hermit crabs and arrived at the shape anyway. That is the part everyone quotes, and it sits one inch from an ugly argument: that a recurring form is the form things ought to take. Twelve spreads on the inch. Convergence describes the terrain — the constraints and pressures, canalized the way C. H. Waddington drew it in 1957 — and not the merit of whatever lands in the bottom of the valley. Our eye and the octopus's converged on the same camera and were built backwards from each other, ours with a blind spot and theirs without, which is why a system that grades the route instead of the outcome will mark a working eye wrong. Then the turn: in the ocean the basin permits the millions who never roll into it, while designed systems write the attractor into the rules — engagement chosen as the objective and every platform rolling downhill to vertical video, one accepted way of showing your work and a diagnosis for the other ways. That is the Cavendish monoculture, and the answer is Cavendish Space. Ideas ripen the same way bodies do, which is where scenius comes in. Gould and Conway Morris are left arguing, on purpose.

Fact-checkThe crab literature's own numbers, which the famous version omits

The zine's argument comes from reading the primary rather than the summary. Wolfe, Luque & Bracken-Grissom, “How to become a crab: Phenotypic constraints on a recurring body plan” (BioEssays, 2021) report three things that cut against the headline. The crab body plan was lost at least seven times — decarcinization — with likely more besides: leaving the form is the commoner event, which is not what an optimum looks like. The reasons for the recurrence, in their words, “remain a mystery,” and it is still unresolved whether this is true convergence or a shared inheritance being switched back on. And convergence produced no sameness: carcinized lineages run from millimetres to metres, from coral reef to sealed marine cave to abyssal plain to mountain stream. Three facts, none of them in the essay that prompted the piece, and each one dismantling a different part of “converge or lose.”

Fact-checkWe have been misquoting Brian Eno's definition of scenius — on stimpunks.org, for years

Ryan asked whether scenius belonged in the zine's spread on ripening ideas. It did, so the quotation went to its primary — and the version we have been publishing is not what Eno wrote. Our glossary, and the bricolage page, give it as “Scenius stands for the intelligence and the intuition of a whole cultural scene. It is the communal form of the concept of the genius.” Eno's actual text, in A Year with Swollen Appendices (Faber, 1996), in a letter to Dave Stewart among the appendices, reads: “it means ‘the intelligence and intuition of a whole cultural scene’. It is the communal form of the concept of genius.” The altered wording entered circulation through Kevin Kelly's “Scenius, or Communal Genius” (The Technium, 2008), which presents it as Eno's exact words — and our own glossary label, “Brian Eno (via The Technium),” recorded the whole problem in a parenthesis nobody read closely. This is the house rule about aggregators, caught working: a secondary source that says it is quoting is still a secondary source. The zine quotes the book and documents the discrepancy in its colophon. The five instances across our own notes and site, and the live glossary page, are still to fix — logged as open in FACTCHECK.md rather than quietly corrected here. Reading the primary also recovered what the summary had flattened: Eno's name for what he was refusing, the “Big Man” theory of history; punk 1975–8 on his own list of scenius moments; and his insistence that it would be foolish to pretend everyone's contribution is therefore equal — so scenius names a scene without erasing the person who did the work.

2026 · August 9

We got Orion's Belt wrong, on the page arguing that confident lines get mistaken for facts

Fact-check batch 7 covered The Lines We Drew, The Difference-First Frame and the Manifesto — the last of the argument pieces awaiting a first check. It found ten corrections, one of which required redrawing a zine's central spread, and it closed a citation question we had logged as unresolvable yesterday.

Fact-checkThe belt stars are not at wildly different depths. They are a cohort, and Zine No. 9 said otherwise

The Lines We Drew opened its argument on Orion's Belt: that the three stars only line up from here, with Alnitak ~740 light-years, Mintaka ~690, and Alnilam ~2,000 — “nearly three times farther.” A diagram drew that depth, and the spread was headed There is no belt. It was wrong. Those figures are Hipparcos-era parallaxes, and Hipparcos measured bright, distant, multiple O and B stars badly. Current values put all three at essentially one depth — Alnitak 1,260 ± 180 ly, Alnilam 1,250 ± 26 ly from VLTI interferometry (Oplištilová, Brož, Hummel, Harmanec & Barlow, Astronomy & Astrophysics 704, A204, 2025), and Mintaka ~1,240 ly from Gaia DR3 — all of them members of the Orion OB1b association, born from one cloud. Two things should have caught this sooner. The colophon cited APOD, which gives the three as a group at about 1,500 light-years and never supported our numbers. And Field Guide No. 1 — the very piece this zine is the companion to — already said it correctly: “part of the same young star-forming region, born in the same cloud of gas… They are not a coincidence. They are a cohort.” The collection had been contradicting itself in public, and the guide was right.

RevisedSo the zine now argues something truer: there is no hunter

The depth is real — it is just in the figure, not the belt. Bellatrix sits about 250 light-years away, Betelgeuse about 548, Saiph 650, Rigel 863, and the belt near 1,250: the hunter everyone draws is stitched from stars strung across roughly a thousand light-years, with nothing in common but the direction we happen to look. The spread has been rewritten around that, the diagram redrawn as a depth ladder, and the heading changed from There is no belt to There is no hunter. The retired figures stay on the page as the zine's own example: we drew a confident line in depth, published it, and better instruments moved it. A piece about mistaking a made line for a fact of the sky had made one, which is the most useful thing it could have done.

Fact-checkFour attribution corrections in the same colophon

Galton did not coin eugenics in Hereditary Genius (1869). He coined it fourteen years later, in a footnote to the introduction of Inquiries into Human Faculty and Its Development (1883). Karl Pearson built the standard deviation (1894) and the correlation coefficient well before he became the first Galton Professor of Eugenics at UCL in 1911 — the page had him doing the mathematics as chair-holder. The “pathology paradigm” is Nick Walker's term, not Robert Chapman's; Walker coined it, and its counterpart the neurodiversity paradigm, in “Throw Away the Master's Tools” (2012, revised 2013), and Chapman works with the terms rather than founding them. And “neurodiversity” is not one person's coinage: following Botha, Chapman, Giwa Onaiwu, Kapp, Stannard Ashley & Walker (Autism, 2024), the page now records that “neurological diversity” and “neurodiversity” reached print in 1997 and 1998 through journalist Harvey Blume, who attributed them to the online Autistic community, and that the concept was developed collectively by neurodivergent people. We had credited Judy Singer alone. Also: the statistical sense of “normal” dates to the 1870s, not the mid-1800s.

Fact-checkThe Manifesto credited bone's piezoelectricity to the wrong material

First content check of the Manifesto, including the nine runs of text that were invisible on the page until a rendering bug was fixed yesterday. It said, twice, that hydroxyapatite is what converts pressure to charge in bone. It isn't: the effect Fukada and Yasuda measured is collagen's — fibres arranged without a centre of symmetry, generating charge as they shear past one another. Hydroxyapatite is centrosymmetric, which rules out classical piezoelectricity. Eiichi Fukada, the physicist who co-authored the 1957 paper, has been restored to the credit alongside Yasuda. Three more: “every atom heavier than hydrogen and helium was manufactured inside a star” is false for lithium, beryllium and boron, which stars destroy rather than build; hypergiants are not “a thousand times the mass of our sun” — that is radius, and the most massive star known is about 196 solar masses; and a Sagan passage introduced with “Sagan said it plainly” had been altered, so it is now quoted verbatim with its chapter (Cosmos, 1980, ch. 9).

Fact-checkSix more pages were making the same nucleosynthesis claim, including three already marked verified

The Manifesto's overclaim triggered a sweep, and the milder form of it was everywhere: “every atom heavier than hydrogen was forged inside a star,” which sweeps in helium — mostly primordial — along with lithium, beryllium and boron, which are made by cosmic rays shattering heavier nuclei out in interstellar space. Corrected on the front page, About, Design System, Field Guide No. 2, LYDTYSS and the LYDTYSS page. The LYDTYSS zine had a second slip in the same sentence — “forged in a stellar interior” — which is wrong for the r-process elements its own companion guide credits to neutron-star mergers. About, the Design System and Field Guide No. 2 were all already marked verified, and this went past every one of them, because it reads as settled background — which is exactly the point at which a sentence stops being read.

Fact-checkResolved: the ethodiversity article is 2025

Yesterday we logged a citation year we couldn't reconcile — Helen's essay cites ethodiversity as Tarragnat (2024); our own copy of the article carries internal markers reading 2025. The journal settles it. TRACE ∴ Journal for Human-Animal Studies publishes it as Tarragnat, O. (2025), “Biodiversity, Neurodiversity, Ethodiversity: Towards a More-Than-Human and More-Than-Neurological Turn in Neurodiversity Studies,” vol. 11, pp. 6–28, DOI 10.23984/fjhas.144936, in the Uncommon Worlds III theme issue — and the article ID matches the PDF in our repository exactly. It is 2025. Nothing on this site was wrong, and nothing here needed changing; we're recording it so the next piece to cite the journal article has a settled year, and so Helen can correct hers.

RevisedThe Manifesto now shows its sources — it was the only argument piece without a colophon

Every other argument piece in this collection ends by showing its work. The Manifesto — the founding statement the rest are variations on — never had. It now carries a colophon in six parts: the nucleosynthesis sources (B²FH 1957, and Kobayashi, Karakas & Lugaro 2020 for which stellar sites actually make which elements, including the lithium, beryllium and boron exceptions); the bone sources (Fukada & Yasuda 1957, with the collagen mechanism stated plainly and the hydroxyapatite caveat kept rather than quietly dropped); the paradigm's attributions (Nick Walker for both the neurodiversity and pathology paradigms, the collective origin of “neurodiversity” per Botha et al. 2024, Kassiane Asasumasu for neurodivergent, and the InLv list and Autism Network International); a Held honestly note; and a Corrections block. That last one names all five errors found on this page today, on the page itself, including the fact that some of the corrected text had been invisible until the day before.

The Held honestly note is the part worth reading. It says outright that the science here does not make our ethics true — that “the universe doesn't pathologize its own variation” is a claim about what we owe each other, dressed in cosmology because that is where it was easiest to see; that the cosmos has no opinion; that deriving an ought from an is is a fallacy we would rather name than commit; and that bone's piezoelectricity is an analogy for responsive nervous systems, not evidence about them. What the science does is narrower and enough: it removes the excuse that difference is a defect.

SiteA new rule: a number can be wrong by having gone stale

Our fact-checking guidelines already warned about the science that flatters the metaphor. They said nothing about the science that was simply true a while ago. Superseded measurements keep circulating in museum copy, planetarium scripts and popular astronomy long after the literature has moved, and repetition reads as corroboration. The rule now reads: check a figure against current primary work rather than against how often you can find it repeated — and when you cite a source for a number, confirm that source actually gives that number. Ours didn't.

2026 · August 8

A collaboration made official, a guest zine and its field guide, this page, a design system, and pages that actually print

Star Stuff is now formally a Stimpunks Foundation × More Realms collaboration, with a page about what that actually means in practice. A guest zine arrived with a companion catalogue, two reference pieces went up, and one long-standing failure came to light: for most of this collection's life, almost none of it printed.

New pieceCosmic Connections — the page about the links

Cosmic Connections is Helen Edgar's phrase, and it now names both a tagline on the front page and a piece in Start Here explaining how the three sites actually work together. Two histories were already inside the phrase: James Burke's Connections (BBC, first broadcast 1978 — formative viewing for Ryan, and the source of the house method of following a thread across centuries and disciplines rather than narrating breakthroughs), and Carl Sagan's The Cosmic Connection (1973), the book where “we are made of star-stuff” first reached print. The page maps what travels between the sites in both directions, with receipts: Helen's essays becoming Nos. 11, 21, 24, 25, 28, 29 and 30; the Stimpunks glossary and design method becoming the reading in Nos. 8, 17 and 19; and our finished artifacts and corrections going back out — the ghost pipe entry pairing with her Monotropa uniflora and Monotropism, Field Guide No. 8 pairing with her No. 30. Grounded in Stimpunks' own glossary (emergence, iteration, interdisciplinary learning) and its post on the emergent power of a web of notes with links, plus P. W. Anderson's “More is different” (1972), adrienne maree brown's Emergent Strategy, and Kirby Ferguson, credited by name for Everything Is a Remix — a phrase the house had been using as a section heading without naming its author. Two diagrams, a table of receipts, a “Not:” refusals set, and a Held honestly note conceding what the emergence rhyme does not prove: Burke's chains are a storyteller's selection, and the paths that went nowhere never got an episode.

SiteSearch was quietly indexing 12% of the About page

Adding a link to About and rebuilding the search index produced a file of exactly the same size, which is not what adding a sentence should do. It wasn't there. The index generator chunks a page on its repeating unit — a section, a card, an entry — and About has exactly three of them, so a check written as “did we get at least 3 records?” answered yes and shipped 12% of the page: the entire collaboration section, the method, the callouts and the sources note had never been findable. The Difference-First Frame was at 24%, the Inclusion Safety creed at 72%, and the L★S Playlist at 16% — that last because it lists every song twice, once as a card with the note explaining it and once as a bare link list, and the generator was indexing the bare list. Counting records cannot detect this; only measuring coverage can. The generator now measures what fraction of each page its records actually contain, re-segments by heading when that falls short, appends a record for anything still unclaimed, and prints a coverage figure per page with a warning list at the end. All 50 pages now index at 100%, up 472 records from 459. A page that indexes a tenth of itself looked exactly like a healthy one, because the only thing being printed was a record count.

SiteStar Stuff is a Stimpunks Foundation × More Realms collaboration

The masthead now says what has been true for a while. Helen Edgar's More Realms — the speculative companion to her Autistic Realms — is one of this collection's sources and much of its weather, and it is now credited as a co-publisher rather than as a recurring citation. Why Difference Comes First, We Are Made of Relations, My Monotropic Galaxy, the shared-air and shared-signal coinages, and the constellation reading of the spiky profile all arrived here from her two sites. Both organizations now appear together on all 49 pages — Stimpunks first, equal weight — in the brand line, the covers, the colophon footers, og:site_name, and the JSON-LD publisher, which became an array of two. About carries the full account. Per-piece credit did not change and will not: three zines (Nos. 11, 28, 30) are Helen's outright and in her own voice, No. 29 was developed after her essay, and the running per-spread foot stays a short mark. A shared mark is not a shared byline.

SiteTwo things the co-branding pass caught by measuring

Adding the pair to 49 pages meant checking all 186 new links on screen and under print emulation, which surfaced two faults that had nothing to do with branding. L★S Playlist styles its footer links at a specificity that tied with the shared rule and won on load order, silently stripping the underline that non-color link cue depends on. And LYDTYSS hardcodes its page ground instead of aliasing the shared token, so its interior panels and colophon kept a near-black background in print while their text went to ink — 1.02:1, invisible on paper with background graphics on. Both fixed. The measurement is the point: a stated principle nobody checks is a wish.

UpdatedHelen published the essay version, and it's now named in Always Migrating

On 9 August 2026 Helen Edgar published Migration & Trusting Our Inner Monotropic Compass at More Realms — the essay this zine was developed from — and links from it back to both the zine and Field Guide No. 8. The zine's colophon now names the essay as its sibling publication and says plainly what each one carries that the other doesn't: the essay has the closing turn from finding your compass to building spaces safe enough to trust it in, and the zine has entanglement, relational quantum mechanics, migration at galactic scale, and the constellation of intensities.

One passage came back from the published essay into Spread 8 — “Difference here is already a form of connection” — on salmon carrying marine-derived nutrients into freshwater, and whales moving nitrogen and iron back into sunlit waters. It is Helen's own published text, and her hedge (“help move”) is kept. The whale pump is Roman & McCarthy (PLoS ONE, 2010), added to the zine's references. The field guide's coda now links her essay too, so the loop closes in both directions.

Fact-checkA citation year we can't yet reconcile: is the ethodiversity article 2024 or 2025?

Helen's essay cites ethodiversity as Tarragnat (2024) in TRACE: Journal for Human-Animal Studies. The copy of that article in our own repository carries the internal marker TRACE 2025 and an InDesign source filename of trace2025_tarragna.indd, and our house notes record it as 2025. Nothing on this site currently rests on the year — the zine cites the separate 2025 ombretarragnat.com post it actually quotes — so no page is wrong today. We're logging it anyway, because the next piece to cite the journal article will have to pick a year, and we'd rather sort it out with Helen and against the journal than quietly guess.

New pieceField Guide No. 8 — The Ways of Migrating

The catalogue behind Always Migrating, built the way Nervous Systems sits behind Every Nervous System. Say “migration” and most of us picture one shape — a long line, north in spring, back in autumn — and almost nothing does that. Fifteen entries break the word open: a relay no individual finishes, a trip with no return, the largest migration on Earth going a few hundred metres straight up every night, spiderlings that rig silk and let atmospheric electricity carry them, a crossing nobody could witness until satellite tags caught eels in the Sargasso in 2022. The centre of the guide is partial migration — populations holding both migrants and residents — which the ornithological literature describes as the commonest form, the one all others derive from. Variation within a population is not the anomaly; it is the mechanism. It closes on us, the way the Symbioses guide closes on care webs: the crossing made in place, when the word finally arrives and every year behind you rearranges itself.

Held with care, and said twice on the page. This is a guide to migration as a way of being, and it is not a frame for human displacement. People forced from home by war, persecution, poverty, or a heating planet are not following a tug — they are surviving decisions made by others, and reading that as natural or seasonal would launder it. The note sits in the intro band and again in the coda.

Every headline figure was traced to its primary before the entry was written — the tern's ~71,000 km (Egevang et al., 2010), godwit 234684's 13,560 km in eleven days, salmon geomagnetic imprinting (Putman et al., 2013), ballooning in still air (Morley & Robert, 2018), the eel tracking (Wright et al., 2022), Saharan dust and Amazon phosphorus (Yu et al., 2015), and radial migration in the galactic disc (Sellwood & Binney, 2002). The godwit record is flagged on the page as one bird, not a species norm, and as a strategy that costs the body dearly — the guide's own argument runs the other way, that a migrant who rests is not a lesser migrant.

SiteEvery field guide was printing without its field notes — 14,040 words that never reached paper

A field guide's entries keep their notes collapsed behind a click. On paper there is nothing to click, so a printed copy carried only the short briefs and dropped every note — silently, which is the worst way for a page to be wrong. This had been true of all eight guides, for the whole life of the collection: the constellations, the elements, the impossible places, the worlds, the ways of being a star, the symbioses, the nervous systems, and now the ways of migrating.

Fixed in the shared stylesheet, so it holds for every guide at once and for any guide added later. Printing now opens all entries, hides the “Field notes” affordance that no longer does anything, and keeps each entry on a single sheet. The entries' fade-in is neutralised at the same time — it is an animation starting from zero opacity, and an animation that never runs would have left the notes technically revealed and still invisible, which is the same class of bug as the blank pages this print block exists to prevent. Measured after the fix, under print emulation: 78 entries across eight guides, all revealed, 14,040 words, none faded out, none failing contrast. On screen nothing changed — the notes are still collapsed behind a click.

The rule is scoped so this page, which reuses the same .entry class for something else entirely, is untouched.

New pieceZine No. 30 — Always Migrating, a guest zine by Helen Edgar

A guest zine by Helen Edgar (Autistic Realms · More Realms), written after Brigit Anna McNeill's The Living Page migration workshop and rehoused here in the house paged-zine style — her text kept intact, her reference list preserved in full. Migration read at every scale: a bird crossing an ocean on a compass sense that may involve a pair of electrons whose spins stay linked; the Sagittarius dwarf still arriving in our halo; the Milky Way–Andromeda collision, long taught as settled, now closer to a coin-flip (Sawala et al., 2025). Then the turn inward — the tug that arrives before thought is monotropism's gravity, and the self it moves is not a chart but a constellation of intensities. Every citation was re-verified at source rather than taken on the draft's word, including the volume and page numbers of all four physics and biology papers and the verbatim line from Pernille Fraser's “Can we trust?” The colophon carries a new Held honestly note naming what is not settled: the radical-pair mechanism is the leading hypothesis for magnetoreception, not a closed case, and relational quantum mechanics is one interpretation physicists still argue about. Eleven spreads, with a “threads already running” spread added as house scaffolding.

New pieceA public changelog, backfilled to day one

The corrections were already being logged — in a per-piece ledger in the repository, where you'd have to go looking for them. That's not really publishing them. This page reads the collection's whole history back out in the open: every piece as it arrived, every substantial revision, and every audit, with the errors named. Backfilled from all 121 commits, from launch day forward.

SiteLogging made part of shipping

A changelog only tells the truth if it's kept. Adding an entry is now a written step in the house conventions and in the routine that ships a zine — alongside the fact-check itself, not after it.

New pieceThe Design System, with its numbers and its receipts

design.html documents the visual language the whole collection shares: Atkinson Hyperlegible, chosen because it was drawn for readers the standard face failed; the --sp-* palette tokens and why they live in one file; five accents held within 16 points of each other in CIELAB lightness; and body text at 18.84:1, because full opacity is the house rule rather than a preference.

It publishes the contrast value that fails, too: --sp-dim-soft (#63607a) lands at 3.27:1, under the 4.5:1 needed for normal text. It's used for colophon footers and disabled controls — the least harmful place for it — but a page that prints its own contrast numbers should print that one as well.

Fact-checkThe palette's lineage, traced: Solarized got credited for the method, not the colors

The palette was remembered as having started life as a Solarized dark variant. Checking it: not one of Solarized's sixteen values appears anywhere in the collection, and no commit or file mentions it — the change predates this repository, so there is nothing to point at. The accents are Tailwind CSS v3's 400-weight ramp, exact, confirmed against tailwindlabs/tailwindcss v3.4.17 src/public/colors.js: violet-400, pink-400, amber-400, cyan-400, green-400, gray-50. The near-black grounds are ours.

So the credit is now stated precisely, in the README and on the design page: Solarized for the method — a small fixed set of named accents at near-uniform lightness, a ground that refuses pure black, warm cream instead of white for paper — and not for a single color. The one thing we did with it was invert its central move: Solarized deliberately reduces brightness contrast, and our body text runs 18.84:1 where Solarized dark runs 4.75:1. Attribution from memory is exactly the habit the guidelines warn about, even when the memory turns out to be roughly right.

Site44 of 46 pages printed blank — every page now prints

“Print freely” is on every page in this collection, and it turns out we had never measured it. Browsers leave Background graphics switched off by default, and no page inverted its colors for print — so a light-on-dark zine sent near-white type to a white sheet. Measured with print media emulated across every text element, 44 of 46 pages printed illegibly. On one, no pixel anywhere on the sheet came out darker than mid-gray. The Bone Song poem — a piece made to be printed and handed to someone — came out an empty page.

Only this changelog was correct. The L★S broadside was half-right: its front prints as designed, but its reverse carried the whole poem in cream on near-black and vanished too.

Fixed in starstuff.css, which is where the token architecture finally paid for itself: because every page aliases the --sp-* tokens, inverting them once inside @media print turned the whole collection to ink on paper. Diagrams needed separate handling — SVG paints with fill and stroke, which a text color never touches — and a handful of pages that hardcode their colors instead of aliasing tokens carry small overrides of their own. The spectrum rule keeps its color as a 2px sliver. All 47 pages now print legibly, verified twice: computed text contrast against white for every text element, and pixel sampling of the rendered sheets.

The lesson is written into the design page: a stated principle nobody measures is a wish.

SiteThe Manifesto had been publishing with its own title invisible

Writing the design page turned up a bug on the Manifesto that had been live and unnoticed. Its stylesheet re-declared nine palette tokens as --sp-gold: var(--sp-gold) and so on — a custom property that refers to itself is a cycle, so all nine resolved to nothing. Every color: var(--sp-gold) on the page silently inherited white, which is why the Manifesto had been rendering essentially monochrome: three distinct text colours on the whole page instead of nine.

Worse, the gradient headings kept -webkit-text-fill-color: transparent while losing the gradient that was supposed to show through it. That made nine runs of text completely invisible — among them the words “exploded stars,” “piezoelectric,” “its own variation,” both letters of the L★S mark, and the page's own <h1>: “Star Stuff Manifesto.” The headline read “We are all made of” and simply stopped. The tokens were already inherited from the shared stylesheet and never needed re-declaring; removing the nine cyclic lines restored the whole page.

SiteA broken font URL meant most visitors never saw Atkinson Hyperlegible

The collection was split across two versions of its typeface — 26 pages on the original Atkinson Hyperlegible, 18 on Atkinson Hyperlegible Next. All 44 Atkinson pages are now on Next. The switch cost nothing in layout: the same string at 16px measured 286.97px before and 286.78px after, and across 126 measured text blocks not one changed height, width, or line count.

The sweep uncovered a worse problem. Every page requesting Next asked Google Fonts for a 200..900 weight range, but Next publishes 200–800. The request returned HTTP 400 and no @font-face rules at all, so those pages fell back to system-ui for every visitor without the font already installed — which is very nearly everyone. A typeface chosen precisely because it was drawn for readers the standard face fails had not been reaching them. It went unnoticed because the font is installed on the machine where these pages get built, so it looked right here and nowhere else. Corrected to 200..800, verified by confirming the woff2 now downloads. All four of the collection's Google Fonts URLs were re-checked; the rest were fine.

New pieceThe collection is searchable

Search covers every zine, field guide and broadside — 425 records across 47 pages, one per zine spread and one per field-guide entry, so a result opens the passage rather than dumping you at the top of a long page. It runs entirely in your browser: no server, no dependencies, no analytics, and nothing you type leaves your device. There's a search pill in the nav on every page.

Two things about this collection made it more interesting than it sounds. The field guides build their entries from data in JavaScript rather than writing them into the HTML, and most zine text sits in spreads that are hidden until you page to them — so the index can't be built by reading the HTML source. It's generated from each page as a browser actually renders it. On the constellation guide, the naive approach would have captured 4,910 characters where the real content is 42,785.

The other thing: field-guide entries keep their notes collapsed, so a link straight to one used to land on a closed card with the matched text still hidden. Entries now carry real ids and open when linked, which makes all seventy of them individually shareable — useful well beyond search.

SiteSeven contrast failures found and fixed; every page now passes AA

Publishing the palette's contrast numbers made the worst one impossible to ignore. --sp-dim-soft was #63607a — 3.27:1, under the 4.5:1 AA floor, and used for page counters, series numbers and colophons at 0.5–0.55rem, so squarely small text. Raised to #807d98, holding the same hue and chroma: 4.97:1, and still visibly softer than --sp-dim.

Auditing every text element against its own composited background — not against the page ground — found six more: an accent pink that came to 4.43:1 once the tinted card beneath it was accounted for (two field guides); three runs of alpha-faded cream on the broadside, which is exactly the “faded gray” this design system says it refuses, now solid; and two CC BY-SA links left entirely unstyled, falling back to the browser's default blue at 2.11:1 against near-black. One zine also hardcoded its dimmest tone instead of aliasing the shared token, so the lift hadn't reached it; it aliases now. All 47 pages pass WCAG AA on screen.

2026 · August 3

Fact-check pass 6, and a metaphor that flattered us

The sixth rolling audit reached the earliest zines — and one correction rippled outward into three other pieces.

Fact-checkZines 2–6 audited; four corrections
  • Love You Down To Your Star Stuff (No. 2): the “nitrogen in our DNA … carbon in our apple pies” passage was dated 1973; it is Cosmos (1980), ch. 9. Both Sagan wordings — the 1973 Cosmic Connection and the 1980 Cosmos — are now given, in order. Two nucleosynthesis overclaims fixed against Kobayashi, Karakas & Lugaro (2020): iron is not made “only in the most massive stars” (roughly half comes from Type Ia supernovae), and nitrogen is not only from massive stars (roughly half is shed by low- and intermediate-mass AGB stars).
  • Neurodiversity Field Guide (No. 3): neurodiversity had been defined as “natural variations in the human genome” and credited “after Nick Walker.” That framing is not his and narrows the paradigm — rewritten to Walker's own definition, plus his point that neurodivergence can be innate or produced by experience. Added the missing coinage: neurodivergent / neurodivergence were coined by Kassiane Asasumasu (2000). InLv corrected to Independent Living on the Autistic Spectrum, founded by Martijn Dekker in 1996. Added Charlton, Nothing About Us Without Us (1998).
  • Eternal Sunshine (No. 6): a paraphrase was dressed as a quote. “We are star stuff harvesting sunlight” is not a sentence in Cosmos — it compresses two separate ones. The colophon now says the epigraph is ours and quotes the real sentences with their chapter.
  • Underground (No. 5) and We Are All Star Stuff (No. 4) otherwise verified.
Fact-checkThe “wood wide web” hedged across four places

Mycorrhizal trade between fungus and plant root is settled science. The forest-wide story — trees wired together, elder trees feeding shaded seedlings — is not: Karst, Jones & Hoeksema (Nature Ecology & Evolution 7, 2023) find the prevalence of common mycorrhizal networks and their benefit to seedlings insufficiently supported, and find no published evidence that mature trees preferentially provision their own offspring.

It had shipped as fact in three pieces, because it rhymes beautifully with mutual aid — which is exactly why it needed more scrutiny, not less. Underground (No. 5), A Mycelium and a Rhizome (No. 26), A Field Guide to Symbioses (Field Guide No. 6), and the Symbioses blurb on the front page now lead with the settled root-to-fungus trade and name the contested part outright. The kinship stays; the overclaim goes. A new standing rule went into the guidelines: beware the science that flatters the metaphor.

SiteRetired address cleared from three colophons

Zines No. 2 and No. 3 and Shorthand Evolution still printed the old star-stuff.netlify.app address. All now read starstuff.earth.

2026 · August 2

Workflow, written down

SiteThe house process became repeatable tooling

Four working routines that had lived in habit are now written into the repo: proposing a zine from a source, shipping one end to end (render check, index and sitemap wiring, prev/next nav, fact-check log), crediting a coinage to its true originator across every page it appears on, and reviewing open decisions. No reader-facing change — but the fact-check step is now structurally hard to skip.

2026 · July 27

A coinage returned to its author

Fact-check“Intradependence” credited to Karen Barad

Only in Relation (No. 29) credited intradependence to Helen Edgar. It isn't hers — she takes it from Karen Barad's relational ontology (Meeting the Universe Halfway, 2007, on intra-action). Corrected in the zine, its colophon, and its card on the front page.

2026 · July 26

Zine No. 29 — Only in Relation

New pieceOnly in Relation

Relational quantum physics as an argument about selves: a particle's properties are not held privately but exist in relation, and neither are ours. Developed after Helen Edgar's essay We Are Made of Relations: Quantum Physics and What It Means to Be Autistic (More Realms, 2026) — a house adaptation into the paged-zine form, credited as such. Rovelli's relational interpretation is flagged in-zine as one reading, not settled physics.

2026 · July 24

Wyrd & Weird, and a capital A

New pieceZine No. 28 — Wyrd & Weird

A guest zine by Helen Edgar (Autistic Realms), rehoused in the house paged-zine style with her text and her own sources note preserved: wyrd from Old English weorþan, “to become” — fate as something still in the making, and the long road from the Norns through Holinshed to Macbeth's Weird Sisters. A “threads already running” spread was added the same day, bringing it to nine.

SiteAutistic capitalized as an identity term, repo-wide

Autistic now carries its capital A everywhere it names an identity — across thirteen pages, in headings, body, colophons, and card and social descriptions. Left lowercase: autism, URLs, anchors, and verbatim work titles. Recorded as house style so it stays that way.

RevisedEvery Nervous System

“Change the room” became “change the environment” — the claim is about every setting, not only the ones with walls.

2026 · July 23

More-than-human neurodiversity

New pieceZine No. 27 — Every Nervous System

Neurodiversity extended past our own species, and animality reclaimed rather than fled. Built on Ombre Tarragnat's published essays on ethodiversity and bestialisation, with thesis-level claims marked explicitly as their stated position rather than settled consensus.

New pieceField Guide No. 7 — A Field Guide to Nervous Systems

The companion catalogue: the octopus with two-thirds of its neurons in its arms, the elephant's overwhelmingly cerebellar 257 billion, corvid forebrain density, C. elegans's 302 neurons and first complete connectome, the star-nosed mole's 25,000 touch organs. Many ways to be a mind, none of them the standard.

Fact-checkPass 5 — Field Guides 1–5, all verified

Star data, body-element abundances and forge sites, extremophiles, solar-system facts, and stellar types spot-checked across Neurodivergent Constellations, The Star Stuff You're Made Of, Life in Impossible Places, Worlds That Work by Other Rules, and The Ways of Being a Star. No corrections needed.

2026 · July 22

Three new pieces — and fact-checking became a standing practice

The busiest day of verification in the collection's history: a written guideline, a public ledger, and four audit passes in a row.

New pieceZine No. 25 — Shared Signal

Shared-signal space and the electromagnetic spectrum: connection carried on channels other than a face in a room. Coinage credited to Helen Edgar.

New pieceZine No. 26 — A Mycelium and a Rhizome

Decentralized knowledge and the Autistic Rhizome — no head, no center, entry from any point.

New pieceField Guide No. 6 — A Field Guide to Symbioses

Twelve partnerships: mutual aid written into biology, from Kropotkin through Margulis to Spade. Helen Edgar's fact-check was applied on arrival, and Monotropa uniflora added as the honest asymmetrical case — the one that takes without repaying, and belongs anyway.

Fact-checkA written standard and a public ledger

Fact-checking stopped being a habit and became a rule: primary sources only; aggregators, quote sites, encyclopedias and search summaries are leads, never citations; a direct quote is never a dressed-up paraphrase; coinages get their originator precisely. Every piece now carries a status — verified, plausible, corrected, or removed — in a per-piece ledger, and a standing Sources & corrections note went onto the front page and the About page. Not a beta banner that comes down; a permanent invitation.

The first pass found two attribution errors, both corrected: in Shared Air, “a future with a human face and dirt behind its ears” is Adam Flynn, Solarpunk: Notes toward a manifesto (2014), and “move quietly and plant things” is a movement slogan (Andrew Dana Hudson), not the manifesto; in Shared Signal, Streuber et al. (2026) found remote synchrony in VR comparable to face-to-face — we had written “weaker over video.”

Fact-checkSymbioses — a line given back to Dr. King

“We are caught in an inescapable network of mutuality” shipped credited to Baldwin. It is Martin Luther King Jr., Letter from Birmingham Jail (1963). The error came from trusting a secondary summary; Helen Edgar's fact-check caught it. This is the correction that produced the aggregators-are-leads-not-citations rule.

Fact-checkPasses 2, 3 and 4 — fourteen more pieces audited
2026 · July 21

The commons, made explicit

New pieceZines No. 22–24
  • No One Is the Leader (22) — emergence and the murmuration: each starling tracks six or seven neighbours, and the flock has no one in charge.
  • Bodies of Water (23) — hydrofeminism, shared flow, and belonging, after Neimanis.
  • Shared Air (24) — the atmospheric commons, the canary, and solarpunk. Reworked the same day to ground shared-air space physically in the co-regulation spread.
Fact-checkFour coinages traced to their originators
  • Spiral timeMarta Rose. Helen Edgar keeps felt time, which is hers.
  • Weather-bodiesOmbre Tarragnat (Sextant, 2024).
  • Autistic weatheringOmbre Tarragnat; Helen Edgar carries it into Autistic experience.
  • A coda's closing line credited to T. S. Eliot, Four Quartets.
SiteA license, a decisions log, and honest printing
  • The whole collection is licensed CC BY-SA 4.0 — print freely, share freely, in writing at last.
  • Print styles reworked so a paged zine prints and exports to PDF as a complete document, not just the spread on screen. These are made to be printed and handed to people.
  • The palette and the starfield twinkle were centralized into one shared stylesheet, so a color change happens once rather than in roughly twenty-five pages.
  • A decisions log seeded from history, recording what's settled and what's still open.
2026 · July 20

Eight zines, and a front door

The collection roughly doubled — the umwelt trilogy, crip time, fluctuating capacity, and the end of the severity scale.

New pieceZines No. 14–21
  • The Council of All Beings (14) — multispecies justice and more-than-human governance; a folding chair pulled up for the beings without a vote.
  • Every Creature's Own Sky (15) — the umwelt, monotropism, and the double empathy problem.
  • Minor Worlds (16) — niche construction and worldmaking, completing the treat / sense / build trilogy.
  • The Nearest Body (17) — tides and co-regulation: the Sun is far more massive, and the Moon still runs the water.
  • The Garden and the Stars (18) — knowledge gardening as star stuff.
  • No Universal Now (19) — crip time by way of relativity, with a guest coda by Helen Edgar.
  • The Same Water (20) — fluctuating capacity read through phase transitions.
  • Not a Line (21) — the spectrum as spectroscopic fingerprint, not severity scale. After Helen Edgar and Patrick Dwyer.
New pieceAbout Star Stuff

The shortest version of the whole idea, and the method behind it: begin from settled science, read it as an argument about belonging, say so when a source is contested. A Start Here card on the front page, then a permanent about pill in the navigation of every page.

RevisedThree pieces deepened by their sources
  • Council of All Beings gained a hydrofeminist coda spread by Helen Edgar, and dropped a closing line that framed us as hosts with “our own table.”
  • Every Creature's Own Sky integrated Tarragnat's reframing of the umwelt as precarious rather than sealed, with a beat on power and precarity.
  • Not a Line's colophon traced the constellation metaphor's lineage — Arnold, Murray, Milton, Hearst — via Dwyer (2021) and Milton/Edgar correspondence.
SiteSpread-level navigation and deep links

Paged zines got prev/next controls in each spread footer, so you can move without scrolling back to the top — and every spread got a shareable #spread-N address, so you can hand someone the one page you meant.

2026 · July 18

Guest voices, and the plumbing

New pieceThree field guides, a creed, and three zines
Fact-checkThe Difference-First Frame, sourced properly

Renamed from a working title and credited to Helen Edgar's essay outright. A Milton citation fixed, an attribution moved from Webster to Edgar, Tarragnat's own citation adopted, and Barad marked plainly as a Stimpunks addition rather than something the source said. Ombre Tarragnat referred to with they/them throughout.

SiteShared stylesheet, link previews, and accessibility groundwork
  • One shared stylesheet introduced, replacing per-page copies of the same navigation and utilities.
  • Open Graph and Twitter card metadata across every page, with a 1200×630 card image, so a shared link unfurls properly.
  • Favicon, sitemap, robots.txt, canonical URLs, and structured data with proper descriptions.
  • Reduced-motion support: the starfield twinkle, spins, fades and smooth scrolling all stand down when your system asks them to.
2026 · July 17

Day one — the collection goes up

Star Stuff opened with seven artifacts and finished the day with seventeen.

New pieceThe founding set
New pieceAdded over the rest of the day
RevisedSame-day corrections and deepenings
  • The Universe Runs on Difference: an inverted reference fixedCavendish Space is our answer to monoculture, not the monoculture. The clone banana is the cautionary tale; the space built for difference is the response. A note went into the repo guidance so the two never get conflated again, plus a disambiguation in the spiky-profile spread. Ethodiversity was then added as a capstone spread and its nesting corrected — biodiversity contains ethodiversity contains neurodiversity — crediting Cordero-Rivera by way of Tarragnat.
  • The Lines We Drew: colophon expanded with the full Gauss → Quetelet → Galton lineage, plus Chapman's Empire of Normality, Weird Pride's “Weird vs. Normal,” and Chaney's Am I Normal?
  • Eternal Sunshine: the funding and philanthropy angle dropped from the zine, affirmations and colophon; new tagline — the light was always yours, the sky was in the way.
  • You Were Never One Thing: a “not a diagnosis / not broken” refusal added, to hold the piece away from pathology-paradigm readings.
  • The constellation guide's number corrected from No. 2 to No. 1.
SiteA home, and a reading order

The site moved to its own address, starstuff.earth. Shared navigation chained the artifacts into a reading order with prev/next links and a route home from anywhere. The front page gained “Where We Come From” by Rainbow Mosho as featured artwork, a plain-language explanation of what star stuff means, and a link to the source repository — the whole collection has been readable and forkable from the start.

Browse the collection →