ABOUT ME

WHO AM I?

Hi! I'm Alberto Plaza Montes, a Computer Science Engineer (M.Sc.) based in Spain.

I work in the FinTech sector as a Backend Software Engineer, specializing in designing event-driven architectures (DDD), transactional systems, and high-performance services.

Outside of work, I maintain my own homelab and build projects focused on distributed systems, concurrency, and FinTech infrastructure.

I focus on building resilient, scalable software with strict data integrity, adhering to industry standards such as EBA and BIAN.

// CORE_PRINCIPLES

ENGINEERING PHILOSOPHY

Technical principles and engineering mindset that drive how I design, build, and scale systems.

PILAR 01

Empirical measurement before optimization

Zero changes based on guesswork. Before altering code or introducing new tooling, I profile real bottlenecks (JVM, database contention, network latency).

In practice: Virtual Threads refactoring delivering a 49.8% performance gain and direct SQL query optimization on Mapfre Afín.
PILAR 02

Radical simplicity & low maintenance overhead

The best architecture isn't the one with the most patterns, but the simplest one meeting all non-functional requirements. I favor clean, 3:00 AM-debuggable designs over superfluous abstraction layers.

In practice: Contract-first API design (OpenAPI) and clean boundaries eliminating integration friction without ghost layers.
PILAR 03

Data invariants & consistency over distributed complexity

In FinTech, data integrity comes first. The priority is not accumulating microservices, but ensuring accurate balances, idempotent events, and zero corrupted states. If a SQL transaction solves it, skip the distributed complexity.

In practice: Architecting reconciliation and transitory omnibus accounting systems ensuring 100% consistency.
PILAR 04

Business impact & fast, safe delivery

Software only provides value when running reliably in production. Automation (CI/CD, targeted testing) exists to shorten Time-to-Market safely, never for pure dogma.

In practice: Robust pipelines and test suites enabling rapid iterations and safe deployments in highly regulated environments.