This article is dedicated to newbies in Cloud Domain, as well as who is going to work with Linux machines. A basic conversation of SSH Private key from PEM to PPK is many time required when users work on Windows and Linux platform together. This article will give you simple steps to convert PEM SSH key […]
Category: Operations

Terraform Infrastructure as a Code(IaaC).
Terraform is a way to create Cloud Resouces using Code. It is nothing but a code of your Cloud Infrastructure hence it is called Infrastructure as a Code i.e. IaaC. Using Terraform we can create low-level components such as compute instances, storage, and networking, as well as high-level components such as DNS entries, SaaS features, […]

Bitbucket to Github Repository Migration
OVERVIEW Migration of Projects, Repositories, Permissions and other important settings from Bitbucket to GitHub Service GOALS Migration of Repositories and Projects Migration of Users, Permissions and other settings SPECIFICATIONS Bitbucket Repository URL and Credentials GitHub Repository URL and Credentials REPOSITORY & PROJECT MIGRATION DIFFERENT WAYS ARE AVAILABLE Way #1: GitHub Importer Any public repository can […]
Operations
Hello All, We are starting a new category i.e. Operations. This will cover all technology related posts, and blogs. If you have any suggestions feel free to contact us.
Hello world!
Hello All, We are starting a new start in Bogging. Our focus will be on three parts. Design Thinking, Leadership and Operations. If you have any suggestions feel free to contact us.

AWS Custom CloudWatch Metrics for Memory and Storage
AWS CloudWatch provides many default metrics to monitor EC2 instance like CPU Utilization, Network In and Out, Disk I/O, etc, However by default it does not provide Memory Utilization and Storage i.e. EBS Storage Utilization. To get Memory and Storage Utilization details into AWS CloudWatch we need to setup Custom CloudWatch metrics. In this post, we are […]

What is AWS Cloud Formation?
AWS CloudFormation is a cloud builder service, which helps you model and set up your AWS resources. So that you can spend less time managing AWS resources and more time focusing on your application. For this, you need to create a template that describes all the AWS resources. This can be included Amazon EC2 instances which […]
Call the Method
A method is a basic part of a program. It can solve a certain problem, eventually, take parameters and return a result. Whenever a program has been created, it is always a good practice to use methods, as a way to make your code better structured and easy to read, hence to be maintained by […]
Date with C#
Dates and times are very important in software development. C# has built-in methods for manipulating dates and time and we will discuss those with the help of this example. using System; namespace DatesAndTimes { class Program { static void Main(string[] args) { DateTime myValue = DateTime.Now; Console.WriteLine(myValue.ToString()); Console.WriteLine(myValue.ToShortDateString()); Console.WriteLine(myValue.ToShortTimeString()); Console.WriteLine(myValue.ToLongDateString()); Console.WriteLine(myValue.ToLongTimeString()); Console.WriteLine(myValue.AddDays(3).ToLongDateString()); Console.WriteLine(myValue.AddHours(3).ToLongTimeString()); Console.WriteLine(myValue.AddDays(-3).ToLongDateString()); Console.WriteLine(myValue.Month); DateTime […]
Working With Strings in C#
In C#, there are many predefined methods for manipulating String and Dates which serve as a tool for solving many problems. We are going to have a program where most of the methods are used to manipulate strings and then go one by one. String Methods: In First string, we need double quotes in our line […]