Ask HN: How to build a light weight personal blog?
31–40 of 115 posts
Re: Ask HN: How to build a light weight personal blog?
#32Re: Ask HN: How to build a light weight personal blog?
#33I personally have avoided Jekyll for the primary reason of "Ruby is a non-starter".
Downside to Hugo is that the Go templating language is... interesting, to say the least.
Re: Ask HN: How to build a light weight personal blog?
#34This sounds like a job for Hugo, GitHub and Netlify. Simple. Easy. Free. You can even set up a form and get comments into your email. (Then just manually copy/paste into the markdown and commit it again and force a rebuild). I use that setup and I love it.
> just manually I would find this tedious for any number of comments. Is there a better way?
Or use a hosted service like Disqus or an alternative if you want comments, but the better solution is not to bother.
Re: Ask HN: How to build a light weight personal blog?
#35Custom domain with private repo costs few dollars per month.
Re: Ask HN: How to build a light weight personal blog?
#36Write the post in markdown then convert them to HTML with pandoc. Write a bash script which walk into every directory to convert and you have a minimalist blog engine.
Re: Ask HN: How to build a light weight personal blog?
#37Re: Ask HN: How to build a light weight personal blog?
#38A key take away from many years of running a blog as a static website is that may add friction to your process. Unless you have some sort of CI/CD going on, the chances are that one can only post from their own computer, while using something like Wordpress allows them to post from anywhere — including their mobile devices — which leads to a ton of serendipity. You might want to evaluate if posting from multiple devi…
Regarding posting only from your computer, you can just use a git repo that triggers builds on push.
You can see many options for them here https://jamstack.org/generators/
Re: Ask HN: How to build a light weight personal blog?
#39Re: Ask HN: How to build a light weight personal blog?
#40https://github.com/johan-bolmsjo/blog_of_markdown
It's built using make, small bash scripts and two Go support programs. I think there are tons of similar generators out there as writing one is pretty easy. Probably more sensible to look into using something like Hugo. For me it was easier to write the minimal generator than figuring out how to configure Hugo as I like it.