FINISHED Architecture Comparison Lab
Experiment comparing multiple backend architectures and how they evolve as domain complexity increases.
class ReservationService { public function calculateTotal() { return $this->pricingService ->applySeasonModifier() ->applyDiscountRules() ->applyChannelCommission() ->applyTaxes() ->buildInvoice(); } } // Domain rules evolve // architecture decisions matter // complexity grows over time
Experiments and projects focused on backend architecture, system evolution and software design decisions.
Server-side architecture, APIs and system design experiments.
FINISHED Experiment comparing multiple backend architectures and how they evolve as domain complexity increases.
FINISHED Comparison of API implementations using native PHP, Symfony and Laravel analysing complexity and maintainability.
UPCOMING Practical exploration of backend design patterns applied to real business rules and domain modelling.
FINISHED This project represents the technical test I completed during the selection process for my first professional role as a web developer.
Complete web applications and interactive interfaces.
FINISHED Restaurant website for Pura Vida - Piscinas Bar. Features a dynamic menu powered by Google Sheets API, allowing the venue to update their offerings directly.
IN PROGRESS Web application built with React and Laravel that connects to an electronic drum kit via MIDI interface. Plays sheet music and aims to become a Guitar Hero-style game for drummers.