Public list by ~betterdevlink

Issues #288 Jun 22, 2026

How OpenRouter Manages Secrets for Developers and AI Agents Using Infisical

https://www.vpdae.com/redirect/5vhsoxpyrlznbtw2znmhmqopv0a

How OpenRouter centralized secrets sprawling across 70+ providers Every new API key means tracking down which services need it, then updating each one by hand. At OpenRouter, that happened one to two times a week. OpenRouter runs the largest AI gateway for developers, with infrastructure spanning Vercel, GCP, and Cloudflare and 70+ model providers. Each one ships its own keys, propagated manually with custom scripts, and no audit trail. A leaked production credential meant downtime and an SLA breach. The team adopted Cursor, Claude Code, Devin, and Codex, and each needed scoped access to run services end to end without reaching credentials it shouldn't. OpenRouter centralized everything on Infisical: → Dynamic folder sync replaced the scripts: one folder for all provider keys, imported into the services that need them → Role-based access separates dev, admin, and break-glass production: A dedicated agent tier issues session-scoped credentials, so tools like Cursor and Claude Code pull dev secrets directly and run read-only cron jobs against production, scoped to exactly what they need. → Audit logging: It closed the visibility gap on when and why a secret changed. The payoff: spinning up a new service dropped from a multi-service manual chore to about 10 minutes. 21 services now sync through Infisical and 50+ engineering hours are saved per month. As founding engineer Shashank Goyal put it: "With Infisical, you get the security benefit along with improved developer experience, it becomes a no-brainer." Read the full case study.

about 2 months ago

Parsing Gigabytes of JSON per Second

https://arxiv.org/pdf/1902.08318

Parsing Gigabytes of JSON per Second Pair it with this video to learn how fast we can read a file? are we limited by disk or cpu?

about 2 months ago

Six SQL patterns I use to catch transaction fraud

https://analytics.fixelsmith.com/posts/sql-fraud-patterns/

Six SQL patterns I use to catch transaction fraud Fraud detection in transaction data is mostly SQL. Not machine learning, not graph databases, not whatever Gartner is hyping this year. SQL, run against the right tables, with the right joins, looking for the right shapes.

about 2 months ago

Shopify replaced Redis with MySQL for inventory reservations and it scaled

https://shopify.engineering/scaling-inventory-reservations

Shopify replaced Redis with MySQL for inventory reservations and it scaled Shopify needs no introduction of their scale. They have an oversell protection to track inventory buld on Redis, using DECR and INCR. But data now is lived on 2 system, and this cannot be done in an atomic manner because state is persisted outside of MySQL. Operating and scaling Redis in region awareness also not easy. So they moved this to MySQL with SKIP LOCKED.

about 2 months ago

Cell-Based Architecture for Resilient Payment Systems

https://americanexpress.io/cell-based-architecture-for-resilient-payment-systems/

Cell-Based Architecture for Resilient Payment Systems The American Express core payments ecosystem is a global platform relied on by Card Members and partners around the world. Every day, it processes live payment transactions that require high availability, low latency, and predictable performance. To achieve this, the platform is built around a cell-based architecture that isolates failures, maintains low-latency processing, and scales capacity without expanding the failure domain

#architecture #payments #resiliency

about 2 months ago

When failover isn’t safe: Building high-availability PostgreSQL on Kubernetes | Datadog

https://www.datadoghq.com/blog/engineering/postgresql-ha-kubernetes/

When failover isn’t safe: Building high-availability PostgreSQL on Kubernetes DataDog regularly run a variety of gamedays to intentionally stress our platforms and learn how our systems and teams respond under real-world conditions. During that they discover when network latency increase, replica lag, primary failed and failover is no longer safe.

#database #postgresql #kubernetes

about 2 months ago

From Christmas Outage to #1 App Store Ranking: An Aura Frames Postgres Scaling Retrospective

https://andyatkinson.com/postgresql-rds-scaling-aws-christmas-day-peak

From Christmas Outage to #1 App Store Ranking: An Aura Frames Postgres Scaling Retrospective On Xmas 2024, Aura Frames API had problems under peak load, being unavailable for three hours. They implement multiple strategy to help improve Postgres performance significantly. We will learn all of that here: high cpu during vacum, increase latency, lag replica, index bloat due to high write. One of interested thing is they split heavy write tables to its own dedicated db, we cannot always do this, but if we can it reduce and isolated high load to that db only.

about 2 months ago

.gitignore Isn’t the Only Way To Ignore Files in Git

https://nelson.cloud/.gitignore-isnt-the-only-way-to-ignore-files-in-git/

gitignore Isn’t the Only Way To Ignore Files in Git I’ve been using Git for so long and I just realized you can ignore files at three different levels and not just with .gitignore. The three files you can use to ignore files are: .gitignore, .git/info/exclude, ~/.config/git/ignore

about 2 months ago

Guide to the TD4 4-bit DIY CPU

https://www.philipzucker.com/td4-4bit-cpu/

Guide to the TD4 4-bit DIY CPU How hard it’s to build a home made CPU? hard if you had to do the hardware component yourself. But assume if you can get the part. TD4 is a little 4bit CPU: 2 registers, 16 bytes ROM.Quite limited but still very cool and teaches a lot of principles of computer architecture.

about 2 months ago

CS 6120: The Self-Guided Course

https://www.cs.cornell.edu/courses/cs6120/2025fa/self-guided/

CS 6120: Advanced Compilers: The Self-Guided Online Course

about 2 months ago

GitHub - cauenapier/TownSquare

https://github.com/cauenapier/TownSquare

TownSquare Your website, but inhabited. Very hard to explain, like convert visitor into real character can interact in a widget on your site. very fund interestint to check

about 2 months ago

Absurd

https://earendil-works.github.io/absurd/

Absurd is a Postgres-native durable workflow system. It moves the complexity of durable execution into the database layer via stored procedures, keeping SDKs lightweight and language-agnostic. The core principle is to handle tasks that may run for minutes, days, or years without losing state.

about 2 months ago

GitHub - ozontech/pg_doorman: PostgreSQL Pooler

https://github.com/ozontech/pg_doorman

pg_doorman A multithreaded PostgreSQL connection pooler in Rust (MSRV 1.87). Alternative to PgBouncer, Odyssey, and PgCat. In production at Ozon for over three years across Go (pgx), .NET (Npgsql), Python (asyncpg, SQLAlchemy), and Node.js workloads.

about 2 months ago