Development & Performance, Web AI Isn’t Your Architect: Real-World Issues in a Vue project 15.12.2025 by Nicolas Meunier In my previous article I generated a Rest NestJS API using AI. Today, I will create a small UI to authenticate users via the API. I will use this simple case to show the limits of coding with AI(…)
Development & Performance, Web How effective is AI on a development project? 12.12.2025 by Nicolas Meunier In this article, I will try to evaluate the benefits of AI on a development project and what concrete changes it makes to our development practices. The test case and the approach I chose a familiar environment for my comparison:(…)
Kubernetes Two days at the KCD Suisse Romande 11.12.2025 by Nicolas Meunier The 4th and 5th december, I attended KCD Suisse Romande in Geneva. It was a great event in a great place with great people. I really enjoyed the talks and the workshops. First Day: the workshops After a meeting(…)
Development & Performance, Web Avoid CORS requests in development mode with Vite 26.11.2025 by Nicolas Meunier When developing a modern web application, it’s common to use a frontend (Vue, React) that communicates with a backend (Nest.js) via REST APIs. Often, the two projects live in parallel, requiring them to be run in development mode. Without specific(…)
DevOps, Docker, Kubernetes, YaK Building multi-architecture images with GitLab CI/CD 06.12.2024 by Nicolas Meunier Building multi-architecture images become more and more useful. Indeed, many recent computers use ARM processors architecture. Examples include MacBooks using M(x) processors, and Amazon EC2 instances using AWS Graviton processors. However, the diversification of processor architectures adds a new(…)
Development & Performance, Web Manage Feathers.js authentication in Swagger UI 30.08.2024 by Nicolas Meunier In addition to my previous articles Add a UI to explore the Feathers.js API and Add authentication in a Feathers.js REST API, today, I will explain how to manage Feathers.js authentication in Swagger UI and make it(…)
Development & Performance, Web Add authentication in a Feathers.js REST API 25.04.2024 by Nicolas Meunier Following on from my previous articles: Create REST API from your database in minute with Feathers.js, and Add a UI to explore the Feathers.js API, today I want to add authentication in my Feathers.js REST API. Creation, update(…)
Development & Performance, Web Add a UI to explore the Feathers.js API 26.03.2024 by Nicolas Meunier Following on from my previous article: Create REST API from your database in minute with Feathers.js, today I want to add a UI to explore the Feathers.js API. When we provide an API, it’s common to make a tool(…)
Development & Performance, PostgreSQL, Web Create REST API from your database in minute with Feathers.js 13.03.2024 by Nicolas Meunier Creating REST APIs is a fairly repetitive task. You’re always rewriting the Create, Read, Update, Delete methods…In my search for a framework capable of generating a REST API, I discovered Feathers, a simple and useful framework for Node.js.
DevOps, Kubernetes How to delete a resource with the error: failed calling webhook 25.01.2024 by Nicolas Meunier The original mistake In preparation of the GitLab essentials workshop, I’m using helm to deploy it. After a few tests, I wanted to clean up my cluster, and accidentally deleted the namespace before doing helm uninstall.