The post describes a weekend project called Marlin, a lightweight search system for makers that crawls domains, skips empty pages and bot walls, uses a small local language model to generate short descriptions and tags, and keeps the metadata footprint tiny enough that roughly 500,000 domains fit in about 1 GB. The code is already public. The author was explicit in the comments that this is not meant to compete with Google, Bing, DuckDuckGo, or ChatGPT. The point is to fork it, define your own crawl policy, start from a seed list of sites you care about, and build a personal or niche search engine around that slice of the web.
The useful signal was not "wow, 500k domains." Most people pointed out that storing and querying that many documents is easy on modern hardware. The interesting part is that search keeps breaking into two separate problems. One is commodity indexing, where
Lucene or similar tools are enough. The other is discovery and curation, where mainstream search has gotten worse and where a homegrown system can do a much better job on a narrow corpus. That is why several comments treated this less as an impressive scaling feat and more as another example of search becoming a hackable local application again, now with local models handling classification, translation, and summarization that used to require cloud services.
The thread also exposed the hard limits. This crawl takes the happy path. It skips
Cloudflare, captchas,
JavaScript-heavy sites, parked domains, and other ugly corners of the modern web. That makes it cheap and approachable, but it also means the resulting corpus is incomplete and biased toward simpler sites, which is exactly why some readers compared it to
Kagi Small Web or to older web-directory ideas rather than full web search. The strongest reactions were not about the search engine at all, though. They were about the article's AI-written presentation. People were willing to forgive rough code and rough scope. They were much less willing to dig through bloated AI prose to figure out what was actually built.