Author: Sourabh Rustagi
-
Deploy from Azure DevOps to AWS S3 in 3 steps
While working on my previous note on how to deploy from Azure DevOps to an AWS EC2 instance, I came across another use case –how to deploy from Azure DevOps to an AWS S3 bucket. This note is about the steps I followed to do so.Here is a recap so that we’re all on the same […]
-
Taking a look at EC2 storage options ! When to use InstanceStore/EBS/EFS?
Pricing For information about storage pricing, open AWS Pricing Storage Options Lets take a look at the what AWS has to offer. Amazon EC2 provides you with flexible, cost effective, and easy-to-use data storage options for your instances. Each option has a unique combination of performance and durability. These storage options can be used independently or […]
-
Manage Imported Certificates Expiry in ACM (using CLoudWatch Events + Lambda) Implement using CLOUD FORMATION
First of all, In addition to requesting SSL/TLS certificates provided by AWS Certificate Manager (ACM), you can import certificates that you obtained outside of AWS. You might do this because you already have a certificate from a third-party certificate authority (CA), or because you have application-specific requirements that are not met by ACM issued certificates. […]
-
An Intelligent Overview of Amazon S3.
We have all heard about s3 a lot, and has been use by many enterprise organization in the past and we have seen that the solution has turned out to be awesome. So, Let take a deeper look and understand what s3 is and how can I harness the power it provides us with. Amazon […]
-
AWS RDS 101 – Amazon Relational Database Service
What is a Relational Database (RDBMS)? A relational database is a type of database that stores and provides access to data points that are related to one another. Relational databases are based on the relational model, an intuitive, straightforward way of representing data in tables. In a relational database, each row in the table is a record […]
-
How to Generate Thumbnail from a Video in C# Dotnet Core.
We have been generating thumbnails from image and we all know how easy is this in todays world with some awesome libraries available to us . But when coming to generate a thumbnail from a video in C# we are left with very limited option. But to our rescue is a beautiful library Xabe.FFmpeg by […]
-
I didn’t know it was this easy to handle Exceptions in .Net Core Web API. EasyException !!
An exception is a problem that arises during the execution of a program. A C# exception is a response to an exceptional circumstance that arises while a program is running, such as an attempt to divide by zero. Exceptions provide a way to transfer control from one part of a program to another. C# exception […]
-
Is Windows 11 worth upgrading ? Windows 11 is Windows 10 in Smart casuals 🤟.
Windows has been called PC from a long time, But windows 11 is trying to make you feel really personal. With Windows 11, you feel right at home with the beautiful elegant UI. Microsoft’s big Windows 11 update is on the way. Here’s what you need to know about features. I have been using windows […]
-
Execute a piece of C# code anytime in VS Code using .NET Interactive Notebooks
.Net Interactive Notebooks is an extension being developed by Microsoft, and this extension adds support for using .NET Interactive in a Visual Studio Code notebook. The source code to this extension is available on https://github.com/dotnet/interactive and licensed under the MIT license. Getting Started Install the latest Visual Studio Code. Install the latest .NET 5 SDK Install the .NET Interactive Notebooks […]
-
Understanding and Validating JWT using Json Web Key Sets in Microservices
Before we jump on the approach of validating the JWT Token we need to know a few basics and then we can discuss about the below points. How we can sign the JWT Token. Why do we require a JWT Token to be signed. What is JSON Web Key Set ? Why and How to use […]