Publish Messages to Kafka Topic from Python
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...
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 = ...
Install Rust Refer Setup Rust for installation. You can also refer official Rust documentation Create new project with cargo Open terminal and run following cargo new hello-world cd hello-worl...
What is Rust? Rust is a systems programming language that runs blazingly fast, prevents segfaults, and guarantees thread safe. Why Rust? Rust is super fast compared to any other modern programmi...
What is a Web Framework? A web framework is a software framework that is designed to support the development of web applications including web services, web resources, and web APIs. It provides a ...
Github copilot is a new tool that helps you write code faster and with less effort. It is a VS Code extension that uses OpenAI’s Codex AI to suggest code snippets based on the context of your code....
What is Performance Testing? Performance testing is a type of software testing that measures the performance of a system under a specific workload. It is used to determine how well the system perf...