Our blog
Offering
our
perspective
Filter by :
Validation mecanism for quality
DevOps
24/12/2025

Improving code quality with SonarQube

In most software projects, discussions tend to focus heavily on features, deadlines, and production releases. Code quality, on the other hand, is discussed far less often. Yet it is a topic that can …
Lego Layers
Azure
05/12/2025

Three-Layer Architecture for Your IaC with Terraform and GitHub

When deploying Infrastructure as Code with Terraform and GitHub at an organizational scale, you often fall into one of two traps: either giant “shared skeletons” that block everyone, or a wild …
Melter working
.Net
06/11/2025

Integrating .NET Code in Standard Logic Apps

When using standard Azure Logic Apps, sometimes the available actions are not sufficient for the workflow’s data handling. The workflow may require more hands-on treatment or transformation. In these …
swiss knife
.Net
07/10/2025

IOptions pattern in Azure Functions

The IOptions pattern is a mecanism provided by .NET to cleanly inject configuration into your application services. It allows you to automatically bind strongly-typed C# classes to a section of the …
Link Logic App to File Share
Azure
17/09/2025

Automating a File Share Connection deployment for a Standard Logic App

Azure Storage Mount is a feature that allows you to attach a local File Share to a Logic App Standard. This link enables the use of File System operations and connects a Standard Logic App to a file …
Solid bridge in the jungle
Azure
05/09/2025

Securing connection between Storage Accounts and Function Apps

In Azure, securing the connections between Storage Accounts and a Function App is crucial. These connections are used to store source code and secrets, among other things. But they can also become a …
illustration chunked request
API Management
20/08/2025

Chunked HTTP Requests in Azure

When sending an HTTP request, it is possible to transmit the data block by block (chunked). This makes it possible to avoid dealing with the total size of the data being exchanged and to send the …
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 …