Posts

Bank Management System In C++

Image
  Bank Management System In C++ The code is a simple banking system implemented in C++ using Object-Oriented Programming (OOP) principles. It allows the user to open a new account, deposit, withdraw, and display their account details. Program code:- #include<conio.h> #include<stdio.h> #include<iostream> using namespace std; class bank {     char name[100],add[100],y;     int balance, amount, pin; bool validPin = false;; public:     void open_account ();     void deposite_money();     void withdraw_money ();     void display_account(); }; void bank::open_account() {     system("cls");     cout<<"Enter your full name : ";     cin.ignore();     cin.getline(name,100);     cout<<"Enter your address : ";     cin.ignore();     cin.getline(add,100);   while (!validPin) {     cout << "Enter your desired 4-digit...

How to launch Linux OS from EC as GUI

Image
  How to launch Linux OS from EC as GUI AWS Global Accelerator is a networking service that helps AWS customers improve the availability and performance of their applications for their users. It uses the AWS global network to direct traffic to optimal AWS endpoints based on proximity, health, and routing policies. In this blog post, we'll explore the benefits of AWS Global Accelerator for AWS customers and how it can help improve the user experience for their applications. Improved Application Performance AWS Global Accelerator uses the AWS global network to route traffic to the closest available endpoint. This can help reduce latency and improve the performance of the application for users, particularly for applications that have users located in different regions or countries. By reducing the distance that data has to travel, AWS Global Accelerator can help improve the user experience and reduce the likelihood of performance issues. Simplified Application Architecture AWS Global ...

Starting AWS EC2 Instance with the help of AWS CLI

Image
  Starting AWS EC2 Instance with the help of AWS CLI This blog will discuss how to launch an EC2 instance and connect an EBS volume using AWS CLI. Amazon Web Services (AWS) provides a robust set of command-line tools that enable you to automate your infrastructure and manage your resources efficiently. Let’s get started! STEP 1: Install and Configure the AWS CLI download and run the AWS CLI MSI installler for windows (64-bit) msiexec.exe /i https://awscli.amazonaws.com/AWSCLIV2.msi To check/confirm the installation, run the “aws — version” command in your terminal STEP 2: Let's Authenticate our AWS account using the IAM user we created, provide the Access key, secret key & Region, using this cmd. aws configure STEP 3: Create a key pair To create a new key pair using AWS CLI, you can use the following command: aws ec2 create-key-pair --key-name test2 STEP 4: Create a security group To create a new security group using AWS CLI, you can use the following command: aws ec2 create-se...