Ask HN: What is the best way to author blogs in 2024?
41–50 of 137 posts
Re: Ask HN: What is the best way to author blogs in 2024?
#42Re: Ask HN: What is the best way to author blogs in 2024?
#43Earlier quoted context omitted.
I know but I don’t want to mess with the site css since that’s literally the only table I have used in 7 years ahah I do want to make a better page for that list though so I appreciate you nudging me.
two options: link to an external google sheet as well, or add the table as an image
Re: Ask HN: What is the best way to author blogs in 2024?
#44Text and imagery? Html is made for this.
You mean to code it by yourself? Nah, I, like most people interested in blogging, will pass.
Or you can just not approach it, that's fine too, I don't care what you do. I'm only trying to be helpful.
Re: Ask HN: What is the best way to author blogs in 2024?
#45Earlier quoted context omitted.
import random platform = random.SystemRandom().choice(["Astro", "Blogger", "Hugo", "WordPress", "Ghost"]) print(platform)
Stylistic note, you can use `random.choice()`. If you aren't generating an encryption key, you probably don't need `SystemRandom`.
Re: Ask HN: What is the best way to author blogs in 2024?
#46Re: Ask HN: What is the best way to author blogs in 2024?
#47I've been very happy with Astro because it is a good example of low floor and high ceiling software. I can start with plain HTML, make it more flexible with Astro language (still very close to HTML), make authoring easier with Markdown (+ lifestyle extensions from Remark/Rehype), and extend to frameworks like React on a need basis (which I use for some pages where I use maps).
[1]: https://sanyamkapoor.com [2]: https://sanyamkapoor.com/kb/the-stack
Re: Ask HN: What is the best way to author blogs in 2024?
#48Earlier quoted context omitted.
I don't want to cramp your style, but displaying those in a table would really improve readability
I know but I don’t want to mess with the site css since that’s literally the only table I have used in 7 years ahah I do want to make a better page for that list though so I appreciate you nudging me.