Browsing Tag
architecture
224 posts
Building SyncBoard Pro — A Multi-Tenant Agile SaaS Platform
What is SyncBoard Pro? SyncBoard Pro is a production-grade, multi-tenant Agile project management platform, combining Scrum and Kanban…
Building a 3D CAD Application: The Geometry Layer Explained
A 3D CAD application usually contains several layers that solve very different problems. The user interface manages commands…
Buying a phone number is a distributed transaction
The API makes it look trivial. const number = await carrier.numbers.buy({ phone_number: "+1..." }); await db.insert("rented_numbers", { user_id,…
Designing HTML Page Caching Changed How I Think About Caching
Long Story Short Designing HTML page caching in practice connected several concepts I had previously understood separately, such…
‘We’ll fix it later’ is a loan. Here’s the interest rate
Every time someone on your team says “we’ll clean it up later,” they’re taking out a loan. The…
Designing a Privacy-Safe Gift Card Image Submission Pipeline
A gift card image is not an ordinary profile photo. It can contain a redeemable code, a PIN,…
Giving a fleet of AI agents one shared memory — when each agent runs a different model
Most agent frameworks give each agent its own context window and call it memory. That works right up…
What it took to move a collaborative browser IDE beyond process memory
The first collaboration model in CodeVerse was convincing in exactly the way a local demo needs to be…
Why We Built MicroLeague Sports Vol. 3
Why Sports Data Is Harder Than Most People Think Building believable cross-era simulations turned out to be less…
How Much Should Live Together? Learning to Isolate Services the Hard Way
How moving from VMs to Proxmox LXC containers taught me more about isolation, failover, high availability, and efficiency…