How to publish a post on this site
(This is a placeholder post for Ajay — delete it once you’ve published something real.)
Publishing a post takes three steps:
- Create a new file in
src/content/blog/, e.g.fuzzing-rust-binaries.md. The filename becomes the URL:/blog/fuzzing-rust-binaries/. - Start the file with frontmatter:
---
title: 'Fuzzing Rust binaries with AFL++'
description: 'What taint tracking reveals about memory safety.'
pubDate: 2026-08-01
tags: ['fuzzing', 'rust']
---
Your post content here, in plain Markdown.
- Commit and push:
git add .
git commit -m "new post: fuzzing rust binaries"
git push
GitHub Actions rebuilds the site automatically. The post shows up in the blog list, in the command palette (Ctrl+K), and gets its own comments thread the first time someone comments.