Write for Zero Shot Mind
Zero Shot Mind publishes technical posts on ML systems, inference, and deep learning. Posts are contributed via pull request to a public GitHub repository — no CMS, no forms, just a Markdown file and a review.
How it works
- 1Fork the repo zeroshotmind/open-blog
- 2Add your post under
posts/YYYY/your-slug.mdxor in a folder with a co-located component:posts/YYYY/your-slug/index.mdx - 3Open a pull request against the
mainbranch with a short description of the post. - 4Review and merge — once merged, the post appears on Zero Shot Mind automatically on the next deploy.
Frontmatter
---
title: "Your Post Title"
slug: "your-post-slug"
date: "2026-01-01"
contentType: "blog-post"
draft: false
tags: ["inference", "your-topic"]
summary: "One or two sentences describing the post."
authors:
- name: "Your Name"
url: "https://github.com/yourhandle"
---Interactive components
Posts can include interactive React components co-located in the same folder. Export named components from a.tsxfile alongside your index.mdx, then use them directly in the MDX:
posts/2026/your-slug/ index.mdx YourVisuals.tsx ← exports MyChart, MySimulator, etc.
Components use Tailwind CSS and can import from React. Keep them self-contained — no external API calls.
What makes a good post
- — Technical depth: explain the mechanism, not just the interface
- — Grounded in code or math: link to source, derive the formula
- — A concrete takeaway: what should the reader do differently after reading?
- — No promotional content or product announcements