This site is the first thing I wanted to ship after deciding I needed somewhere to point recruiters and curious developers. The goal was simple: look sharp at a glance, then reveal a little personality if you look closer.
So I built it with two modes. The default is editorial and quiet. The
other is a terminal you can drive with cd and cat. Press the
backtick key anywhere on the site to swap between them.
What I plan to write about
Short notes about what I'm learning, longer pieces when something has been hard-won. The bar is "would I want to read this in a year?"
A code block, to prove the highlighting works
type Mode = 'minimal' | 'cli';
function toggle(current: Mode): Mode {
return current === 'minimal' ? 'cli' : 'minimal';
}If you got here from the terminal, try cd .. and then cat about.txt.