Live data from Hacker News

Ask HN: Is maintaining a personal blog still worth it?

news.ycombinator.com

131–140 of 173 posts

Re: Ask HN: Is maintaining a personal blog still worth it?

#132
post #128

I do it for myself. I know that every platform downranks external links, and that Google is slowly strangling the independent web while everyone is also using it to train their AI. But God dammit, I am still staking my claim on this tiny space on the internet. This is my little digital garden, and it still attracts the occasional friend. If not, at least it stays mine and won't disappear when some walled garden is in…

This! I am writing a lot of technical articles but mostly they don't have that much impact. It's more advertising myself if someone wants to hire me. I get kudos from friends and colleagues, but never reach a "wide reach". Still it's fun and helps me learning stuff.

Re: Ask HN: Is maintaining a personal blog still worth it?

#134
I don’t blog. I do write for myself though.

I used to think I would blog but I came to realize that it takes a certain personality to believe that others want to read what you think, and ultimately that’s not me.

Which is freeing: I can just write without caring about what anyone except myself thinks.

I refer back to it quite often. And it helps me clarify my thoughts to write them down.

Re: Ask HN: Is maintaining a personal blog still worth it?

#135
> Remember when maintaining a blog was THE way to build your developer brand?

I don't think that the popularity of blogging overlapped meaningfully with the era in which the term 'developer brand' was a thing.

By and large, people blogged because they liked it, back when it was popular; the reasons that it became less popular are fairly complex. But I don't think many people were blogging to build a 'brand', back at the peak. I'm sure some were, but it wasn't a major motivation.

Re: Ask HN: Is maintaining a personal blog still worth it?

#136
Your post actually inspired me to want to start blogging so I will share what I'm thinking about.

Plain HTML only with a single page and hyperlinks into a specific article. Very basic styling and no JS, don't even necessarily want to have a css file, just inline in the header. Very likely just setting font family to sans and be done with it.

I sometimes play with esoteric stuff that might be fun to blog about.

Stuff I've recently played with and deployed on internal tools was a SPA built using just js. No react etc. Basic router which makes use of the history API and use the observer pattern with MVC for "components" but generally those are just entire pages.

And a "component" or "page" is just a function that takes a router (could extend it to include props I guess ala react) and returns a Promise.

All the router does is looks up the function in a map and calls it replacing the top level div on the page with the returned HTMLElement.

All external loading happens at the page level and not at component level and it's simple enough.

There's a point where you need a bigger framework like react but I find it a pain to include react and npm etc when all I need is some very simple pages with some dynamic content.

A writeup on the pros and cons etc might be fun.

The next thing I'm playing with is possibly something like a job system(well promises in JS would work fine) and using that for state updates. Think goroutines and channels. There are some existing articles on that but they reference very old libraries and I feel there might be no reason to use a library or even channels on the web for that concept.

Re: Ask HN: Is maintaining a personal blog still worth it?

#137
It could be argued (and I certainly believe so) that because of the spammy bs nature the internet has acquired, now is the most important time to create your own, genuine content. To fight back against aggressive globalisation and commodification of the internet, and in turn, socialisation. I believe we need much less of "generic SEO-maxxing Instagram influencer with 10M followers", and much more "average person who put genuine thought and effort into something cool for a handful of consumers". No better time than now to consider the choice of where we want out future to lead.

Re: Ask HN: Is maintaining a personal blog still worth it?

#138
post #136

Your post actually inspired me to want to start blogging so I will share what I'm thinking about. Plain HTML only with a single page and hyperlinks into a specific article. Very basic styling and no JS, don't even necessarily want to have a css file, just inline in the header. Very likely just setting font family to sans and be done with it. I sometimes play with esoteric stuff that might be fun to blog about. Stuff…

> Plain HTML only with a single page and hyperlinks into a specific article. Very basic styling and no JS, don't even necessarily want to have a css file, just inline in the header. Very likely just setting font family to sans and be done with it.

This describes exactly how I started out. This setup held for a bit less than two years, then I went for a multi-page setup.

The first thing that I actually scripted was an RSS feed. And the with the first refactoring of the header, I went for an SSG.

If you want actually want to blog, I'd say: the best setup is whatever gets the least into the way of actually writing and hitting publish. Styling, deployment, navigation structure, JS-based routing, all cool, but only of secondary importance when your goal is writing in public.

Re: Ask HN: Is maintaining a personal blog still worth it?

#139
post #40

Earlier quoted context omitted.

If the "worth it" includes provable portfolio of skills, I don't know a better place than series of well-written blog posts. Other "worth it" could be the development of your writing skills, documenting own learning path and so on. Maybe something can be even useful for you as well later on. If you think "worth it" as a way to get attention, get job offers automatically e.g., likely not worth it unless it gets HN fro…

Note that anyone not living under a rock in 2025 would assume a significant probability that the articles in your blog are generated with an LLM, making it hardly a signal of skill.

I see your comment grayed out as if it was downvoted but this is 100% true and my colleagues share your sentiment. I still think writing is valuable (as is note-taking as a whole) for personal reasons but most people I know assume that most new professional content is LLM generated. Only if the writing is s*t we kind of believe that it was written by a human but that is also bad for obvious reasons.

Re: Ask HN: Is maintaining a personal blog still worth it?

#140
> Maybe there’s still value in writing for its own sake?

I just finished Anne Lamott's Bird by Bird and it has a meaningful response to this.

“I still encourage anyone who feels at all compelled to write to do so. I just try to warn people who hope to get published that publication is not all that it is cracked up to be. Writing has so much to give, so much to teach, so many surprises. The thing you had to force yourself to do—the actual act of writing—turns out to be the best part. It’s like discovering that while you thought you needed the tea ceremony for the caffeine, what you really needed was the tea ceremony. The act of writing turns out to be its own reward.”

For me, writing is like tidying up a messy room. When the clutter is gone, I can think more clearly and focus on new ideas, so I believe there is still a lot of value in writing without worrying about readers.

Post reply on HN