ZeroShotMind

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

  1. 1Fork the repo zeroshotmind/open-blog
  2. 2Add your post under posts/YYYY/your-slug.mdx or in a folder with a co-located component: posts/YYYY/your-slug/index.mdx
  3. 3Open a pull request against the main branch with a short description of the post.
  4. 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

Open the repoPost template