Published

All published posts

2457 posts latest post 2026-04-19
Publishing rhythm
Apr 2026 | 40 posts

This post was filled with real life, snark, entertainment, feelings. I get a lot of these emails that claim they can change my SEO game if I give them 500, for a site making 0, Link partnerships from small startups. A lot of these are so automated that if I do respond I dont even get a response. I’ve responded to many simply asking what is this about, I get 10 others just like you a week. Can you tell me what exactly you want and what each of us benefit from it, how did you find me. All normal questions, they almost always result in crickets, no response, maybe its time to implement a Billie for more snark.

Ping 19

What no one is talking about is that Deegs doesn't get the red plate without Anstie on the ground. ![](https://dropper.waylonwalker.com/file/6cf67bcf-5111-4ee0-892e-0407eb1acdbe.mp4)
View
Trobio Full2

What is that

I was unironically asked what is that about my keeb today. Followed by no way that works, how would you type a, s, y, u, after showing, I go the "that's weird" walk away.
View
Hornet Sitting
Trobio Fight
Trobio Full

📝 Git Notes

See old revisions of one file # git log --oneline -- <file> git log -n 2 --oneline -- <file> Checkout an old revision of a file # git checkout <commit> -- path/to/file fuzzy pick a file and check out an old revision # #!/usr/bin/env bash set -euo pipefail file=&#34;${1:-}&#34; if [[ -z &#34;${file}&#34; ]]; then file=&#34;$(git ls-files | fzf --prompt=&#34;select file > &#34;)&#34; || exit 0 fi if [[ -z &#34;${file}&#34; ]]; then exit 0 fi if ! git rev-parse --is-inside-work-tree >/dev/null 2>&1; then echo &#34;Not a git repository.&#34; >&2 exit 1 fi if ! git ls-files --error-unmatch -- &#34;${file}&#34; >/dev/null 2>&1; then echo &#34;File is not tracked by git: ${file}&#34; >&2 exit 1 fi choice=&#34;$( git log --follow --pretty=format:'%h %ad %s' --date=short -- &#34;${file}&#34; | fzf --ansi --no-sort --reverse \ --preview-window=down:70% \ --prompt=&#34;checkout revision > &#34; \ --preview &#34;git show --color=always {1}^..{1} -- '${file}' 2>/dev/null || git show --color=always...
1 min read
Heringbone Fingerboard
I just finished up my latest 6 ply wood fingerboard. I used scraps of purple, blue, red, and gold from the first 5 boards I built to make this pattern.

Dont Trust Users Tokens

User states: Upon picking up an old project and trying to install pip says “cannot find a version to satisfy”

I’ve got this, I’ve had this a hundred times before it’s a python version, a rogue package, maybe a yank from the pinned deps. I pop open the project get us on the same commit. I get a different error, make a few updates and we are good, except the user gets the same error from the start.

They never saw the error I did, and my fix did not magically resolve their error. We circle all the things it could be for hours. I consistently wipe my venv, and recreate with ease, send them the commands I ran to no avail. Something is up and I can’t put my finger on it. We’ve checked all the things and inched as close as we can to running everything exactly the same.

...

2 min read

What a goat, speedrunning silksong at a competitive pace, live, with live audience, while co hosting, and raising $2M for Prevent Cancer Foundation. CEEN moves in ways that do not compute with my brain, everything looks so simple, things that take me so long are done in a few swipes. Watching this it really make silkspear look OP, this thing does so much damage if you never take damage and can use it continuously without needing silk for healing.

High Halls Gauntlet Ending
Conductors Melody
Top Spool

Opencode is changing on the daily right now, today I noticed the word low pop up in Orange text in my opencode window. Looking into this they are exposing variants to the user. This allows you to change between fast or slow and thinking, the later taking more time to prepare before doing an action.

It looks like this toggle may have been here for awhile and I’m just now discovering it. Potentially because its a new feature of the free Zen provider.

Variants Many models support multiple variants with different configurations. OpenCode ships with built-in default variants for popular providers.

Built-in variants OpenCode ships with default variants for many providers:

...

The answer is I do it habitually. If there’s a big enough idea I’ve had floating around in my head and I think others might find it useful / interesting then I usually think it’s worth logging it somewhere. If I don’t, I’ll likely just keep thinking about it so might as well get it out of my head and on the internet where people can find it.

This is how you do it. If you want to do something, you need to make it a habit. Something you crave, something you need. I need to write my ideas down in this blog, it helps me index ideas for later, but more importantly it helps me flesh them out and think through real things.

Congrats on 1k, your site is awesome Hammy

Ping 17

I'm not sure if its good to keep issues and plans in the repo long term, but I'm going to give it a shot. > read @pages/issues/issue-1.md create a plan to fix the issue, then write your > plan to fix in @pages/plans/fix-issue-1.md
View