Find the presentation deck I’ve used at Azure Developer Community event.
Praveen's CTO Blog
Find the presentation deck I’ve used at Azure Developer Community event.
Find the recording of my Azure Monitor introduction session which I did for Azure Developer Community event.
I will be talking about Azure Monitor at Azure Developer Community, Kochi event on Saturday, 18 Dec 2021. Join me if you are interested.
Register: https://www.meetup.com/azure-developer-community-kochi/events/282318713/
Microsoft Cloud Adoption Framework is basically a collection of guidance, best practices, tools and techniques to be followed by various technology business and technology stakeholders in the organization to make sure they build and maintain the best possible platform which ensures security, governance, scalability and other non functional requirements aspects.
While cloud adoption gives 80%+ of benefits compared to the traditional, or legacy on-premise data center infrastructure way of life, as a public platform, it also introduces few points of concerns to business leaderships such as Security. Years back when the cloud service platforms were initially introduced, the banking and other financial firms had trust issues because there were multiple levels of organizational hierarchy to be convinced and technical knowledge level is different from person to person. But today, it is not anymore an issue because we have multiple cloud providers in the market providing cutting edge solutions to solve each and every problem of the customer and no significant breaches were reported, and more importantly the cloud literacy level of people also rose.
Here is where the Cloud Adoption Framework plays its big role in helping people, process and the technology. It defines a clear and practical roadmap to the cloud that is foolproof and quick enough to give businesses the expected result and smooth transition.
Below are the main stages in the roadmap as per Microsoft Cloud Adoption Framework:
Read more on the Microsoft Cloud Adoption journey here:
Find my short video on hosting a index.html file from GitHub to Azure’s newly introduced feature – Static Web Apps (in preview, at the time of this vlog).
Find my latest vlog on Power Platform series – the Power Apps
From the Azure Portal, create a resource “Text Analytics”
Once created, you should be able to get the Endpoint URL and Key from the “Keys and Endpoint” section
Get the Azure.AI.TextAnalytics nuget package for your solution
Here you go your sample code
using Azure;
using Azure.AI.TextAnalytics;
using System;
namespace ConsoleApp1
{
class Program
{
static void Main(string[] args)
{
string url = "https://mytestoutlookaddin.cognitiveservices.azure.com/";
string key = "paste_your_key_here";
var client = new TextAnalyticsClient(new Uri(url), new AzureKeyCredential(key));
DocumentSentiment mood = client.AnalyzeSentiment("It's a nice day!");
Console.WriteLine("Mood: {0}", mood.Sentiment );
Console.WriteLine("Positive: {0}", mood.ConfidenceScores.Positive);
Console.WriteLine("Neutral: {0}", mood.ConfidenceScores.Neutral);
Console.WriteLine("Negative: {0}", mood.ConfidenceScores.Negative);
Console.ReadKey();
}
}
}
Below is the output expected:
This short video clip demonstrates how to create an Azure Storage Account and upload a index.html file.
Simplify cloud-native application development. Focus on your application’s core logic and keep your code simple and portable
Dapr is an open source, portable, event-driven runtime that makes it easy for developers to build resilient, microservice, stateless and stateful applications that run on the cloud and edge. Dapr enables developers to focus on writing business logic and not solving distributed system challenges, thereby significantly improving their productivity, and reducing development time.
Read more: https://blog.dapr.io/posts/2021/02/17/announcing-dapr-v1.0/
Dapr Home: https://dapr.io/