Live data from Hacker News

Ask HN: What is the best way to author blogs in 2024?

news.ycombinator.com

71–80 of 137 posts

Re: Ask HN: What is the best way to author blogs in 2024?

#71
I switched back and forth between Astro and Hugo.

I ended up staying with Hugo because I post loads of photos and image optimisation, or responsive images, was much easier to implement in Hugo.

I heard Astro now has better image processing, so I might give it another try as migrating templates and posts between Hugo and Astro was actually pretty easy.

Re: Ask HN: What is the best way to author blogs in 2024?

#72
post #62

You could probably get far with Wordpress. Why? Because if you're technical you can navigate the tricky setup well, and it's made in a way to support a lot of things for non-technical people. Of course you gotta get it running (or pay people like WP Engine), but you're going to end up with a thing that will work. That or dev.to is a good spot I think.

I run a Wordpress instance on my home server. An extract job regularly exports a static version of the site. I host it on a DO droplet with a bunch of other static websites.

Re: Ask HN: What is the best way to author blogs in 2024?

#74
I use Hashnode[0] for my main technical blog[1] as they support custom domain and all posts can be automatically saved to Github as markdown.

I also use for manually saving some comments/replies I post on social media Scribbles - a simple blog engine. I publish them on a subdomain[3] in case you want to see how it looks like.

Here are some things I would look for when choosing a platform:

1. Bring your own domain - this is very important because it allows flexibility to switch to any other platform while keeping your audience/place

2. Export as markdown - while markdown is not the best format, still exporting to it makes the possibility to migrate easier.

3. Have support for RSS - I use RSS to track a big number of technical blog and consider it important

4. Have support to display author name and date of publishing. This is important for technical topics to allow proper citation and to put the knowledge in context.

- [0] https://hashnode.com

- [1] https://allaboutcoding.ghinda.com

- [2] https://scribbles.page

- [3] https://notes.ghinda.com

Re: Ask HN: What is the best way to author blogs in 2024?

#75
By far the easiest if you just want to go from markdown to online blog would be a static site on Github pages. I use Hugo [0] with a custom theme but there are even easier options if you don't even care about style. In particular, I have used Grip [1], which can generate HTML from markdown.

[0] https://lukesalamone.github.io

[1] https://github.com/joeyespo/grip

Re: Ask HN: What is the best way to author blogs in 2024?

#78
I like to keep things as simple as possible. I just write my blog posts directly as HTML, using Svelte+Kit as my technology stack, hosted on a cheap Hetzner VPS. I didn't want to learn or build a static site generator, and my articles mostly consists of a header and a bunch of

-s anyway.

Re: Ask HN: What is the best way to author blogs in 2024?

#79
post #56
post #53

I run allaboutberlin.com for a living. I switched from Craft CMS to a homebrew static site generator (Markdown + Jekyll) and it was a game changer. Static sites are almost maintenance-free. They cost pennies to host. You work on your content using the tools that you love, if necessary offline. There are many excellent markdown editors and no CMS comes close. Everything is under source control and deploys with a push.…

Why not roll your own? Sure, you have to build it and maintain it, but isn’t that in the spirit of programming? It’s fun.

Assuming that the purpose of the blog is to write/publish, then all of that is distraction from actually writing.

Re: Ask HN: What is the best way to author blogs in 2024?

#80

I use substack thinkingthrough.substack.com I have hosted many in the past. Self hosted, wordpress, and a php version (I forgot what it was called) The biggest problem with all those was dealing in spam comments and bad cross links. Then I tried medium but it didn’t use to share subscriber emails. Ended up migrating to Substack and been very happy with it for past 3 years

Have you considered not having Comments? That would completely eliminate spam and ~100% of your troubles.

yeah I thought about it but then it defeated the purpose of comments i.e. engagement and perspective of reader. Substack does a good job at it
Post reply on HN