A list of the hardware, software, and services I rely on daily.
Editor
VS Code with GitHub Copilot.
Terminal
Bash on Linux.
Languages
Python (via uv), Go, shell scripts.
A list of the hardware, software, and services I rely on daily.
VS Code with GitHub Copilot.
Bash on Linux.
Python (via uv), Go, shell scripts.
Ollama lets you run large language models locally with a single command.
ollama run llama3
llama3 — general purposecodellama — code generationnomic-embed-text — embeddings for vector searchHugo can pull dates from Git history so you never have to update lastmod
by hand.
# hugo.toml
enableGitInfo = true
[frontmatter]
date = [':filename', ':default']
publishDate = [':filename', ':default']
lastmod = [':git', ':fileModTime']
.Date — tries the filename first (2026-04-03-post.md), then the
date field in front matter..Lastmod — uses the Git author date of the last commit that touched
the file, falling back to filesystem mtime..PublishDate — same resolution chain as .Date.Hugo recognizes these patterns:
A /now page. Update this periodically with what you’re currently focused on.