Published

All published posts

2534 posts latest post 2026-06-10 simple view
Publishing rhythm
May 2026 | 57 posts

Stop Using Boomer Ai

I was listening to these guys talk about migrating off of boomer ai the other day. Introducing the term boomer ai to describe using chat, copy, paste instead of agents. Something magical happened to the tooling and models around december, they got really good. The chatgpt $20 plan hooked into opencode is good, the Free models in Opencode Zen (Big Pickle and Kimi K2.5 Free) are really good. Neither of these quite match up to the speed and quality of the larger plans, but they are good. good enough to throw away your boomer ai techniques and start using agents. Agents are the future, and they are here now. If you are still using chat, copy, paste, you are doing it wrong. Stop using boomer ai and start using agents. You will be amazed at how much better your results will be. https://www.youtube.com/watch?v=3dmPKuTWbsI
1 min read
I The flu hit me like a freight train right at the start of the year, along with the most stress I've ever felt at work dropping on me at the same time, I&#x pype.dev [1] I’m jelous… as I was getting better, I got kicked down again. cant hold a conversation without coughing. Its hitting people from all over like crazy this year. so glad its just the flu and not something seriously harmful for hospitalization. Note This post is a thought [2]. It’s a short note that I make about someone else’s content online #thoughts References: [1]: https://pype.dev/im-back-from-the-dead/ [2]: /thoughts/

Mentions

I can now just mention people from my markata [1] Waylon Walker [2] Blogroll [3] like @simonwillison [4] or @swyx.io /now /now /now Aside This is an aside! References: [1]: /markata/ [2]: /about/ [3]: /blogroll/ [4]: https://simonwillison.net
The work on fastrender [1] by wilsonzlin [2]. Experimental new browser engine References: [1]: https://github.com/wilsonzlin/fastrender [2]: https://github.com/wilsonzlin
Check out flosch [1] and their project pongo2 [2]. Django-syntax like template-engine for Go References: [1]: https://github.com/flosch [2]: https://github.com/flosch/pongo2
DockFrame - Modular USB-C Hub with Framework-Compatible Expansion Cards DockFrame is a modular USB-C hub that accepts Framework-compatible Expansion Cards and custom Tool Cards. Dock once, reconfigure whenever. DockFrame Ā· dockframe.com [1] Dockframe looks like a really cool concept using the framework tiles ( the connectors idk what they are called ) to build a dock. Note This post is a thought [2]. It’s a short note that I make about someone else’s content online #thoughts References: [1]: https://dockframe.com/ [2]: /thoughts/

What Your Coding Tool Says About You

- open code - libre free as in beer and speech - Copilot - corporate 9-5er - Cursor - You sip on Philz coffee with your macbook - Claude Code - Agentic Workflows or Bust - Jetbrains - I didn’t know you wrote java - Vim/neovim - definite neck beard - VsCode - What else is there?
I really wish I would have got this right a few years ago. Theres a couple of flags I had to use to get mdformat to do hard wraps at 80 characters and not wreck tables. This mix of flags and plugins is workign really well for me so far. mdfmt() { uvx \ --with "mdformat-ruff" \ --with "mdformat-beautysh" \ --with "mdformat-web" \ --with "mdformat-config" \ --with "mdformat-gfm" \ --with "mdformat-front-matters" \ --with "mdformat-wikilink" \ --with "mdformat-simple-breaks" \ mdformat \ --wrap 80 \ --end-of-line lf \ --codeformatters python \ --codeformatters bash \ "$@" } And as pre-commmit. repos - repo: https://github.com/hukkin/mdformat rev: 1.0.0 # pin to the version you want hooks: - id: mdformat args: - --wrap - "80" - --end-of-line - lf - --codeformatters - python - --codeformatters - bash additional_dependencies: - mdformat-ruff - mdformat-beautysh - mdformat-web - mdformat-config - mdformat-gfm - mdformat-front-matters - mdformat-wikilink - mdformat-simple-breaks
make no mistakes Listen and make your own on Suno. suno.com [1] Ai prompt music, the right level of cringe to be great. Note This post is a thought [2]. It’s a short note that I make about someone else’s content online #thoughts References: [1]: https://suno.com/song/f5821216-ea6e-49c3-98de-67880e517a89 [2]: /thoughts/
I Hope This Email Finds You Before I Do I Hope This Email Finds You Before I Do Last Week in AWS Ā· lastweekinaws.com [1] 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. Note This post is a thought [2]. It’s a short note that I make about someone else’s content online #thoughts References: [1]: https://www.lastweekinaws.com/blog/i-hope-this-email-finds-you-before-i-do/ [2]: /thoughts/

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)
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.
Hornet Sitting
Trobio Fight
Trobio Full

šŸ“ Git Notes

See old revisions of one file # [1] git log --oneline -- <file> git log -n 2 --oneline -- <file> Checkout an old revision of a file # [2] git checkout <commit> -- path/to/file fuzzy pick a file and check out an old revision # [3] #!/usr/bin/env bash set -euo pipefail file="${1:-}" if [[ -z "${file}" ]]; then file="$(git ls-files | fzf --prompt="select file > ")" || exit 0 fi if [[ -z "${file}" ]]; then exit 0 fi if ! git rev-parse --is-inside-work-tree >/dev/null 2>&1; then echo "Not a git repository." >&2 exit 1 fi if ! git ls-files --error-unmatch -- "${file}" >/dev/null 2>&1; then echo "File is not tracked by git: ${file}" >&2 exit 1 fi choice="$( git log --follow --pretty=format:'%h %ad %s' --date=short -- "${file}" | fzf --ansi --no-sort --reverse \ --preview-window=down:70% \ --prompt="checkout revision > " \ --preview "git show --color=always {1}^..{1} -- '${file}' 2>/dev/null || git show --color=always {1} -- '${file}'" )" if [[ -z "${choice}" ]]; then ...
1 min read