Posts

Creation of Route Table, Internet Gateway and Security Groups

  Route Table A  route table  contains a set of rules, called  routes that are used to determine where network traffic from your subnet or gateway is directed. For more information please navigate here . ·         Click on Route Tables from sidebar menu. ·         Click on Create Route Table button. ·         Enter Name Tag. For Exp: DemoDevOps-Public ·         Select the VPC created. ·         Click on Create button ·         Edit routes ·         Assign destination as 0.0.0.0/0 and assign internet gateway Similarly create a private route table ·         Click on Route Tables from sidebar menu. ·    ...

Set up Github Copilot and supported Languages

Set up Github Copilot     To set up GitHub Copilot, you would typically need to follow these general steps: 1.        Prerequisites : ·          Ensure you have a GitHub account. If you don't have one, you'll need to create an account on GitHub's website. ·          GitHub Copilot may be integrated into various integrated development environments (IDEs), so you need to choose an IDE that is compatible with Copilot. Visual Studio Code (VS Code) is a common choice. 2.        Install the IDE: ·          If you're not using an IDE already, download and install an IDE that supports GitHub Copilot. For example, you can download Visual Studio Code from its official website. 3.        Install the GitHub Copilot Extension : ·          In yo...

Github Copilot - Purposes and Features

  What is Github Copilot and its Purpose and Feature GitHub Copilot is an AI-powered code completion tool developed by GitHub in collaboration with OpenAI. It assists developers in writing code by providing real-time suggestions, autocompletions, and contextual recommendations directly within their integrated development environment (IDE). Copilot's main purpose is to make coding more efficient, reduce errors, and accelerate the development process by leveraging the power of artificial intelligence. Key Features of GitHub Copilot: 1.       Code Suggestions and Autocompletions: Copilot suggests code snippets, functions, and methods based on the context of what you're currently coding. It can complete entire lines of code, saving you time and effort. 2.       Context-Aware Recommendations: Copilot understands the context of your code and provides relevant recommendations that align with the logic you're implementing. This ...

Creation of VPC and Subnet

  VPC (Virtual Private Cloud) Amazon VPC is the networking layer for Amazon EC2. VPC is a virtual network dedicated to your AWS account. A Subnet is a range of IP address in the VPC. Creating a VPC: Login to AWS with valid credentials Click on Services and type VPC in the search field. Click on Create VPC Give a Name Tag. For Exp: DemoVPC Enter respective value in IPv4 CIDR block field. For Exp : 10.0.0.0/24. For more information, please navigate to here . Click on Create button.        Subnet     At a high level, you can think of a VPC in AWS as a logical container that separates resources you create from other customers within the Amazon Cloud. It is you defining a network of your own within Amazon. You can think of a VPC like an apartment where your furniture and items are analogous to databases and instances. The walls of your apartment isolate and protect your things from being accessible from other tenants of the apartment complex...