V Volkanic

Tools

Stack & tools

Technologies I use in real production projects. Not exhaustive — only what I actually ship to production regularly.

Backend & Languages

PHP 8 / Laravel

Main stack. Mature ecosystem, Eloquent for day-to-day work, and a community that has already solved 90% of the common problems.

Laravel Octane

Where performance matters. Keeps the application in memory between requests and removes the boot cost of the traditional PHP cycle. On heavily-hit query routes the difference is noticeable.

Java / Spring Boot

For services where strong typing and the enterprise ecosystem pay off. Spring covers security, persistence and configuration out of the box.

Vanilla / legacy PHP

Not a choice, a reality of many production systems. Moving through a legacy codebase without breaking it is a skill in itself.

Node.js

JavaScript on the backend, mostly on web projects where the rest of the stack already lives in the same language.

JavaScript / TypeScript

Frontend, scripting and tooling. TypeScript whenever the project is meant to outlive a couple of months.

Frontend & UI

Vue 3

Main frontend framework. The Composition API keeps logic organised as components grow.

Quasar

On top of Vue, for management applications: extranets, intranets and dashboards. A consistent component catalogue that avoids rebuilding the design system per surface.

React

On projects where the team or client already uses it. Function components with hooks, without dragging in a heavy framework on top.

Angular

For frontends that want a stricter, typed structure out of the box — common in management applications with larger teams.

WordPress

Custom development on WordPress when the client needs to manage their own content without depending on anyone.

Astro

For content sites like this one. Zero JavaScript by default and Markdown content without standing up a CMS.

Tailwind CSS

Utility-first. Visual consistency without accumulating a stylesheet nobody dares to touch.

Databases

MySQL / MariaDB

The databases I have run in production. Well modelled and indexed, they hold far more than people assume before anything exotic is needed.

Redis

Cache, sessions and frequently-accessed data. In an availability engine it is the difference between answering instantly and asking the database the same question again.

Data modelling

The schema is the most expensive decision to reverse in a system. It deserves more time than it usually gets.

Query optimisation

Reading execution plans, understanding which index is being used and why. In systems under real load this is where the big wins are.

Master-slave replication

Separating reads from writes when query volume vastly exceeds write volume, which is the norm for availability engines.

Infrastructure

AWS

The cloud provider I work with. EC2, RDS and S3 cover most of what a backend needs without adding services for fashion.

Docker / Docker Compose

Reproducible environments. Compose for local development with reasonable parity to production.

Terraform

Infrastructure declared as code. The real value is not automating provisioning, it is being able to read in a repository what exists and why.

Nginx

Reverse proxy, TLS termination and security headers. The piece that almost never causes trouble, which is why it gets forgotten.

Linux

Where everything ends up running. Being able to read logs, processes and resource usage saves an enormous amount of diagnosis time.

Horizontal autoscaling

Absorbing load peaks without oversizing infrastructure for the rest of the time.

GitHub Actions / CI/CD

Continuous integration and delivery. If deploying is scary you deploy rarely, and if you deploy rarely each deploy is riskier.

Architecture

REST APIs & Webservices

Designing APIs around the consumer, not around how the database happens to be organised.

Third-party integrations

One adapter per provider, one model internally. Every provider quirk contained in a single place.

Clean Architecture / DDD

Without ceremony: what matters is the boundaries and the direction of dependencies, not reproducing a diagram.

High-performance systems

Measure before optimising, and prioritise not doing work over doing it faster.

Tools

PhpStorm / IntelliJ IDEA

JetBrains IDEs for PHP and Java. Automated refactoring and code navigation pay for themselves in large codebases.

VS Code

For frontend, TypeScript, Terraform and Markdown.

Git + GitHub

Version control, reviewed pull requests and protection on the main branch.

This page is updated with the actual stack I use in current projects. Some technologies change over time — the choice always depends on the problem, not the trend.