There are hundreds of posts that people are reading at every moment. I don't think it's that less.
Or take a quantitative approach. HN item IDs are sequential. Using the API:
$ curl 'https://hacker-news.firebaseio.com/v0/maxitem.json' 32409711 $ curl -s "https://hacker-news.firebaseio.com/v0/item/32409711.json" | jq .time 1660125598 $ curl -s "https://hacker-news.firebaseio.com/v0/item/$(( 32409711 - 14400 )).json" | jq .time 1660031940
There are hundreds of posts that people are reading at every moment. I don't think it's that less.