Author: Alexandre Blanchet

Early in my career, I specialized in the Python language. Python has been a constant in my professional life for over 10 years now. In 2018, I moved to London where I worked at companies of various sizes as a Python developer for five years. In parallel, I developed my activity as a Mentor, to which I now dedicate myself full-time.

Protected: HR AI Agent with Azure AI Foundry

There is no excerpt because this is a protected post.

Read More

Protected: SOLID Principles with Python

There is no excerpt because this is a protected post.

Read More

OOP – Part 2: Magic methods with Python

Magic methods (also known as dunder methods, for “double underscore”) are special methods in Python that enable operator overloading and hook into built-in behaviors. 🔹 __init__: Object Constructor Called when an

Read More

Protected: Pair programming

There is no excerpt because this is a protected post.

Read More

Protected: Harper the HR Assistant

There is no excerpt because this is a protected post.

Read More

Docker Crash Course

Docker Foundations 📌 What is Docker? Docker is a platform for developing, shipping, and running applications in lightweight, isolated environments called containers. Think of containers like mini-virtual machines—but way faster and

Read More

Pytest – What to use and why?

Create a new test file.Make sure to prefix the file containing your tests with test_ Mocking When to use mocking? When not to use mocking? Mocking to test your work before

Read More

Protected: Deploy a EKS cluster + load balancing test

There is no excerpt because this is a protected post.

Read More

Deploy a App service from Terraform and a Docker image

Prerequisites Terraform Script provider “azurerm” { features {}}# Resource groupresource “azurerm_resource_group” “example” { name = “example-rg” location = “East US”}# App Service Planresource “azurerm_app_service_plan” “example” { name = “example-asp” location =

Read More

Celery, a Super vegetable!

In this blog post, we will speak about celery how and why it can be interesting for you.We know all of the benefits of consuming celery regularly. Celery is also a

Read More