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

推荐订阅源

J
Java Code Geeks
Stack Overflow Blog
Stack Overflow Blog
B
Blog RSS Feed
C
Check Point Blog
D
Docker
Y
Y Combinator Blog
Recent Announcements
Recent Announcements
Google DeepMind News
Google DeepMind News
MongoDB | Blog
MongoDB | Blog
博客园_首页
Apple Machine Learning Research
Apple Machine Learning Research
量子位
有赞技术团队
有赞技术团队
IT之家
IT之家
大猫的无限游戏
大猫的无限游戏
D
DataBreaches.Net
M
MIT News - Artificial intelligence
B
Blog
阮一峰的网络日志
阮一峰的网络日志
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
腾讯CDC
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
V
V2EX
月光博客
月光博客

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.