Our blog
Offering
our
perspective
Filter by :
Hexagonal Architecture
Azure
16/07/2025

Integration and Hexagonal Architecture in Azure

Hexagonal architecture, also known as “Ports and Adapters”, is a software design style that promotes a strict separation between business logic (at the core of the application) and interactions with …
Fluent Validation
.Net
03/07/2025

Fluent validation

Data validation is a fundamental pillar of any robust software.It acts as a safeguard, preventing the introduction of incorrect or poorly formatted information that could compromise the system’s …
Baseball player
.Net
18/06/2025

Using HttpClient in Azure Functions

Aaah, HttpClients. There are plenty of reasons to use them—regardless of the language.All it takes is the need to call a resource on the internet—be it a web page or an API—and boom! You’re …
Bruno CLI in Azure DevOps
Azure
04/06/2025

Testing Your APIs with Bruno CLI in an Azure DevOps Pipeline

Automated testing plays a central role in ensuring the quality and reliability of software deliveries. However, automating API tests within CI/CD workflows remains a challenge for many teams. The CLI …
cocktail on the beach
.Net
03/06/2025

Syntactic sugar

In the world of computing, programming languages are essential tools used to communicate complex operations to a computer. Their main purpose is to provide a language understandable by humans, which …
Géo-réplication Azure Service Bus
Azure
07/05/2025

Geo replication in Azure Service Bus

On June 10 and 11, 2024, I attended the “Integrate 2024” event organized by Kovai. During the event, Microsoft announced a new feature: Geo-replication for Azure Service Bus. The public preview was …
Logic App in Docker
Azure
16/04/2025

Running Azure Logic App Standard as a Docker container

1. Introduction   1.1 What are Logic App Standard?   Azure Logic Apps Standard are integration and workflow automation services offered by Microsoft Azure. They allow you to orchestrate and …
Declare & Access to extensions properties using Azure Graph API
API Management
19/03/2025

Declare and access extension properties using Azure Graph API

In this article, we will see how to link an extension property to an identity (App Registration Client) in Entra ID. This mechanism can support multiple scenarios. In fact, I provide an example in …
terraform variable azure devops
DevOps
26/02/2025

Using a Terraform Variables File with Azure DevOps

  We are deploying resources with Terraform from Azure DevOps. In a Terraform main.tf file, it is recommended to use variables. The advantages are numerous: reusability, centralized …
Provisioning App Registrations in Entra ID with Azure CLI
Azure
22/01/2025

Provisioning App Registrations in Entra ID with Azure CLI

  To secure an application or an API, it is often necessary to define roles that client applications must have permissions for. In Entra ID, this involves: A Server App Registration …
devops az cli deploy azure ressource
ARM Template
09/09/2024

Deploying Azure Resources with Azure CLI

One of my favorite tools for deploying Azure resources is the Azure CLI. I find it very simple, well-documented, lightweight, and capable of running almost anywhere. Consequently, I use it …
parse csv blob on creation
Azure
29/04/2024

Parsing a CSV File in Azure Blob Storage

Recently, I worked on a project where I needed to read the contents of CSV files and then process them. We store these files in Azure Blob Storage containers. In this article, I’ll show you the …