Mohamad Dbouk

Improve your skills in less than 10 minutes!

Subscribe to our mailing list to stay updated on topics and videos related to .NET, Azure, and DevOps!

I’m on YouTube


Latest Posts


  • From Frustrated to Successful: My Experience Deploying SonarQube in Azure

    From Frustrated to Successful: My Experience Deploying SonarQube in Azure

    SonarQube is a popular open-source platform for continuous code inspection that helps developers identify and fix coding issues, security vulnerabilities, and other bugs in their codebase. As someone who has worked on multiple software projects, I can attest to the importance of having a tool like SonarQube in your toolkit. It saves time and prevents…

    Continue Reading

  • The Power of Bicep: Deploying on Azure in a Snap

    The Power of Bicep: Deploying on Azure in a Snap

    If you’re looking for a simple and efficient way to deploy your application on Azure, you’re in the right place. In this blog post, I will guide you through the process of deploying an existing docker image on Azure using Bicep. It’s easier than you might think, and a lot more fun too! You can…

    Continue Reading

  • You no longer need a Dockerfile

    You no longer need a Dockerfile

    The .Net 7 release is bringing a lot of changes, and one of the most significant is the removal of the need for a Dockerfile. Container images are now a supported output type of the .NET SDK. You no longer need a separate Dockerfile to containerize your .NET applications. You can publish your application and…

    Continue Reading

  • Update Azure SQL Server Firewall rules using Azure CLI

    Update Azure SQL Server Firewall rules using Azure CLI

    If you’re used to working with Azure SQL Server without a private endpoint or virtual network, you might be used to adding your public IP to the Azure SQL Server Firewall rules each time your public IP changes. Luckily, there’s an easy option: use the Azure CLI to update the network firewall rules with your…

    Continue Reading

  • How to Mock using NSubstitute

    How to Mock using NSubstitute

    Unit tests are code written to test small pieces of functionality of big programs. Performing unit tests is always designed to be simple, A “UNIT” in this sense is the smallest component of the large code part that makes sense to test, mainly a method out of many methods of some class. Unit tests take…

    Continue Reading