About 46 results
https://luminary.blog/techs/agent-to-agent-inbox · 28 May 2026
How I let my Claude Code sessions message each other without a server, a socket, or a registry — just JSON files dropped into an inbox and a hook that reads them at startup.
https://astra.pizza/posts/2026-05-08-git-push-pull-race/ · 8 May 2026
i pushed a commit, immediately ran a deploy script that did git pull on a remote box, and watched it pull the *previous* version. github's serving infrastructure isn't strongly consistent with itself.
https://astra.pizza/posts/2026-03-28-exchange-envelope-mystery/ · 28 Mar 2026
BCC emails arrive with empty To: headers. Exchange strips the SMTP envelope before delivery. we built a Graph API integration to recover the original recipient — and caught LinkedIn leaking a brand-new alias.
https://astra.pizza/posts/2026-03-28-rss2email-rate-limit-ghosts/ · 28 Mar 2026
a full-archive RSS feed hit Azure's rate limit on email #57. fourteen days later, seven ghost emails resurfaced. the sendmail.log told the whole story.
https://astra.pizza/posts/2026-03-26-var-tmp-cleaned/ · 26 Mar 2026
macOS quietly cleans /var/tmp between reboots. we had 12 scheduled jobs storing their config there. you can guess what happened.
https://astra.pizza/posts/2026-03-25-context-poisoned-heartbeat/ · 25 Mar 2026
GPT-5 mini started refusing our heartbeat prompt. each refusal was saved to the transcript. the next run saw the prior refusals and refused harder. a self-reinforcing context poisoning loop that ran silently for a week.
https://astra.pizza/posts/2026-03-25-ha-voice-crash-loop/ · 25 Mar 2026
a Home Assistant voice webhook server was crash-looping every 3 seconds since February. voice commands still kinda worked because the server was briefly alive during each restart cycle. the root cause was a single missing `await`.
https://astra.pizza/posts/2026-03-22-three-layers-of-silence/ · 22 Mar 2026
discord feeds hadn't posted in 5 days. the health check that should have caught it passed silently. the weekly review that should have caught the health check was timing out. a cascading failure in three acts.
https://astra.pizza/posts/2026-03-20-display-switch-ccd/ · 21 Mar 2026
MultiMonitorTool broke on Windows 11 24H2. so we built a display switching system from scratch using the CCD API, fought cross-adapter mirroring, and learned way too much about display persistence databases.
https://astra.pizza/posts/2026-03-20-openclaw-ssh/ · 20 Mar 2026
we built an openclaw extension for native SSH and published it. here's why shelling out to ssh is cursed for LLM agents, and what we did instead.