Live data from Hacker News

Ask HN: What cool stuff do you run free-tier?

news.ycombinator.com

1–10 of 51 posts

Re: Ask HN: What cool stuff do you run free-tier?

#3
Sketchviz [1] runs almost entirely in free tiers from Cloudflare and AWS:

- Cloudflare to avoid big bandwidth bills from AWS for the wasm-compiled graphviz that is on every page

- AWS Lambda's 1M free requests and 400,000 GB-seconds for expressjs (web serving) and graphviz (rendering hostable .png images)

- API Gateway's 1M free requests for routing HTTP -> AWS Lambda (for the app) or S3 (for hosted PNGs)

- S3's 20K GET requests/mo (for hosted PNGs)

The only one I exceed is S3, but it's dirt cheap.

[1]: https://sketchviz.com/new

Re: Ask HN: What cool stuff do you run free-tier?

#4
post #3

Sketchviz [1] runs almost entirely in free tiers from Cloudflare and AWS: - Cloudflare to avoid big bandwidth bills from AWS for the wasm-compiled graphviz that is on every page - AWS Lambda's 1M free requests and 400,000 GB-seconds for expressjs (web serving) and graphviz (rendering hostable .png images) - API Gateway's 1M free requests for routing HTTP -> AWS Lambda (for the app) or S3 (for hosted PNGs) - S3's 20K…

Bravo. Very cool leveraging services this way, I like your idea of architecting to optimize free tier svcs.

Re: Ask HN: What cool stuff do you run free-tier?

#5
post #3

Sketchviz [1] runs almost entirely in free tiers from Cloudflare and AWS: - Cloudflare to avoid big bandwidth bills from AWS for the wasm-compiled graphviz that is on every page - AWS Lambda's 1M free requests and 400,000 GB-seconds for expressjs (web serving) and graphviz (rendering hostable .png images) - API Gateway's 1M free requests for routing HTTP -> AWS Lambda (for the app) or S3 (for hosted PNGs) - S3's 20K…

Cool stuff! Inspiring :)
Post reply on HN