Hacker News new | ask | show | jobs
by tgv 1 hour ago
It probably also got swamped in real-time...
1 comments

Do you mean it's not updated? You gotta sort by update_time column. Looks sorted, but you gotta sort it with a query like:

SELECT * FROM hackernews_history

ORDER BY update_time DESC

LIMIT 100;

And yeah, I got that from deepseek because I don't have a brain.