Docker Images Version Tagging Best Practices
Docker Images Version Tagging Best Practices In this post, I will share some best practices for tagging Docker images. Proper versioning and tagging of Docker images are crucial for maintaining a ...
Docker Images Version Tagging Best Practices In this post, I will share some best practices for tagging Docker images. Proper versioning and tagging of Docker images are crucial for maintaining a ...
Reusing Azure ServiceBus Queue Client Across the Application In this post, I will show you how to reuse the Azure ServiceBus Queue Client across the application. We will create a Singleton class t...
Github Action to Publish Workflow Notifications to Teams In this post, I will show you how to publish Github Workflow notifications to Microsoft Teams using a Github Action. Pre-requisites A ...
Read Messages from kafka topic using Python In this post, I will show you how to read messages from a Kafka Topic using Python. Prerequisites Kafka Cluster Kafka Topic Python Install Co...
Read messages from Azure ServiceBus Queue using dotnet core and Azure SDK In this post, I will show you how to read messages from an Azure ServiceBus Queue using dotnet core and Azure SDK. Prereq...
Publish messages to Kafka Topic from Python using Confluent Kafka In this post, I will show you how to publish messages to a Kafka Topic from Python using Confluent Kafka. Prerequisites Kafka...
Publsih messages to Azure ServiceBus Queue using dotnet core and Azure SDK In this post, I will show you how to publish messages to an Azure ServiceBus Queue using dotnet core and Azure SDK. Prer...
Generate a QR Code for URL using Python QR Code generation Library In this post, I will show you how to generate a QR Code for a URL using Python. We will use the qrcode library to generate the Q...
Observability vs Application Performance Monitoring Observability and Application Performance Monitoring (APM) are two terms that are often used interchangeably, but they are not the same thing. I...
Github Service Containers GitHub Service Containers allow you to run services, such as databases, within your GitHub Actions workflows. This is particularly useful for integration testing, where y...
Merge multiple coverage files inside Github Actions Problem Statement When you have multiple test projects in your solution and you want to merge the coverage reports of all the test projects int...
DB Integration tests in dotnet core applications Create a new project dotnet new webapi -n Todoapi Add EFCore and other required packages dotnet add package Microsoft.EntityFrameworkCore.InMem...
Delete local git branches You can delete individual local git branch by using git command or any git tool easily Git command to delete individual branch # command git branch -d feature/awsome-fe...
Reverse an Array fn reverse_array(a: &[i32]) -> Vec<i32> { let mut number = a.len(); let mut result:Vec<i32> = vec![]; while number != 0{ number = numbe...
Read input from CLI Create new project using cargo. Replace content inside main.rs file with following code. use std::io; fn main() { println!("Enter your input"); let mut cli_input = ...