Don't know if this qualifies as cool but I built a single purpose site to list IMDb ratings of all episodes of a TV show in a grid, which runs on GitHub Pages. It doesn't use any external APIs. https://theshowgrid.com I built it mainly for personal use. I know IMDb ratings aren't perfect but it's a decent measure of mass opinion.
I saw the network tab while searching, and no API calls were made for searching. If possible can you elaborate on how you made the search like this possible? Also loved the minimalist design and also how you can see your recently searched terms at the bottom.
Ask HN: What cool stuff do you run free-tier?
41–50 of 51 posts
Re: Ask HN: What cool stuff do you run free-tier?
#42My favorite stack is now google cloud run + DynamoDB. I built a little template for myself to quickly start new projects, that is also hosted with this free tier: https://forever-free-cloud-app-starter.chriszhu.me/
Re: Ask HN: What cool stuff do you run free-tier?
#43- Github pages is always great
Re: Ask HN: What cool stuff do you run free-tier?
#44Don't know if this qualifies as cool but I built a single purpose site to list IMDb ratings of all episodes of a TV show in a grid, which runs on GitHub Pages. It doesn't use any external APIs. https://theshowgrid.com I built it mainly for personal use. I know IMDb ratings aren't perfect but it's a decent measure of mass opinion.
Would you also add the average score per season ?
Re: Ask HN: What cool stuff do you run free-tier?
#45Re: Ask HN: What cool stuff do you run free-tier?
#46Don't know if this qualifies as cool but I built a single purpose site to list IMDb ratings of all episodes of a TV show in a grid, which runs on GitHub Pages. It doesn't use any external APIs. https://theshowgrid.com I built it mainly for personal use. I know IMDb ratings aren't perfect but it's a decent measure of mass opinion.
Clever. Nice work. Would you also add the average score per season ?
Re: Ask HN: What cool stuff do you run free-tier?
#47Don't know if this qualifies as cool but I built a single purpose site to list IMDb ratings of all episodes of a TV show in a grid, which runs on GitHub Pages. It doesn't use any external APIs. https://theshowgrid.com I built it mainly for personal use. I know IMDb ratings aren't perfect but it's a decent measure of mass opinion.
I saw the network tab while searching, and no API calls were made for searching. If possible can you elaborate on how you made the search like this possible? Also loved the minimalist design and also how you can see your recently searched terms at the bottom.
The architecture is dead simple. Multiple times a week IMDb publishes bare bones datasets. I've a bash script to download them, format and load into MySQL from which I export two types of json files:
1) a file with all the TV shows names, id, ratings etc (shows.json) - this is what's used for search. It weighs 2MB compressed and I could certainly optimize but considering the low traffic I've stashed it for later time.
2) A file for every tv show with all the ratings and votes for its episodes. Based on your search, the specific file will be fetched to display ratings. This one file per show could also be optimized but looks premature at this stage.
You can see them here: https://github.com/dvnlgls/theshowgrid/tree/gh-pages/assets
Strictly speaking, a database is also not necessary but it serves 2 purposes: 1) I could query easily to satisfy some curious show related questions. 2) The datasets include a ton of stale data (like shows w/o episodes and vice versa), so I find it easier to cleanup through SQL.
Re: Ask HN: What cool stuff do you run free-tier?
#48Don't know if this qualifies as cool but I built a single purpose site to list IMDb ratings of all episodes of a TV show in a grid, which runs on GitHub Pages. It doesn't use any external APIs. https://theshowgrid.com I built it mainly for personal use. I know IMDb ratings aren't perfect but it's a decent measure of mass opinion.
I like the simplicity, nicely done. On the homepage there is a giant empty spot on the right, not sure if that was intentional or something isn't loading. If there's nothing there now, maybe a screenshot of a sample show would be a nice way to introduce it.
Re: Ask HN: What cool stuff do you run free-tier?
#49Don't know if this qualifies as cool but I built a single purpose site to list IMDb ratings of all episodes of a TV show in a grid, which runs on GitHub Pages. It doesn't use any external APIs. https://theshowgrid.com I built it mainly for personal use. I know IMDb ratings aren't perfect but it's a decent measure of mass opinion.
Super-cool, thank you! How else could I so quickly learn which e.g. South Park episodes to watch?!
Re: Ask HN: What cool stuff do you run free-tier?
#50Don't know if this qualifies as cool but I built a single purpose site to list IMDb ratings of all episodes of a TV show in a grid, which runs on GitHub Pages. It doesn't use any external APIs. https://theshowgrid.com I built it mainly for personal use. I know IMDb ratings aren't perfect but it's a decent measure of mass opinion.
awesome work! makes it easier to figure out what to watch first in a new series, and even if it's worth watching. I also appreciate the snapiness due to not using external APIs.