Posts

Showing posts from July, 2022

Sample Chatbot flow diagram

Image
TechnicalHubCore is a Professional Technology Platform. Here we will provide you only interesting content, which you will like very much. We're dedicated to providing you the best of Technology, with a focus on dependability and Dot net and Azure. We're working to turn our passion for Technology into a booming online website. We hope you enjoy our Technology as much as we enjoy offering them to you. I will keep posting more important posts on my Website for all of you. Please give your support and love.  In this page , I'll explain the sample chatbot flow diagram. Before we need to know the advantages of ChatBot: 1. Chatbots are available 24/7 to help customers. 2. Chatbots does not required human interaction so it eliminate the operation cost and hence companies saves the cost 3. Chatbot are improves the customers/users satisfaction. 4. Chatbot are easily embabed with web applications, Microsoft te

RethinkDB to Power BI Reports Generation

Image
TechnicalHubCore is a Professional Technology Platform. Here we will provide you only interesting content, which you will like very much. We're dedicated to providing you the best of Technology, with a focus on dependability and Dot net and Azure. We're working to turn our passion for Technology into a booming online website. We hope you enjoy our Technology as much as we enjoy offering them to you. I will keep posting more important posts on my Website for all of you. Please give your support and love. In this page, I'll explain "How to generate PowerBI Report using Rethink DB". Here i am considering two ways 1. Using Azure 2. On premises resources Prerequisite : ReThinkDB Azure Blob Storage, Data factory,SQL PowerBI Reports SSIS First we need to understand what is RinkThinkDB?   ReThinkDB is a open source & scalable database. This will store the records in JSON format with no required schema or table structure. It was designed specifically to pus

Architecture diagram for upload & validate the videos in azure

Image
TechnicalHubCore is a Professional Technology Platform. Here we will provide you only interesting content, which you will like very much. We're dedicated to providing you the best of Technology, with a focus on dependability and Dot net and Azure. We're working to turn our passion for Technology into a booming online website. We hope you enjoy our Technology as much as we enjoy offering them to you. I will keep posting more important posts on my Website for all of you. Please give your support and love.   In this page , I'll explains the architecture of uploading video to azure using web application and validating(Quality of video) the uploaded video by your QA team. If you want to devlop a solution without Azure Media Services below solution is good. Cost for this solution is less compared to azure media services. Here I am creating three types of Role Engineer Role- Privilege's to upload the video QA Role- Privilege's to validate the upload

Send Email Alerts when Azure VM is Shut down using PowerShell

In this page , I'll explains "Send email alerts if the Azure VMs is deallocated or stopped using PowerShell". This scenerio will help when Azure Virtual machines suddenly stopped due to netwok issue or data center is down. These type of issues we can't monitor every time,so i have explained below article to identifies when VM is stopped. Prerequisite : Powershell IDE AzureRm Module in powershell Gmail Account First we need to Azure Rm module: Open PowerShell from your local machine and install the Azure RM Module  And Type the command "install-module azure rm" in your powershell command window By default it will give  yes by typing [Y] to install NuGet Provider.  Wait for 5 min. Azure Rm module installing. PowerShell commands to send email alerts:  After sucessfully installing the AzureRm module, copy below powershell script into your local. Below code reads the all VM under in a specific resource group.   PowerShell Script: Login-AzureRmAccount    # Firs

Read text on an Image using Azure cognitive services

This article help you to understand how to read text on an image using C#.net .  We can read the text on images in, two ways. The first one is Computer Vision and the second one is Natural Language Processing (NLP). Computer vision helps us to read the text and then Natural Language Processing is used to make sense of that identified text. In this article, we will discuss on Computer vision.First you need to understand what is the  OCR in Azure Cognitive Services?     "OCR ( Optical character recognition) is extracts text from images like printed text, hand writting text etc which is in readable format and also OCR helps to read content on documents like pdf, word etc" , to know about more information on OCR click here . Prerequisites : Before we start, we should have the following things in our hand. 1. A valid Azure Subscription 2. A good Code editor, I prefer VSCode or Visual Studio Read Text on images using c#.net : First you need to create an Computer

BotFramework using RFPIO

Image
 In this page, i'll explain on "How chatbot is responding to users questions by using RFPIO". When any orgination planning to create a chatbot application, RFPIO is a good platform. RFPIO is easily integrate with any platform and able to fetch data from document library or QnA pairs. RFPIO is good choice for your knowledge base. First we need to understand what is RFPIO ? RFPIO is the market leader in response management software, trusted by some of the world's smartest companies to support RFP and Security questionnaire response, create and manage sales proposals, and resolve inefficiencies rooted in decentralized and inaccessible content and knowledge. The software's robust and bi-directional integrations, along with an open API, allow teams to digitally transform response management processes and to harness the power of the knowledge and content across their teams. RFPIO supports response management for growing organizations of all sizes includin

How to use OAuth (Bearer Token) Authentication in Azure Functions

This article help you to understand how bearer token is validating in your azure function.  First you need to understand what is the Bearer token ?  "Bearer Token is used to authenticate your API's and token is in base 64 URL encoded value, some servers will issue tokens that are a short string of hexadecimal characters, while others may use structured tokens such as JSON Web Tokens. for more details on Bearer token click here . Note : Bearer Token should be send via request headers to your azure function.  Validate your Bearer Token: First Create Application ID in Azure Active directory and generate client id & secrete and reply url. Click here to understand how to create app id in Azure active directory.  Next create a Azure Http trigger function and add below code in your function. public  async Task<IActionResult> Run ([HttpTrigger(AuthorizationLevel.Anonymous, "get", "post", Route = null)] HttpRequest req, ILogger log)         {