1. Praise for Innovative Browser-Based HN Archive
Users lauded the static, sharded SQLite approach for offline HN access. "Pretty neat project. I never thought you could do this in the first place, very much inspiring." - jacquesm
"Don't miss how this works. It's not a server-side application - this code runs entirely in your browser using SQLite compiled to WASM." - simonw
"I love this so much, on my phone this is much faster than actual HN." - meander_water
2. Alternatives to SQLite: DuckDB, Range Requests, PMTiles
Frequent suggestions for DuckDB's columnar analytics or HTTP range requests over sharding. "Question - did you consider tradeoffs between duckdb (or other columnar stores) and SQLite?" - carbocation
"One interesting feature of DuckDB is that it can run queries against HTTP ranges of a static file hosted via HTTPS." - simonw
"PMTiles is exactly that: a production-ready, single-file, static container for vector tiles built around HTTP range requests." - Humphrey
3. Technical Issues and Data Acquisition Fixes
Repo 404s (due to privacy), browser bugs, query slowness, and BigQuery sourcing dominated fixes. "The GitHub page is no longer available, which is a shame." - sodafountan (repeated by many)
"select * from items limit 10 and it is slowly iterating through the shards." - kristianp
"1. download_hn.sh - bash script that queries BigQuery and saves the data to *.json.gz." - keepamovin