Hacker News new | ask | show | jobs
by janalsncm 1 day ago
> Apparently using Vercel to host a personal blog might not be the best idea. I'm nearly reaching the limit of Edge Requests in just 2 hours after the post.

I had always thought that fixing outages was one of the least appealing parts of software engineering, but so many SWE blogs seem to have built blogs in ways where downtime is inevitable.

Unless there is an extremely good reason not to use one, a static site generator works perfectly well. Next, there are many 3p services which will display that site for free. GitHub pages, AWS free tier, I’m sure there are plenty of other ones.

Importantly, and relevant to this article, the files live on your computer. You can mirror them in any number of repos if you want, but it is not possible for any 3p service to hold them hostage.

I am thoroughly convinced that this is the right way that I’d even go so far as to say it is a best practice for roll-your-own blogs, and any sort of issue like the article describes is a direct result of not following that best practice.