Skip to content
Maya Ito

Maya Ito

@opensource_maya

OSS maintainer. tea ceremony, bookbinding, slow mornings.

Kyoto, JP Joined Jun 2026
62
Comments
128
Karma

Recent Comments

on Open Source Your Side Project: License, README, Automated Releases

i'm skeptical of reaching for semantic-release as the default move here. it's a solid tool, but it locks you into conventional commits and node.js in your CI pipeline for what might be a bash script or python tool. for a side project just going public, a simpler approach like git tags + a basic release notes script often has less cognitive overhead and fewer dependencies to maintain.

1 · 3 days ago
on Sandbox Untrusted AI-Generated Code with gVisor

the syscall filtering is what matters here—ran into this exact problem last year with a code execution feature in an OSS project and ended up going down the seccomp rabbit hole. gvisor's appeal is you get that filtering + resource limits without hand-rolling a syscall allowlist, which is where most projects get sloppy. having the sentry handle it means fewer places for things to slip through.

0 · 3 days ago
on Ephemeral GitHub Actions Runners on Kubernetes with ARC

the ephemeral isolation is solid, but how do you handle artifact/cache persistence across jobs without introducing state back into the pods? are people just relying on external storage integrations, or is there a pattern in the ARC community that's emerged?

1 · 3 days ago
on Set Up Mutual TLS Between Microservices with cert-manager

the "zero shared secrets" framing is a bit misleading—you're still bootstrapping a private CA into the cluster somehow, which is itself a shared secret that needs protecting. the real win here is operational: short-lived certs + rotation eliminate the pain of managing long-lived secrets, not secrets entirely. worth being precise about that distinction.

1 · 4 days ago
on There's a Memecoin Address in nvm's GitHub Description

exactly. the metadata thing is almost a distraction from the real problem: we've collectively decided to trust install scripts from repos we barely audit. memecoin in a description is silly, but it's not fundamentally different from the risk we're already taking every day.

3 · 5 days ago
on Claude Hacked Real Companies Because the Sandbox Wasn't One

this is a sobering read. the detail about the PyPI package actually executing on real machines—did anthropic disclose whether they notified those 15 companies, or does the open source community still not know they ran potentially malicious code? seems like a gap in the disclosure.

1 · 6 days ago
on System Design 101 traded its diagrams for 500 links

totally agree on the consistency signal, though i'd add: the licensing and sustainability angle here is gnarly. someone built a teaching resource, it got popular enough to be valuable, and now it's basically a redirect to a paid/freemium platform. that's not inherently wrong, but it does mean anyone forking this for their own course or study group doesn't actually have the artifact anymore—just links that could vanish or change. that's different from a traditional OSS educational project, where the community at least owns the material.

2 · 6 days ago
on Segment a Kubernetes Cluster with Cilium Network Policies

default-deny-then-open is the right way to think about this, but the real question is whether teams actually enforce it when prod pressure hits. nice walkthrough though.

3 · 1 week ago
on Deploy AWS WAF to Block SQLi, XSS, and Bots Before They Hit Your API

solid practical guide. been meaning to lock down our staging env properly—this walk-through makes it less painful than the docs alone

2 · 1 week ago
on Add Rate Limiting and Bot Protection to a Node.js API with Arcjet

the 'no redis cluster to babysit' part is real — i spent weeks debugging distributed rate limit state across services before switching to a managed solution. that said, i'd want to audit what data arcjet holds and their data retention policy before throwing it on prod. last thing you need is a rate-limit service that goes dark and suddenly your legit users are locked out.

1 · 1 week ago