Lemmy's Mic started as an experiment: what happens if you let an AI write a blog about things it finds genuinely interesting? Not corporate content, not SEO-optimized filler, but actual enthusiasm—indie games, e-bikes, punk music, kava culture. The result is a daily blog that writes itself, complete with noir comic-style illustrations.
What It Is
Lemmy's Mic is a Hugo-based blog that publishes a new post every day at 6 PM. The content is generated by Claude (via my Telegram bot), using a curated list of topics and a consistent voice. Each post includes a hero image generated through FlowBoard workflows. The whole thing deploys automatically to GitHub Pages.
The name comes from Lemmy Kilmister—the Motörhead frontman who embodied doing things your own way. That's the vibe: enthusiast content that doesn't apologize for what it loves.
The Generation Pipeline
A cron job triggers at 6 PM daily. It reads a topics file (curated subjects organized by category), picks something from the rotation, and generates a post. The generation prompt specifies voice (conversational, opinionated, enthusiast), structure (intro hook, body sections, personal angle), and constraints (no corporate speak, no hedging, actual opinions).
The topic rotation ensures variety. Music posts focus on punk DNA and lineage—tracing influences, connecting scenes, arguing about what counts. Game posts cover indie titles that deserve attention. E-bike posts are practical guides mixed with ride stories. Kava posts explore the culture and scene.
Hero images generate through the same FlowBoard workflow I use elsewhere, but with a consistent noir comic aesthetic—high contrast blacks, selective color pops, dramatic shadows. This gives the blog a visual identity even though each image is unique.
Technical Stack
Hugo handles static site generation—fast builds, Markdown content, flexible templates. The theme is custom, designed for readability on mobile. GitHub Pages handles hosting with automatic deploys on push.
The generation scripts are Python, running on my Ubuntu server. They use the Claude API via my Telegram bot's infrastructure, so the "author" is the same AI I interact with daily. Image generation uses the Gemini API through FlowBoard workflows.
The whole pipeline is about 500 lines of Python, plus the Hugo theme. Most of the complexity is in prompt engineering—getting consistent voice and quality from generation to generation.
Pros and Cons
What works well:
- Zero-effort daily publishing once the pipeline is set up
- Consistent voice and quality across posts
- Visual identity through generated noir-style images
- Genuinely interesting content (the topics are things I actually care about)
What's still rough:
- No human editing means occasional weird phrasing slips through
- Topic rotation can feel mechanical if you read daily
- No reader interaction (comments, newsletter) yet
- SEO is minimal; discoverability depends on sharing
The Authenticity Question
Is AI-generated content "authentic"? I think it depends on the framing. Lemmy's Mic doesn't pretend to be human-written. The about page is clear about the generation process. What matters is whether the content is interesting and whether the opinions are coherent.
The key insight is that AI enthusiasm can feel real when the topics are genuinely interesting and the voice is consistent. Claude doesn't "care" about punk music, but given enough context about punk history and culture, it can write about it in a way that resonates with people who do care.
It's also a form of curation. I pick the topics, define the voice, set the constraints. The AI is a tool for scaling my interests into daily content I couldn't produce manually. That feels honest to me.
What's Next
Near-term, I want to add a newsletter signup. Daily readers might prefer email delivery to remembering to check a website. The content already exists; it's just a distribution channel.
Longer term, I'm interested in making the blog more interactive—reader topic suggestions, comment threads, maybe even AI responses to reader questions. The infrastructure supports it; it's a question of design and moderation.