AWS: Services Overview

Posted on Leave a commentPosted in AWS

Compute Amazon EC2 (Elastic Compute Cloud) Amazon Elastic Compute cloud is a web service that provides resizable compute capacity in the cloud, it allows organizations to obtain and configure virtual servers in Amazons’s data centers. Organizations can select from a variety of operating systems and resource configurations from memory, cpu, storage etc. AWS EC2 allows […]

Python Overview

Posted on Leave a commentPosted in Programming, Python

How to make a dictionary: names = { “name”: “James”, “name:, “Barry”, “name:, “Sarah”, “name”, “Amanda” } Looping over these elements, keys they are called. peoples = { “name”: “James”, “name:, “Barry”, “name:, “Sarah”, “name”, “Amanda” } for keys in people: print peoples[keys] How to divide in python a = [0, 1, 2, 3, 4, […]

Installing Nodejs Centos

Posted on Leave a commentPosted in nodejs

Node.js is a JavaScript runtime built on Chrome’s V8 JavaScript engine. Node.js uses an event-driven, non-blocking I/O model that makes it lightweight and efficient. Node.js’ package ecosystem, npm, is the largest ecosystem of open source libraries in the world. In this article we will explain the steps of installing node.js and npm in CentOS. Step […]

Git Commands

Posted on Leave a commentPosted in Git

 Create a new Git repository git init Inspect the contents of the working directory and staging area git status Add files from the working directory to the staging area git add Show the difference between the working directory and the staging area (the commit HEAD) git diff Permanently store file changes from the staging area […]

Git Recap

Posted on 2 CommentsPosted in Git

Intro This page is mainly for my notes when I haven’t done git in a while, more than an actual tutorial. Prerequisites Choose which git provided you wish to go with, I went with bitbucket. You should have git installed at this point. Change into the top level directory , if my git repository is […]