Ask HN: Where do you host your personal blog these days?
31–40 of 72 posts
Re: Ask HN: Where do you host your personal blog these days?
#32Re: Ask HN: Where do you host your personal blog these days?
#33Re: Ask HN: Where do you host your personal blog these days?
#34[1]: http://www.bauva.com
Re: Ask HN: Where do you host your personal blog these days?
#35Re: Ask HN: Where do you host your personal blog these days?
#36Re: Ask HN: Where do you host your personal blog these days?
#37Re: Ask HN: Where do you host your personal blog these days?
#38Look at static blog generators (hugo, jekyll) + s3 + cloudfront. You don't pay unless you have traffic.
Along these lines, I'm trying Github pages with Jekyll; works for me.
I sent one up in January. Despite not spending much time on it so far, there were a couple things I've already gathered from it.
First, is basic Git functionality. Without having much experience with remote repos, it provided me a good opportunity to try things out without being able to break too much. I essentially write up posts locally, then push them to a GitHub repo. Super simple.
Second is Linux and SSH. I have local repos on a Linux machine at home. I can SSH into the machine, write up a post, then push it out. I had very little knowledge of Linux and SSH prior. It's been pretty helpful.
The biggest thing I think it offers is convenience. I have a very simple way of writing posts, no matter where I am. It's pushed me to learn new systems (ones that a lot of people are already familiar with) and it allows for a simple means of fixing things (through GitHub's interface) in case I do break anything.
Re: Ask HN: Where do you host your personal blog these days?
#39Hugo + Github is killer. So is Jekyll on Github, I just prefer Hugo because it's easier to setup locally and also allows greater theme control. my site: https://cmp.is repo: https://github.com/0xcmp/cmpis.github.io-hugo
(To clarify: https:github.com/shitpostingblog, but https://shitbpostingblog.xyz is not)
Re: Ask HN: Where do you host your personal blog these days?
#40I use Pelican (static generator) and host on Digital Ocean (calebmadrigal.com).
Pelican is great. I have it installed on a local vm which I use for composing then I push the static files to the webserver (ramnode). (www.adammelton.com)