Blog

The OCaml Planet RSS

Articles and videos contributed by both experts, companies and passionate developers from the OCaml community. From in-depth technical articles, project highlights, community news, or insights into Open Source projects, the OCaml Planet RSS feed aggregator has something for everyone.

Want your Blog Posts or Videos to Show Here?

To contribute a blog post, or add your RSS feed, check out the Contributing Guide on GitHub.

Learning OCaml: PPX for Mere Mortals

When I started learning OCaml I kept running into code like this:

03 Mar 2026

Bozhidar Batsov

Read Article
Weeknotes 2026 week 9

02 Mar 2026

Jon Ludlam's Blog at recoil.org

Read Article
Learning OCaml: Printing Data Structures

If there’s one thing that frustrated me early on in my OCaml journey, it was printing stuff. In Ruby I can p anything and get a useful representation. In Clojure, prn just works on every data structure. In OCaml? There’s no generic print that works on any type – the type information is erased at runtime, so the language simply doesn’t know how to stringify an arbitrary value.

01 Mar 2026

Bozhidar Batsov

Read Article
Learning OCaml: Working with Records

Records are one of those things that look almost identical across ML-family languages, so I didn’t expect many surprises when I started using them in OCaml. For the most part I was right – but there were a few things worth noting, especially if you’re coming from a language where records/structs are mutable by default.

01 Mar 2026

Bozhidar Batsov

Read Article
.plan-26-09: Browser TESSERA, package management and Docker in the CACM

Got TESSERA working in Zarr and the browser, and a preprint of package management a la carte pushed out

01 Mar 2026

Anil Madhavapeddy's Blog

Read Article
Building Emacs Major Modes with Tree-sitter: Lessons Learned

Over the past year I’ve been spending a lot of time building Tree-sitter-powered major modes for Emacs – clojure-ts-mode (as co-maintainer), neocaml (from scratch), and asciidoc-mode (also from scratch). Between the three projects I’ve accumulated enough knowledge (and battle scars) to write about the experience. This post distills the key lessons for anyone thinking about writing a Tree-sitter-based major mode, or curious about what it’s actually like.

27 Feb 2026

Bozhidar Batsov

Read Article
Building Emacs Major Modes with TreeSitter: Lessons Learned

Over the past year I’ve been spending a lot of time building TreeSitter-powered major modes for Emacs – clojure-ts-mode (as co-maintainer), neocaml (from scratch), and asciidoc-mode (also from scratch). Between the three projects I’ve accumulated enough battle scars to write about the experience. This post distills the key lessons for anyone thinking about writing a TreeSitter-based major mode, or curious about what it’s actually like.

27 Feb 2026

Bozhidar Batsov

Read Article
Is Running Untrusted Code on a Satellite a Good Idea?

The problem statement: no isolation, no standard packaging, no OTA updates. Three missing pieces for multi-tenant satellite payloads.

25 Feb 2026

Thomas Gazagnaire

Read Article
Setting up Emacs for OCaml Development: Neocaml Edition

A few years ago I wrote about setting up Emacs for OCaml development. Back then the recommended stack was tuareg-mode + merlin-mode, with Merlin providing the bulk of the IDE experience. A lot has changed since then – the OCaml tooling has evolved considerably, and I’ve been working on some new tools myself. Time for an update.

24 Feb 2026

Bozhidar Batsov

Read Article