Repositorio Maestro y Centro de Mando para la consolidación de habilidades desde el código hasta la infraestructura y el liderazgo técnico: Node.js, Python, PHP, Arquitectura Backend, Frontend Moderno, Cloud Platform, CI/CD Universal y Metodologías Ágiles.
Creado y mantenido por @zulquer.
graph TD
classDef client fill:#1f2937,stroke:#61dafb,stroke-width:2px,color:#fff;
classDef runtime fill:#111827,stroke:#10b981,stroke-width:2px,color:#fff;
classDef backend fill:#1e1b4b,stroke:#818cf8,stroke-width:2px,color:#fff;
classDef infra fill:#0f172a,stroke:#38bdf8,stroke-width:2px,color:#fff;
classDef agile fill:#2e1065,stroke:#c084fc,stroke-width:2px,color:#fff;
UI["⚛️ frontend-mastery<br/>(React 19, Angular v19, Next.js, Web Perf)"]:::client
API["🟢 nodejs-ecosystem-mastery<br/>(V8, Libuv, Express, NestJS, TS)"]:::runtime
PY["🐍 python-ecosystem-mastery<br/>(CPython, GIL, FastAPI, Django, PySpark)"]:::runtime
PHP["🐘 php-ecosystem-mastery<br/>(Zend Engine, OPcache, Laravel, FrankenPHP)"]:::runtime
ARCH["🌐 backend-mastery<br/>(REST RFCs, SQL ACID, NoSQL CAP, Dist. Resilience)"]:::backend
CLOUD["☁️ cloud-mastery<br/>(AWS, Azure, K8s HPA, Terraform, FinOps)"]:::infra
CICD["🚀 cicd-mastery<br/>(Pipelines DAG/Matrix, GitOps ArgoCD, Canary)"]:::infra
LEAN["🏃 agile-mastery<br/>(Scrum, Kanban, Ley de Little, XP Practices)"]:::agile
UI -->|HTTP / Streaming RSC| API
UI -->|SSE / WebSockets| PY
UI -->|REST / Inertia| PHP
API -->|Consistencia & ACID| ARCH
PY -->|Procesamiento & Data Lake| ARCH
PHP -->|Transacciones & Pools| ARCH
API -->|Docker OCI Containers| CLOUD
PY -->|Docker OCI Containers| CLOUD
PHP -->|FrankenPHP OCI Images| CLOUD
CICD -->|Despliegues Automatizados| CLOUD
LEAN -.->|Gobierna el Flujo de Entrega| CICD
| Repositorio | Especialidad Técnica & Runtimes | Repositorio GitHub |
|---|---|---|
nodejs-ecosystem-mastery |
🟢 Node.js Core, V8, Libuv, Express, NestJS (100 Labs), Testing & TypeScript | github.com/zulquer/nodejs-ecosystem-mastery |
python-ecosystem-mastery |
🐍 CPython Internals, GIL, FastAPI ASGI, Django ORM, PySpark & Pytest | github.com/zulquer/python-ecosystem-mastery |
php-ecosystem-mastery |
🐘 Zend Engine 4, Zvals COW, Laravel IoC, Symfony HttpKernel, FrankenPHP & Pest | github.com/zulquer/php-ecosystem-mastery |
backend-mastery |
🌐 REST APIs RFC 9110, SQL (MVCC, SKIP LOCKED), NoSQL (CAP, Redlock) & Sistemas Distribuidos | github.com/zulquer/backend-mastery |
frontend-mastery |
⚛️ React 19 (Fiber Reconciler, Lanes), Angular (Signals, Zoneless), Next.js & Web Vitals | github.com/zulquer/frontend-mastery |
cloud-mastery |
☁️ Cloud (AWS, Azure, DigitalOcean), Kubernetes HPA, Terraform Multi-AZ & FinOps | github.com/zulquer/cloud-mastery |
cicd-mastery |
🚀 CI/CD Universal (GitHub Actions, Azure Pipelines), GitOps & Canary Deployments | github.com/zulquer/cicd-mastery |
agile-mastery |
🏃 Scrum en Profundidad, Flujo Kanban, Ley de Little, XP (TDD/Trunk-Based) & Cynefin | github.com/zulquer/agile-mastery |
Dependiendo del objetivo profesional o del rol que quieras demostrar en entrevistas técnicas:
frontend-mastery➔ Dominio de rendering, reconciliación y estado cliente.nodejs-ecosystem-mastery➔ Desarrollo de APIs resilientes en Node/NestJS.backend-mastery➔ Diseño de esquemas SQL, cachés con Redis y contratos RFC.
backend-mastery➔ Patrones distribuidos, transacciones ACID y aislamiento.nodejs-ecosystem-mastery➔ Alto rendimiento de I/O en V8 y Streams.python-ecosystem-mastery➔ Concurrencia CPython, FastAPI y big data con PySpark.
cloud-mastery➔ Orquestación de Kubernetes, Elasticidad HPA y Terraform.cicd-mastery➔ Automatización de despliegues Zero-Downtime y GitOps.backend-mastery➔ Observabilidad, Rate Limiting y Resiliencia ante fallos.
- Visión 360°: Dominar las 6 áreas técnicas anteriores sumadas a
agile-masterypara erradicar la multitarea mediante la Ley de Little, acortar el Lead Time y alinear negocio e ingeniería.
Desde la raíz del repositorio padre:
# 1. Comprobar el estado de Git en los 8 submódulos:
make status
# 2. Ejecutar la suite completa de laboratorios senior:
make test-all
# 3. Actualizar todos los submódulos desde sus repositorios remotos:
make updateToda la suite implementa transversalmente:
- The Twelve-Factor App: Configuración por entorno, paridad dev/prod, procesos sin estado y logs como streams.
- Métricas DORA: Optimización de frecuencia de despliegue, tiempo de entrega de cambios, MTTR y tasa de fallos.
- Clean Architecture & SOLID: Inversión de control, arquitectura hexagonal y separación estricta de responsabilidades.