Articles
Three modern software architectures widely used today
Fundamentals•2026.05.26•
abstract: A practical comparison of modular monoliths, cloud-native microservices, and event-driven architecture for choosing based on product, team, and scale.
takeaways:
- -There is no universal architecture: the right choice depends on domain boundaries, team autonomy, and operational needs.
- -The modular monolith remains a modern option when the product needs speed and internal coherence.
- -Microservices and events shine when there is organizational scale, independent deployment, and real asynchronous work.
stack: [DDD, Kubernetes, API Gateway, Message Broker, Serverless, Observability]
EN Orquestación de agentes AI: arquitectura, patrones y disciplina operativa para sistemas multiagente
Fundamentals•2026.05.23•
abstract: Principios, patrones y criterios de producción para diseñar sistemas multiagente confiables, observables y seguros.
stack: [LangGraph, Model Context Protocol, Azure AI, TypeScript, JSON-RPC]
Optimizing 3D Scenes with React Three Fiber
Experiments•2026.05.23•
abstract: How to render thousands of 3D objects at 60 FPS using instanced meshes, demand-driven frameloops, and custom shaders in GLSL.
takeaways:
- -Using InstancedMesh drastically reduces draw calls by sending a single instruction for thousands of objects.
- -Setting the frameloop to demand-driven prevents continuous rendering and saves valuable CPU cycles.
- -Moving heavy calculations to GLSL Vertex Shaders delegates the heavy lifting to the GPU parallel processors.
stack: [Three.js, React Three Fiber, GLSL, Next.js]