Which authors used 'scaling laws' on Hacker News in 2023 — all of them?
enumerationauthors
Answer
The full roster with a count per author. There is no page 2.
Methodology
A ranked engine returns a sample and cannot say what fraction of the population you saw. Here the phrase is a predicate, the author roster is a GROUP BY, and the result is the population — the same shape answers any list-all-X-with-property-Y question.
Last verified: 2026-08-27
Query
Run this SQL in Scry to reproduce this answer. Paste into Claude Code with the Scry prompt, or call the API directly.
SELECT author, count() AS n FROM internet.text WHERE relation='hackernews.items' AND ts >= '2023-01-01' AND ts < '2024-01-01' AND scry_lex('"scaling laws"') GROUP BY author ORDER BY n DESC LIMIT 500Related questions
Try this query yourself
Create a Scry account, get your personal key from Console, then copy the Scry prompt into Claude Code. Your agent composes the SQL.
Get the Scry prompt