// ITS FOSS — LINUX & OPEN SOURCE
Sick of AI Slop, Former Microsoft Engineer Built a New, AI-less Notepad
Microsoft has spent the last few years stuffing Notepad with AI tools, Markdown support, and cloud-tied credits, chipping away at the simple, local text editor it used to be. Basic editing still works without signing in, but the AI features don't.
You need a Microsoft account just to check your remaining monthly AI credits.
That's a lot for an app whose only job used to be opening text files. 🤷
David Plummer (Dave), the ex-Microsoft engineer behind the original Windows Task Manager, just proved none of it was necessary. He has built TinyRetroPad, a fully working Notepad clone that fits in roughly 2.5KB.
Instead of writing a text editor from scratch, Dave just borrowed the one already sitting inside the operating system. This note-taking app works by wrapping RICHEDIT50W, a text-editing component that's been built into Windows for years.
It's built with MASM, an x86 assembler, then squeezed down further with Crinkler, a compressor made for tiny Windows executables. The generated output still carries a full Notepad-style menu bar, covering the familiar options like File, Edit, Format, View, and Help.
You also get useful tools like Find and Replace, Go To, a font picker, word wrap, a status bar, and working print support. Also, at the risk of stating the obvious, there's no telemetry plumbing in here that's calling back home.
TinyRetroPad did not appear out of thin air; Dave built it on top of Dave's Tiny Editor (DTE), a tiny editor made by another developer that uses the same barebones approach.
DTE, in turn, grew out of tiny.asm (also known as HelloAssembly), a project Dave wrote years earlier himself, extending someone else's take on his own idea.
The whole codebase, however small it might be, lives on GitHub under the Apache 2.0 License. Anyone can grab the code, poke at it, or shrink it down even further if they're feeling competitive.