Subscribe to my channel for more related videos https://www.youtube.com/LearnNow1
-
-
I will be talking about the AI capabilities of Azure ecosystem on 11th March 2023. – https://globalai.community/bootcamp-2023/asia-microsoft-developers-uae-6026/ – https://www.meetup.com/microsoft-developers-uae-meetup/events/292053635/
-
-
Subscribe to my YouTube Channel – https://www.youtube.com/@LearnNow1
-
Using Managed Identity to deploy azure resources is considered best practice as it reduces the overhead of keeping additional credentials (tokens/passwords) in config files. This article is about accessing Auzre KeyVault using Managed Identity. I am using .NET Framework 4.8 version for this tutorial. Step 1 – Create KeyVault and secrets First, just go to Azure Portal and create necessary secret values for testing. I would go with a “testkey” and a dummy value. (I am assuming you know the basics of Azure Portal and knows how to create an azure resource such as KeyVault) Also, please take a note…
-
-
Register to attend – https://k-mug.net/events/dotnet-conf-2022-k-mug/
-
My use case here was to store the resumes uploaded by candidate in a website directly in a SharePoint list. Below is the high level flow the process, created in Power Automate (same you can do in Azure Logic Apps as well with similar steps) Here is the output, i.e., data and file uploaded to SharePoint/Office 365 The HTTP call is expected to be made from the external application such as a web page but for the purpose of testing, here is the Postman screen used: Detailed flow Let us start with an HTTP Request Trigger. You will get a…
-
Though I’ve wrote this function for Angular – ag-grid, this can be used as an independent method as well. Code:
-
While you will find multiple solutions for formatting a date in ag-grid on internet/stackoverflow and documentation, here is one method I found handy: { field: ‘DateUpdated’, valueFormatter: params => formatDate(params.value, ‘MMM, dd yyyy’, ‘en-US’) }