Ask HN: What do you use for your personal blog?

15 pointsposted 11 hours ago
by canergly

Item id: 41608459

41 Comments

keraf

2 hours ago

Ghost for my personal blog and also photography portfolio. Been happily using it for years, easy to self host. Quite surprised not to see more mentions of it here.

hiAndrewQuinn

5 hours ago

Hugo! Compiles Markdown down to a stack of static HTML files, with a ton of flexibility. Currently i have it powering https://andrew-quinn.me/ , https://hiandrewquinn.github.io/til-site/ , and https://hiandrewquinn.github.io/selkouutiset-archive/ , all of which serve different niche purposes.

As for hosting, hosting HTML pages is super easy. The lowest effort for Hugo is GitHub Pages. Netlify is another solid option. https://andrew-quinn.me/ runs on Azure Static Web Apps, but that might take more cloud familiarity than you want to invest in. Or you could just run `hugo` and SCP the resulting directory to a VM!

senkora

2 hours ago

Use a static site generator that is written in a language that you know well, so that you will be comfortable updating it and installing extensions. I use Pelican because I am comfortable with Python. Many people use Jekyll because they are comfortable with Ruby.

mmarian

3 hours ago

Astro SSG. Can easily add Tailwind and React, which I use in my day to day. Got a couple of sites ranked in top 3 for the keywords I'm targeting. Hosted on Cloudflare Pages, for free.

innertracks

an hour ago

Racknerd VPS running Caddy serving a Hugo generated static site. Site and content are created/edited in Emacs and rsynced to server. Took the default Hugo generated theme and tweaked it to my tastes. Forget where I sourced the original CSS I used as a starting point.

https://www.hextxt.com

vunderba

3 hours ago

I swapped away from Wordpress to Pelican, a static site generator written in Python. The theme is a heavily customized version of Octapress - and its really performant with zero third-party dependencies / network requests.

Plus I like that I can literally click a button in Obsidian which formats a note, compresses/optimizes the media, and pushes it up to my website. Frictionless blog posting FTW.

https://github.com/getpelican/pelican

https://mordenstar.com

Though... recently I've been thinking about swapping over to Astro because the grass is always greener.

jdevy

2 hours ago

I like Jekyll [1]. It is simple, uses markdown, and open source. I am not sure about the SEO part though.

[1]: https://jekyllrb.com/

latchkey

2 hours ago

Not personal, but I've started using bullet.so for my company blog (and website).

I like that I can just write stuff in Notion and have it magically appear on a webpage with decent formatting. Not perfect, but fairly easy to setup, customize and maintain.

pdyc

3 hours ago

i use hugo for static site generation and i write blog in emacs org mode. Hosting is on cloudflare pages.

skwee357

3 hours ago

For my 3 blogs (info in my profile), I use Astro with markdown on Netlify, but will move soon to my own VPS.

leros

3 hours ago

Why would you move from a static host to a VPS for a blog?

skwee357

2 hours ago

To clarify, it’s about the server.

It still static, but will be served from my hardware rather than a PaaS.

leros

2 hours ago

But isn't a VPS an inferior option compared to a static host like Netlify? Netlify is free and gets your statics on a global CDN. A VPS is not free and has to serve the statics itself.

mattnewport

4 hours ago

I use Zola, a static site generator written in Rust, and Github pages for hosting on my own domain.

Curiositry

an hour ago

Ghost, self-hosted on Fly.io free tier

ramon156

2 hours ago

Zola. Nice defaults, that's it. Also I'm biased towards Rust

abhgh

5 hours ago

I use Jekyll[1]. It's quite popular which implies that it's easy to search for answers online or find steps to some specific customization you might need.

[1] https://blog.quipu-strands.com/jensens_inequality

boricj

3 hours ago

Same, although I recommend not relying on GitHub pages for generating the site due to the age of the gems available on it. I've initially kept my blog compatible with it even though I'm serving it from my NAS, but I ended up ditching compatibility because of that in order to use more modern versions.

mergisi

7 hours ago

I recently created a blog website using OpenAI o1, and it’s been great for generating content with minimal effort. If you're looking for something self-hosted, you can check out my project on GitHub here: [https://github.com/mergisi/openai-o1-coded-personal-blog . Let me know if you have any questions or need more details!

ig0r0

4 hours ago

Hugo as a static site generator and hosted on Netlify with a custom domain.

user

4 hours ago

[deleted]

iamflimflam1

3 hours ago

Still using Jekyll, keep meaning to switch to something else, but it works… www.atomic14.com

rewind94

3 hours ago

Astro with Markdown with a static host. Quite simple and quick to get started.

satvikpendem

4 hours ago

I tried a lot, now it's just pure HTML and CSS.

perteraul

9 hours ago

Ghost can be easily spun up as a Docker container, is relatively fast and has a good SEO out-of-the-box.

pacifika

11 hours ago

I’m working on and using Lamb. You can find it via the github link in my profile.

The usp is friction free super simple blogging, self-hosted.

If you don’t mind using something under construction, I’d love to head any feedback.

canergly

11 hours ago

I'll have a look at it, thanks.

gregjor

10 hours ago

github page with a custom domain

canergly

10 hours ago

I think it is for deployment right? I was also looking for a blogging system / script that I can host anywhere I like.

thesnide

an hour ago

I'm also using github pages. It is limited but boring enables to focus on content instead of trying every fancy tool.