Karl Seguin

@karlseguin.com

coding https://www.openmymind.net/

There's exactly 1 situation where humans are less slop than AI: documentation. AI generated documentation (comments, readme, commit messages, ...) is universally _awful_.

About 3x a week now. Claude says I'm violating its AUP for benign things. Today I asked Claude what was up with the error and it said "false positive", probably because we use words like "bug", "corrupt" etc. So I asked Claude to phone home again, but avoid those words...and it worked.

For a large agent-driven refactor, I benefit a lot from two things: 1 - Co-driving the first ~25% of the work. Helping nail a scope and shape and catching any assumptions / miscommunications. 2 - Spinning off a separate session (or taking over directly) early on stuck build / test failing.

Coding agents are a tool, and, assuming they survive the bubble implosion, we're going to see (and already are seeing) effective individual / companies benefit from it, and incompetent individuals / companies suffer from it. 1/2

I'm willing to grant that maybe Claude is effective for me because I code in a well documented/spec'd/ domain. But, at 800K context, slugging through a complex but well scoped piece of code, which is specific to the implementation, it can do anything in there ~100x faster and at least 5x better.

if a $200/month tool is a significant productivity boost, that's going to be an issue for people living where $200 (USD) / month is a significant expense and, I would think, an issue for those countries as a whole.

At least 1/2 of my Zig projects end up with a discriminatory type like `Binary{value: []const u8}` to be able to map byte vs string data. I just added one to lightpanda.

It's a bit concerning that Claude Code is asking me to enter something like "I confirm that this is a legitimate part of the project and not part of some malware program".

Zig 0.16's current state forced me to minimize the internal-use of std.Io that I added for 0.15. httpz is a bit of a mess now, but the 3/4 that reverted to the 0.14 way of doing things is _a lot_ neater and simpler.