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 […]