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 […]

Common UI components using react hooks

Hooks are a new feature in React 16.8 that let you use state and other React features in function components. React hooks is the main advantage of functional component over class which can be used in building common reusable UI components. Let’s see how we can build common components like Search and Pagination using react […]

Recurring Mail notification using Hangfire

Hangfire is an open-source software for task scheduling in ASP .NET and ASP .NET core. It uses RDBMS / No SQL storage for storing background processing job details. So, Storage connectivity is the only configuration required to implement hangfire in ASP .NET applications. This framework includes hangfire server which queries the storage to process the […]