Engineering immersive digital experiences with AI.

I craft high-end web applications, AI-driven tooling, and spatial interfaces bridging the gap between editorial design and deep backend logic.

My work exists at the intersection ofhigh-end design engineering and deep logic.Bridging the gap between conceptual aestheticsand raw computational power. Every pixelmapped, every function perfected.

Featured
Projects.

Custom PC
Builds & Tuning.

Designing and assembling high-performance workstations, ultra-silent gaming setups, and custom servers. Clean craftsmanship, cable routing, and thermal optimization.

Service across Spain
Shipping Limited to Península & Islas
Custom PC Assembly Work
Basic gaming PC

High refresh rate gaming with liquid cooling

Basic but powerful computer for 1440p and 4k gaming with amazing temperatures.

Multi GPU Machine Deep Learning Build
Workstation PC

Extreme performance workstation

Extreme performance workstation for deep learning, including Ryzen Threadripper and a 5090.

Performance Guaranteed.

01.

Component Advisory

Full consultation on part synergy, bottleneck mitigation, thermal limits, and performance-per-euro ratio.

02.

Professional Assembly

Cable management for optimal airflow and aesthetics.

03.

Maintenance

Dust cleaning, high-conductivity thermal paste/liquid metal applications, and silent fan tuning.

04.

Diagnostic & Optimization

Rigorous 24-hour diagnostic workloads to assure absolute component health.

* Due to the highly delicate nature of transit logistics for custom rigs with massive coolers and heavy graphics cards, assembly services are exclusively available for clients based within Spain.

Stack & Infrastructure

Technical
Expertise.

A balanced foundation across the modern web stack and machine learning infrastructure.

Web Development

React & Next.js

Building responsive, highly interactive frontends.

TypeScript

Ensuring type safety and maintainable codebases.

Serverless APIs

Designing scalable endpoints (Node.js, AWS, Serverless).

GraphQL

Efficient data fetching and schema driven development.

Artificial Intelligence

LLM Fine-tuning

Adapting large models for domain-specific tasks.

Neural Networks

Architecting solutions with PyTorch and Python.

RAG Systems

Retrieval-augmented generation for robust data querying.

TensorFlow & Optimization

Performance tuning for local and cloud models.

Devlog.

Adventures, experiments, and thoughts on what I'm building.

gssoml

GSSO — Efficient Ghost Model Training

Managed to train the speculative ghost model at a fraction of the usual cost using dynamic layer pruning and asymmetric distillation. Promising throughput results.

I'd been going back and forth for weeks on how to cut down the ghost model training cost in GSSO without sacrificing speculation accuracy. The vanilla approach required training a full transformer (~7B) just to do speculative decoding — massive resource waste for a model that only verifies predictions. The fix: dynamic layer pruning + asymmetric distillation. Instead of training a full model, I train the ghost model with a dynamically pruned architecture: early layers are lightweight (low-rank attention), only the last 4-6 layers keep full resolution. Asymmetric distillation forces the ghost model to learn speculative acceptance patterns only, not the full distribution. Results: - Training cost down ~70% - Inference throughput +45% vs. standard speculative decoding - Acceptance rate dropped only 0.03 (0.92 → 0.89) — negligible given the savings Next up: implement dynamic tree drafting with this lightweight ghost model.