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/
-
Here is my attempt to create first draft of my whitepaper on Data Governance. Will be working on improving the version my missing elements soon. Read paper here : First page for preview:
-
When it comes to costing/pricing on cloud based platforms such as Azure or AWS, it is always a confusion especially for beginners what various units mean. Let us have a look at some such common unit terminologies. SKU – Stock Keeping Unit – A purchasable units in a platform. Ref – https://en.wikipedia.org/wiki/Stock_keeping_unit ACU – Azure Compute Unit – A unit used to compare compute performance across Azure SKUs. Ref – https://docs.microsoft.com/en-us/azure/virtual-machines/acu TU – Transaction Unit – Usually 10K transactions = 1 Transaction Unit DTU – Database Transaction Unit – Ref – https://docs.microsoft.com/en-us/azure/azure-sql/database/purchasing-models#understanding-dtus eDTU – elastic DTU – Ref – https://docs.microsoft.com/en-us/azure/azure-sql/database/purchasing-models#dtu-based-purchasing-model…
-
-
Recently I wrote a research paper on the said topic, and here are the links I published: Original, updated version @ GitHub – https://github.com/ninethsense/VirtualQueue/blob/master/README.md Medium – https://medium.com/@ninethsense_8477/yet-another-virtual-queue-management-system-design-44cdee123a0b Additionally, a small excerpt in a Malayalam online news paper – https://www.janmabhumi.in/read/bevq-failure-is-a-lesson-how-to-build-the-best-virtual-queue-app/
-
This is a tutorial on how to setup AWS SES / Simple Email Service. Step 1 – Login to your AWS Console, then choose Services –> Customer Engagement –> Simple Email Service Step 2 – Verify a New Domain Choose “Domains” from left navigation panel, then click –> Verify a New Domain button Step 2.2 – Enter Domain name Also click checkbox Generate DKIM settings, though optional, I will be using this. You will be displayed with a list of DNS settings in the next screen. Once you completed the Step 3, click close. Step 3 – Edit DNS records…
-
Completed a 14.5hours Udemy course on Amazon Web Services / AWS. It took about two weeks to complete but is completely worth. So, along with Azure, I am adding AWS also in my list of confidence.
-
In this Part #2 of blog I will be creating a new .NET Core function in local machine and will upload to AWS using console interface. There are different ways you can develop and deploy but I will be talking in this blog only about the CLI way. I am assuming you know how to create a Lambda function in AWS console already and if not, please read the Part #1 first. Open the Command prompt and follow below steps: Step 1: Install Lambda Templates for .NET Core dotnet new -i Amazon.Lambda.Templates Step 2: Create an empty function dotnet new…
-
This blog explains how you can create an AWS Lambda function with .NET Core / C# as runtime. Step 1 – Create function Step 1.1 – Login to your AWS account, and select “Lambda from the services” Step 1.2 – Click “Create Function” Step 1.3 – Choose “Author From scratch” There are advanced templates available, but I am keeping those out of the scope of this article. Now fill, Function name Runtime, our case .NET Core (I am choosing the version .NET Core 3.1, which is the latest version when writing this article) Click “Create function” Usually it will take…