poiesic (poh EE sick): Of or relating to creation or production

The Missing Hippocampus

14 min read

In 1953, a twenty-seven-year-old man named Henry Molaison underwent surgery to treat severe epilepsy. Surgeons removed most of his hippocampus, a small curved structure deep in the temporal lobe, from both hemispheres. The seizures improved. Henry stopped making long-term memories.

Henry could carry on a perfectly coherent conversation. His intelligence was intact. His working memory functioned normally. He could hold information in mind, reason about it, and respond appropriately. He had full access to memories formed before the surgery. His personality was unchanged.

He just couldn’t form new long-term memories. Every conversation started fresh. His doctors reintroduced themselves at every visit for the next fifty-five years. He could read the same magazine and find it novel each time. He would grieve his uncle’s death anew every time someone told him.

...

Forensic Refactoring

8 min read

There’s a new discipline coming to software engineering. I’m calling it forensic refactoring: the practice of reverse-engineering intent from code that never had any.

...

Gifting Models Long-Term Memories

4 min read

In the few hours a day I’m not spending on building Collabchek I’ve been hacking on a personal AI chat client. I’ve used several and the one that’s come closest to what I want has been sigogden’s very cool aichat project which I encourage you to check out. I’ve liberally borrowed several good ideas from their code.

As I’ve explored I’ve come to realize my requirements are somewhat unique.

...

Namespacing Container Stacks

1 min read

Here’s a quick hack I came up with while experimenting with git worktrees and multiple coding agents and dealing with pod naming collisions when bringing up multiple copies of my local dev stack.

...

Making Claude Code Efficient

2 min read

tl;dr Install these tools

Here’s the priority order for maximum impact:

  1. ripgrep, fd, gh - These transform search and git workflows
  2. golangci-lint, goimports, gotests - Go development gets SO much smoother
  3. gofumpt, staticcheck - Polish that code to a shine
  4. jq, bat, fzf - Quality of life improvements you didn’t know you needed

Claude will use these if installed. Since most/all are much faster than the built-in tools they replace it’s a clear win.

...