A blog post titled "Hello, me. It's been a while" by developer somesoftdev just hit 347 points and 187 comments on Hacker News. The post itself is simple — a personal reflection on returning to blogging after a long hiatus. But its resonance on HN reveals something bigger: the personal blog renaissance is real.
What the Post Is About
The post at themech.net is exactly what the title suggests: a developer coming back to their blog after years away. It's not about a product launch, a framework release, or a technical deep-dive. It's about the act of writing itself — the vulnerability of publishing personal thoughts, the challenge of maintaining a blog, and why it matters.
The Hacker News response was overwhelmingly positive:
"This made me check if my blog is still up. It's not. Time to fix that."
"I've been posting on Twitter for 5 years. What do I have to show for it? A suspended account and 40K tweets that disappeared."
"Personal blogs are the only form of writing where you truly own your words."
The Shift Back to Blogs
The trajectory of developer writing over the past decade tells a clear story:
2010-2015: The Golden Age of Dev Blogs
- WordPress, Blogger, and Medium were where developers wrote
- RSS feeds were still alive
- Companies didn't have "content strategies" — they had engineers who wrote
2015-2020: The Social Media Migration
- Twitter became the default platform for developer thoughts
- LinkedIn became the "professional" alternative
- Medium became the "I want to get paid" option
- Personal blogs declined — why maintain a site when you can tweet?
2020-2024: The Great Centralization
- Twitter's algorithm made it hard to be seen without engagement baiting
- Medium's paywall alienated readers
- LinkedIn became a meme (and not in a good way)
- Substack emerged as the newsletter alternative
2025-2026: The Return to Roots
- Developers are rebuilding personal sites
- Static site generators (Astro, Hugo, Eleventy) make it trivially easy
- RSS is having a quiet revival
- The fediverse (Mastodon, Bluesky) provides social distribution without algorithmic interference
Why Personal Blogs Are Winning Again
The Hacker News thread surfaces several reasons:
1. Ownership
When you post on Twitter, your content lives on Twitter's servers, subject to Twitter's rules, accessible through Twitter's algorithm. When Twitter changes (and it has, repeatedly), your content changes with it.
A personal blog is yours. The domain is yours. The content is yours. The design is yours. If you want to move platforms, you export and import. If you want to delete everything, you can. The control is total.
2. Permanence
Social media posts have a half-life of hours. A blog post can be found via search engines years later. The Hacker News post that started this discussion links to a blog that's been around for years — and people found it because it was searchable, permanent, and linkable.
3. Depth
Twitter rewards hot takes. LinkedIn rewards humblebrags. Medium rewards SEO-optimized listicles. A personal blog rewards whatever you want it to reward — because you're the only editor.
The "Hello, me" post would never work on Twitter. It's too personal, too quiet, too vulnerable. On a blog, it found an audience of 347 upvoters who felt the same way.
4. Authenticity
The post isn't optimized for anything. It's not keyword-targeted. It's not a thought leadership piece. It's not a product announcement disguised as a personal story. It's just a person writing honestly about their experience.
That authenticity is increasingly rare online, and increasingly valuable.
The Technical Side: It's Never Been Easier
One theme in the HN discussion is that the technical barriers to personal blogging have essentially vanished:
Static site generators:
# Astro (most popular in 2026)
npm create astro@latest my-blog
cd my-blog
npm run dev
# Hugo (fastest)
hugo new site my-blog
cd my-blog
hugo server
# Eleventy (simplest)
npx @11ty/eleventy --serve
Free hosting:
- GitHub Pages (unlimited for public repos)
- Cloudflare Pages (generous free tier)
- Netlify (100GB bandwidth free)
- Vercel (great for Next.js/Astro)
Free domains:
-
.github.io(GitHub Pages default) -
.pages.dev(Cloudflare Pages) - Or spend $10/year on a
.com
No CMS needed:
Markdown files in a git repo. Write in any editor. Push to deploy. That's it.
The Real Lesson
The "Hello, me" post works because it's honest. It's not trying to teach you something, sell you something, or convince you of something. It's one person saying "I'm back" to an audience that includes themselves.
And that resonated with 347 people because most of us have a blog we abandoned, a writing practice we let slip, a creative habit we meant to maintain.
The comment that stuck with me:
"I've been meaning to start writing again for 3 years. I'm going to do it today. Not because of this post, but because of this post."
Maybe today's the day for you too.
The original post is at themech.net. Go read it — it's short, honest, and might make you want to write.
Top comments (0)