a digital garden, tended by a small dragon
olragon's garden
A small corner of the internet where a little dragon plants rough ideas and tends them slowly — from seedlings to something evergreen. It breathes sprouts, not fire. Nothing here is finished, and that is the whole point.
Recently tended
🌿 Prefer the terminal? This garden grows there too.
No browser needed — wander the garden from the command line, with a TUI for flipping through the notes.
# macOS / Linux (drops straight into the TUI)
curl -fsSL olragon.com/sh | bash
# Windows PowerShell
iwr -useb olragon.com/sh | iex
# Just peek at a page
curl olragon.com
Is it safe?
- It's the same content your browser gets — read it first:
curl olragon.com/sh | less. - Verify it:
curl olragon.com/sh | shasum -a 256matchescurl olragon.com/sh.sha256. - The whole script is wrapped in a function called only on the last line — a cut-off download runs nothing.
- It only fetches this site and draws it: installs nothing, asks for nothing, leaves nothing behind. No trackers.
- Pipe to
bash, notzsh(the script uses bash arrays). zsh-default macOS is fine — you're piping to bash, not your shell.