Blog
Ideas and learnings I'm picking up along the way as a developer
2026-03-06•15 min read
Integrating AI into development
A practical guide based on a presentation and academic paper to use AI in development without drowning in noise, hallucinations, or context overflow.
AILLMWorkflowAgent.mdSkills
2026-04-08•12 min read
From monolith to microservices: how to migrate without breaking everything
A practical guide on how I start with a monolith, monitor traffic by module by storing it in the database, and then extract microservices with Redis when it actually makes sense.
MicroservicesRedisAPIArchitectureMonolithScalability
2026-03-26•14 min read
Workers and queues: how we moved heavy processes out of the main app
Practical case of how we delegated AI content generation, video, and image processing to dedicated workers with Redis and BullMQ so the main app doesn't block under load.
WorkersBullMQRedisNode.jsArchitectureMicroservicesAsync