Get Weather by Speaking App with Azure Cognitive Services

…where we are searching for weather in New York, NY: https://query.yahooapis.com/v1/public/yql?q=select%20item.condition%20from%20weather.forecast%20where%20woeid%20in%20(select%20woeid%20from%20geo.places(1)%20where%20text%3D%22New%20York%2C%20NY%22)&format=json&env=store%3A%2F%2Fdatatables.org%2Falltableswithkeys The response will be JSON, something like: Let’s add Newtonsoft.Json to our project through NuGet so we can parse…

Creating an Azure Virtual Machine

Log into https://portal.azure.com/ and select Virtual Machines. Click Add: And Create Virtual Machine: There are several machine images to choose from. We will select Windows Server: And then the build…

Deleting a Virtual Machine in Azure

To delete a Virtual Machine in Azure, log into https://portal.azure.com/ and select Virtual Machines. Select the machine to delete and click Delete: You will see below. Type yes to confirm…

How to Use the Dynamics 365 Xrm.WebApi

…directly in a browser through a URL. For example, to retrieve the first and last name of all people with lastname=”Smith”, we can do: https://yourorg.crm.dynamics.com/api/data/v9.0/leads?$select=firstname,lastname&$filter=lastname eq ‘Smith’ Running this in…

Installing Power BI Report Server

To install Power BI Report Server, go through the following steps. First, download the software at https://powerbi.microsoft.com/en-us/report-server/. Select Advanced Download Options: Select Download: And PowerBIReportServer.exe: Run the downloaded exe and…