Install
Architecture & Patterns
System design, microservices vs monoliths, event-driven architectures, DDD, and resilient patterns.
- 4 Subtopics
- 10 Tracked terms
- Last 30 days Feed window
Inside Architecture & Patterns
What this topic collects on
An article joins this feed when it matches these terms. Each one is also a search of its own.
Related topics
- Languages & Runtimes
- Editors, IDEs & Developer Experience
- Frontend Web
- Backend & APIs
- Data, Databases & Streaming
- DevOps, CI/CD & Platform Engineering
- Testing & Quality
- Security & Privacy Engineering
- AI/ML Engineering & LLMOps
- Collaboration & Project Management
- Open Source & Licensing
- Careers, Learning & Events
Latest in Architecture & Patterns
# Beyond Transformers: A Mathematical Critique of Cross-Lingual Diffusion Architectures
54+ min ago (424+ words) The current state of multilingual NLP is dominated by transformer-based architectures that often treat cross-lingual alignment as a secondary optimization task. For researchers and engineers working with low-resource languages or requiring strict semantic preservation, the "black box" nature of proprietary…...
Architectural Breakdown: i built a green blob that lives on my desktop. now it has feelings.
51+ min ago (118+ words) class MoodLabel(Enum): CONTENT = "content" CURIOUS = "curious" PLAYFUL = "playful" ANXIOUS = "anxious" SLEEPY = "sleepy" IRRIATED = "irritated" LOVING = "loving" MELANCHOLIC = "melancholic" @dataclass class AffectVector: valence: float = 0.0 # -1.0 to +1.0 emotional axis arousal: float = 0.5 # 0.0 to 1.0 activation level dominance: float = 0.5 # 0.0 to 1.0 sense of control novelty_seeking: float = 0.5 # 0.0 to…...
Build a DynamoDB Outbox and an Idempotent SQS Consumer in the Console
58+ min ago (1251+ words) Introduction Hi, I'm miruky. A database commit can succeed while the caller believes... Tagged with aws, serverless, dynamodb, tutorial....
1,551 Elasticsearch and 1,462 Memcached Endpoints: Two Cache Layers With Different Defaults
2+ hour, 33+ min ago (836+ words) Two ZoomEye host searches collected on 18 September 2026 returned 1,551 observable services on port 9200 and 1,462 on port 11211. Port 9200 is Elasticsearch's HTTP interface. Port 11211 is Memcached's default listener. The counts are similar; the security stories are not. Elasticsearch: authentication that became a default…...
Permissions and Authorisation: A Practical Playbook
2+ hour, 20+ min ago (808+ words) Authorisation is a domain capability, not a collection of scattered endpoint conditionals. For every protected operation, decide consistently whether a verified principal may perform a business action on a specific resource in a defined context—and enforce that decision server-side…...
We wanted a Vercel + Supabase alternative without becoming full-time DevOps
2+ hour, 35+ min ago (986+ words) When we started building small products, Vercel plus Supabase looked like the obvious stack. It was a good way to get moving. The frontend deployed quickly. Postgres and auth were ready. We did not need to think about servers. Then…...
A 25-verifier panel measured an effective size of 1.00
3+ hour, 3+ min ago (474+ words) Generation got cheap. Trustworthy review did not. So we add reviewers. More eyes on the PR, more verifiers in the gate, a panel of LLM judges instead of one. The assumption underneath is that each additional reviewer adds independent evidence....
Java 25 Compact Source Files: Simplifying Micronaut Application Startup
3+ hour, 9+ min ago (188+ words) In Java, a compact source file is a feature finalized in Java 25 (via JEP 512) that allows you to write a launchable Java program without explicitly declaring a class or a public static void main method. It is designed to minimize…...
nobody teaches you software architecture. you just break something enough times.
3+ hour, 25+ min ago (256+ words) For the longest time, I thought architecture was something other people did. Not I. Design patterns?... Tagged with architecture, programming, showdev, beginners....
Designing offline-first when there's no server
3+ hour, 37+ min ago (560+ words) I'm building an app with no backend. No accounts, no sync, no API. The database is a SQLite file on the phone, and that's the whole system. That sounds simpler than a client/server app. In some ways it is....