Azure CLI to download Docker Images

Docker images is an executable package of software built by docker file. This helps to containerize an application. This uses operating-system-level virtualization to deliver software in packages called containers. he way Docker does this is by packaging an application and its dependencies in a virtual container that can run on any computer. This containerization allows […]

RAG Generation using Azure AI Search and Open AI

RAG (Retrieval Augmented Generation) is an architectural approach that gives data as context for LLM to improve relevancy. This helps in improving the efficacy of LLM applications. Azure AI search helps in the information retrieval in RAG architecture. RAG solution using Azure AI search and Open AI is as follows: Application sends the user request […]

Simplifying SSL Certificate Management with KeyVault Acmebot

In today’s digital landscape, securing web applications with SSL certificates is crucial for protecting sensitive data and ensuring trust with users. However, managing SSL certificates can be a complex and time-consuming task. Enter Key Vault Acmebot, an open-source tool designed to automate SSL certificate issuance and renewal using Azure Key Vault and the ACME (Automated […]

How to Upload Files to Azure Blob Storage Using Azure Functions

Introduction Azure Blob Storage is a scalable object storage service for unstructured data such as text or binary data. It’s ideal for storing files, images, videos, and backups. Azure Functions provide a serverless compute service that allows you to run small pieces of code, or “functions,” in response to events. In this blog post, we […]

Message transmission using Azure service bus queue

Azure Service Bus is a cloud-based messaging service provider provided by Microsoft Azure. Azure Service Bus provides a variety of messaging patterns, like queues, topics, and subscriptions. In this blog, we are going to see in detail how to send and receive messages using queues. Prerequisites Queues Queues are a fundamental messaging pattern used for […]

Azure Functions with .Net

Azure Functions with .NET enables serverless computing for .NET applications, allowing for efficient and scalable execution of code in response to events.