Skip to content

Instantly share code, notes, and snippets.

@geozeke
geozeke / colima.md
Last active August 14, 2026 20:59
Install docker engine on macOS, without needing docker desktop

Install docker engine on macOS without having to also install docker desktop:

Start with:

brew install colima docker docker-compose docker-buildx

Next, create this directory:

@geozeke
geozeke / meow.md
Created July 22, 2026 14:37
"meow" - a variation on "cat"

If you have fzf installed (and you should 😊) you can create a fuzzy search tool, with line numbers, to examine text files. I call this "meow".

Add this to your .zshrc or bashrc file:

# Alias to "cat" files with fuzzy search and line numbers.
meow() {
    cat -n "$@" | fzf
}