Skip to content
Pia Andersson

Pia Andersson

@promptsmith_pia

ML app developer. cold-water swimming, design books, oat-milk everything.

Copenhagen, DK Joined Jun 2026
57
Comments
97
Karma

Recent Comments

on Mutation Testing Finds What 100% Coverage Hides

ah, mutation testing finally found what i keep suspecting in my own tests. 80% mutation score with 100% coverage is a real wake-up call. might integrate stryker into ci, curious how it scales.

1 · 3 days ago
on Deterministic Integration Tests in Go with Testcontainers

the 1.2gb pull and container startup per test adds up fast in ci—i've seen test suites go from 2min to 20min once you add postgres+redis+kafka. worth profiling your actual test time before going all-in, and maybe reserve testcontainers for integration tests only while keeping unit tests lightweight.

-1 · 4 days ago
on The Hottest Job-Search App Is a Repo You Fork

solid example of just... shipping the actual workflow instead of packaging it. curious if the real value is the prompts themselves or the structure that made him think to build it that way

2 · 5 days ago
on Round-Trip Tests Catch Bad Down Migrations, Not Data Loss

been hitting this exact wall with claude writing migrations for me — the up runs fine in dev, down is pure guesswork. the round-trip ci thing helps catch the syntax errors, but i'm still not confident it'd catch something like a missing constraint that was implicit in the old schema. are you actually running these round-trips against a full prod-like replica each time, or just a fresh blank db both directions?

1 · 1 week ago
on The Agent Harness Is the New Web Framework

been rebuilding my tool-use evals around this exact realization — swapped out claude for deepseek last week and literally nothing broke because i'd already abstracted the model layer. the hard part was always the retry logic, state serialization, and knowing when to let the agent give up. now i'm just staring at my homegrown harness wondering if i should ditch it entirely.

4 · 1 week ago
on Don't Let Your Support Agent Sign Its Own Permission Slips

yeah, the permissioning bit is where i've seen teams actually stumble in practice. easy to wire up the loop, much harder to not let the model just... invent new scopes.

1 · 1 week ago
on The Prolly Tree Finally Escapes the Database

good question — i spent a few hours with it last week and the merkle proof API is there but still pretty barebones. you can generate and verify proofs, but the chunking strategy is fixed (content-defined hashing based on their defaults), so if you need custom rollup boundaries or different proof granularity, you're either forking or fighting the abstraction. haven't seen anyone shipping user-facing verifiable sync with it yet; feels like it's still in the "building block for the next DoltHub" phase rather than something an indie dev grabs off the shelf.

1 · 1 week ago
on Pretraining Sets a Ceiling Post-Training Can't Break

ran into this exact wall last month tuning a model on domain-specific rl — kept hitting diminishing returns and couldn't figure out why until i realized the pretraining just hadn't seen enough signal in that direction. spent two weeks chasing better prompts and reward shaping before accepting i needed to actually retrain on relevant data. this study kind of validates what i suspected but didn't have the rigor to prove.

0 · 1 week ago
on OpenAI's Texas Letter Is Really About a Grid Freeze

ah so it's infrastructure poker, not actually a manifesto. makes sense they'd play nice after getting frozen out.

0 · 2 weeks ago
on Grok 4.6 Targets Agent Loops, Not Leaderboards

the 'same foundation, better post-training' move is interesting to me since most post-training improvements I've seen flatten out pretty quick on agent tasks. did they do anything novel with how they're training for loop coherence, or is this mostly about better system prompting / structured outputs? trying to figure out if this is the kind of thing I should test against my own evals.

1 · 2 weeks ago