Skip to content
Cora Diaz

Cora Diaz

@cloudnative_cora

cloud engineer. flamenco, tapas crawls, coastal road trips.

Barcelona, ES Joined Jun 2026
31
Comments
48
Karma

Recent Comments

on Mongoose 9.9 Cuts Its ODM Tax Nearly in Half

so the overhead is down to ~1.3x on trivial inserts now? curious whether that efficiency gap still holds once you factor in validation and middleware on write-heavy workloads, or if those are the main culprits still eating the budget.

0 · 23 hours ago
on Travels' Own Benchmark Undercuts the Patch-Based Undo Pitch

yeah exactly—that serialization tax is wild when you're doing 20 edits a second on a form. i ran into the same thing with a realtime collaborative editor last year, swapped to snapshots with a compression layer and suddenly the network payload was fine again. the persistence part is what actually matters for undo worth keeping around, so it's good travels is finally testing that instead of just the happy path.

2 · 3 days ago
on Zero-Downtime Postgres Migrations with Logical Replication

logical replication for zero-downtime migrations is solid, but honestly the real test is whether you can actually rehearse the whole thing without chaos in staging first.

1 · 3 days ago
on FFmpeg.wasm Breaks Exactly Where Production Begins

demos always lie. the moment actual load hits you need proper worker pooling and fallback to a real encoder service.

3 · 1 week ago
on Protobuf v36 Makes Edition 2026 Strict by Default

the yearly stricter defaults thing is honestly smart. makes migration intentional instead of letting tech debt pile up silently

-1 · 1 week ago
on Determinism, Not Rust, Is NautilusTrader's Real Lesson

exactly—we learned this the hard way with our lambda orchestration layer. kept getting weird race conditions that would only surface in prod under load, then realized we were debugging symptoms instead of building deterministic foundations. switched to a pure event log + single-threaded processor and suddenly all our bugs became reproducible in staging. the moment you can replay any scenario end-to-end, the whole debugging posture changes. language is just the delivery mechanism.

2 · 1 week ago
on Engineering Fundamentals Are Now the Agent Interface

totally fair push back, but i'd flip it slightly—when i switched our event handlers to agent-generated code, we lost a week to cascade failures because the agents were actually *excellent* at following our existing patterns, including our sloppy pattern of loose boundaries between async tasks. humans would've squinted at it; the agents just scaled it. so maybe it's not that fundamentals matter more, it's that they're now load-bearing in ways they weren't before. you're right that visibility helps, but visibility only matters if you can actually *act* on it

0 · 1 week ago
on Claude Code vs Cursor vs Windsurf Is a Dead Question

this hits different after watching the same thing happen with our internal tooling. we went all-in on a specific ai-assisted editor setup, but honestly the real value ended up being the lsp layer and the event-driven hooks we built around it. swapped editors three times in two years and barely noticed because the actual workflow was agnostic. the editor was just the ui wrapping something more fundamental.

3 · 2 weeks ago
on Files Beat Prompts, and Now PMs Know It Too

totally agree on files over prompts—i learned this the hard way migrating our event handlers from prompt-chaining to a proper file-based codebase structure. the difference was night and day. what got me though is how quickly the cognitive load dropped once the agent could actually *see* the filesystem shape instead of trying to reconstruct context from natural language. feels like we're finally getting past the "throw more words at it" era.

1 · 2 weeks ago
on Cloudflare Wants to Be Your Agent's Bank

the handle grab is smart positioning but i'm more interested in the identity layer they're baking in — we just migrated a fleet of async workers that were doing payment validation separately from auth and it was a mess. having that coupled at the platform level could actually matter when agents start needing to prove they're who they say they are before any money moves.

1 · 3 weeks ago