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

推荐订阅源

Engineering at Meta
Engineering at Meta
G
Google Developers Blog
WordPress大学
WordPress大学
M
MIT News - Artificial intelligence
D
DataBreaches.Net
云风的 BLOG
云风的 BLOG
爱范儿
爱范儿
Microsoft Security Blog
Microsoft Security Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Blog — PlanetScale
Blog — PlanetScale
T
Tailwind CSS Blog
S
SegmentFault 最新的问题
阮一峰的网络日志
阮一峰的网络日志
博客园 - 三生石上(FineUI控件)
酷 壳 – CoolShell
酷 壳 – CoolShell
Recent Announcements
Recent Announcements
T
The Blog of Author Tim Ferriss
I
InfoQ
MyScale Blog
MyScale Blog
V
V2EX
B
Blog
罗磊的独立博客
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More

HN's home page

Rainbow Query Language | Hacker News Exec into Node via Kubectl An AI native hedge fund The Seven-Action Documentation Model | Hacker News Package Manager for Kubectl Plugins Tongan Castaways | Hacker News Tech overlords plan for conscious AI to conquer the cosmos. What could go wrong? Data Breach Disclosure Lag Is Getting Worse How LLMs Work | Hacker News I Dropped PRDs for Shape Up Go Experiments Explained | Hacker News FCA's Palantir deal could expose UK financial data to Trump's US, critics fear WebXR BCI for Neural-Adaptive Avatar Control in Mixed Reality The first murder conviction via DNA analysis Tom Interviews Theo de Raadt of the OpenBSD Project (2019) [video] Show HN: Replace shell commands with bun shell typescript scripts Quay.io Is Down | Hacker News AI driven analysis of brokerage account fees in the UK Bill Gates Spent Years Crafting His Image. Now It's Cracking Using LLMs to secure source code Wi-Fi 8 in the Lab [video] The household battery revolution that could change energy bills and the world Is Python Becoming Pinyin? | Hacker News Livia – Executive Assistant | Hacker News FindMyPipe – Query Apple Find My from Linux for AI Agents Show HN: Agent skill for creating product launch videos with Remotion RecruitMyself – AI job search copilot for resumes and applications AI coding agents and the erosion of system understanding The 'Resting' Generation and South Korea's Youth Recession AMD Computex 2026: 10 Years of AM4, AM5 Support Through 2029
Show HN: Thulr – a spoiler-free wiki for fantasy and sci-...
_matt_ · 2026-06-17 · via HN's home page

I built a wiki where you can set the current reading location (book + chapter) and articles get automatically truncated to only show information revealed up to that point. The problem with existing wikis was (for me, at least) that they would spoil complete character arcs already in the first few sentences of an article, basically making it impossible to look up any information before finishing an entire series. For something like the 14-book Wheel of Time series with literally thousands of characters, this is really painful. Especially if you're listening to the audiobooks, spread across months, it's really hard to keep track of all the names and places. There have been only a few attempts of spoiler-safe wikis before, such as Spliki (recently discontinued) and Coppermind (which is really great, but Sanderson-only).

Thulr is still a work in progress. I've only got a single series on there so far, Fourth Wing/Empyrean, which is much less complex than e.g. Wheel of Time. I think the current pipeline won't automatically scale up to those more extreme cases, so I'm trying to only slowly increase the complexity of series that I'm adding. It also currently only supports one clear timeline, so I'm not entirely sure yet how to handle the case where you've got non-obvious reading-orders or auxiliary books (such as having one wiki for all of the Tolkien/Middle-earth books).

My current implementation partially uses LLMs. I built a multi-step pipeline that collects chapter-level information on different entities and then aggregates that into final article candidates. This still needs a ton of manual back-and-forth for quality-control and editing. I want articles to incrementally reveal more information (as opposed to: rewrite the full article on each new time horizon), which makes the amount of text manageable, but can lead to awkward prose at times. E.g., name reveals or character identity collapses (think: Voldemort & Tom Riddle in Chamber of Secrets) can't be spoilered in an article at an early time horizon, but those paragraphs need to stay in the article even at a late time horizon. I'm still trying to find better approaches for this.

Any feedback or ideas on the UX (I'm very new to this) and data processing would be great.