Live data from Hacker News

Ask HN: What stack is your personal blog built on?

news.ycombinator.com

51–60 of 80 posts

Re: Ask HN: What stack is your personal blog built on?

#51
post #5

I went with Wordpress after a blogging guide suggested to minimize time spent messing with the blogging software, because messing with blogging software isn't blogging.

True that, but it's good fun anyway ;-) Plus, I'd rather spend two days setting up a usable, solid stack than be annoyed with WordPress every time I load their web interface...

Re: Ask HN: What stack is your personal blog built on?

#53
Wordpress with a very simple theme and hardly any plugins. Put it behind free cloudflare account, setup caching/minification and it works like a charm. I self host so little bit of VPS setup knowledge is useful (Nginx with PHP-FPM).

I also like hugo a lot but never got the time to setup my blog on it.

Re: Ask HN: What stack is your personal blog built on?

#56
Running my girlfriend's recipe blog on Python + Django + Wagtail CMS on a Heroku server, wired up to Google cloud storage. It ends up being completely free with the dev tier Heroku server and staying within the free tier of Google's cloud storage.

It was mostly as a learning exercise, but it's a pretty flexible stack, and I'm a fan of the Wagtail admin panel; didn't really feel the need to customize anything there.

Re: Ask HN: What stack is your personal blog built on?

#58
Back in college, I started using what I knew for what I wanted to do. I ended up with a blog using Java EE and Postgres. Total overkill (it's FAST!), but it's been fun over the years to toy with not just blog things (like implementing Markdown, full text search, and backup/restore), but HTTP things (like SRI and CSP).

Re: Ask HN: What stack is your personal blog built on?

#59

My personal blog: https://www.encona.com/ Built using: - gatsby (static site generator) - netlify CMS (git-based headless CMS) - GitHub (git remote for netlify) It was dead easy to set this up, as someone had already done the work: https://github.com/alxshelepenok/gatsby-starter-lumen I tried to set up something similar from scratch myself, using Strapi as the CMS, but I found myself re-inventing too many wheels (e.g…

I have an identical setup to this, painless to deploy updates/blog posts and zero cost. I was previously using Jekyll, but moved over to Gatsby a few months ago and have enjoyed the built-in features of Gatsby and it’s surrounding ecosystem so far. I have also considered integrating a git based CMS like Netlify CMS, but because it’s so easy to make new blog posts with just a git commit and a push I haven’t taken the…

I like using the Netlify CMS because:

- I don't need to think about filenames

- It gives me a nice preview

- I can edit markdown as either plain text or rich text, and switch between them with a toggle

- (Most important) I don't need to worry about whether I've properly filled in the 'frontmatter' section at the top of the file

The format of the frontmatter is indicated to Netlify CMS by the existence of a simple config file in your repo. So it should be easy to give it a try if you want:

https://github.com/alxshelepenok/gatsby-starter-lumen/blob/m...

Re: Ask HN: What stack is your personal blog built on?

#60

Hugo for my blog, but I am redoing everything with Gatsby.js now. My course platform uses Next.js for server-side rendering + Firebase. When I launched it, I have written up a longer article about my choices: https://www.robinwieruch.de/how-to-build-your-own-course-pla...

What made you move from Hugo to Gatsby?
Post reply on HN