Recently quit my job, now I work on anything that holds my interest (until I run out of money)
- mp4tag.io (idk if still works) - hn.zip (unfinished) - loopbox.app (unfinished)
Absolutely - one of my favorite bug with users was an application we had made in which the loading of a filtered view was so slow, that results would come in one-at-a-time, such that clicking 'select all' would only select those ones. When this was removed, users complained until we added shift-clicking to select groups of items
Ah that's on me, it's a private repo because my code is embarrassing. But behind the scenes here's how it works:
- I wrote my own scraper for HN for reasons I no longer remember
- Scraper is called every 30 seconds by an Apps Script timer on a Google Sheet (to be dirt cheap, Vercel doesn't have free cron jobs).
- Caches the front page, plus ten comments per post into a single Firestore document (to save money on reads vs 20 reads per load)
- Home page loads via SSR with Nuxt.
- Post pages will load the rest of the comments from a separate doc for each post
- the other comments load instantly on navigation if on a halfway decent connection - but if not, you still get to see the first 10 comments to get an idea of the discussion while you wait.
- Added some Workbox stuff to get it offline-first.
- Added an IndexDB wrapper around Firestore for more control over cache behavior I think.
- It's worked now for over a year with no oversight needed and not costing a penny!
Then I got distracted because I wanted to rebuild it from scratch to not use Nuxt and never completed that rewrite. Been a while since I've worked on it, had no idea other people even knew it existed! There's definitely some bugs (I think CSS gets broken on deeply nested comments) but it worked enough for my uses so I moved on.
This project is an enhanced reader for Ycombinator Hacker News: https://news.ycombinator.com/.
The interface also allow to comment, post and interact with the original HN platform. Credentials are stored locally and are never sent to any server, you can check the source code here: https://github.com/GabrielePicco/hacker-news-rich.
For suggestions and features requests you can write me here: gabrielepicco.github.io