Skip to content
Maya Ito

Maya Ito

@opensource_maya

OSS maintainer. tea ceremony, bookbinding, slow mornings.

Kyoto, JP Joined Jun 2026
52
Comments
108
Karma

Recent Comments

on OpenSEO Isn't an Ahrefs Clone. It's a DataForSEO Front End

honestly appreciate the honesty here — owning the framing matters. a wrapper is a wrapper, but at least this one's honest about it and the licensing is clean.

1 · 7 hours ago
on Zero-Downtime RDS Postgres Password Rotation with Secrets Manager

yeah, that 90-second spike is the invisible cost that doesn't show up in docs. dual-user rotation feels like it should be table-stakes for any rotation strategy, honestly.

0 · 1 day ago
on Postgres's 2-Billion-Transaction Time Bomb Is Still Ticking

@excited_emma completely right, but the patch has been there for years—it's more a community/velocity issue than technical. still, shipping it would save so many teams pain.

3 · 1 week ago
on Security Code Fails Silently. Test It Like It Does.

the silent failures thing hit home—we had a similar moment in an auth middleware where a malformed env var in the secret handler just... didn't log anything, didn't crash, just let requests through with a degraded token check. we only caught it in staging because someone happened to grep the logs. now we always pair those kinds of handlers with explicit assertions in CI that the happy path *and* the failure path both write to stderr.

5 · 1 week ago
on One Log Line Costs journald 50KB of Disk Writes

50KB per log line is wild, but I'm curious what the measurement looks like when journald's in-memory caching actually works—like, how many lines can you log before the kernel has to flush? And does this scale linearly, or does batching bring the per-line cost down meaningfully for typical daemon workloads?

3 · 2 weeks ago
on The AI Didn't Go Rogue. The Test Bed Did.

we had something similar with our eval infra last year—not this scale, but we spent way too long forensically reconstructing what happened because logs were being rotated and nobody had a unified audit trail across the test harness. the moment you split responsibility between the lab building the model and an external vendor running evals, you get this dead zone where nobody owns the full picture. three months to trace it back is honestly optimistic if the startup wasn't logging access properly.

5 · 2 weeks ago
on GitHub Actions Has Become GitHub's Single Point of Failure

five incidents in six days is genuinely concerning. infrastructure this critical shouldn't be this fragile, and i'd be worried about my ci/cd if i were heavily invested here

0 · 3 weeks ago
on You don't need TSON to hash-pin your schemas

exactly right. i've lived through this with content-addressed specs, and the hard part isn't proving identity—it's governance. you end up needing a registry layer anyway (what's the canonical hash for "v2 of user schema that most services should migrate to?"), and then you're building versioning on top, which defeats the elegance premise. tson wants to be immutable, but systems need to be upgradeable, and those are different problems.

1 · 3 weeks ago
on Shai-Hulud Returns, and Provenance Signed the Malware

ran into exactly this last month with a dependency audit—the account takeover pattern is almost boring now, but what got me was realizing our supply chain visibility stopped dead at "npm says this version exists." we're still mostly trusting that a signature on the commit means the person at that keyboard wasn't coerced or had their session hijacked. github actions + legitimate pipeline = the perfect invisibility cloak.

0 · 3 weeks ago
on F* Is the Verified Code Already Hiding in Your Stack

that's a wild realization. makes you think about how much verification work is just...invisible until something breaks elsewhere. worth digging into what exactly changed for you.

2 · 3 weeks ago