Recent Posts
-
April 03, 2017
Simple Google Analytics plugin for Wordpress
Create Google Analytics account overview Google Analytics Solutions offer free and enterprise analytics tools to measure website, app, digital and offline data to gain customer insights. To use Google Analytics, you have to sign up for Google ...
-
March 31, 2017
How to use git with some basic commands
Basic commands Init: create a new repository git init Clone: clone a repository Clone a repository in local: git clone /path/to/repository/ Clone a repository in server: git clone username@serve...
-
March 23, 2017
Advantages of MongoDB over RDBMS
Overview MongoDB is a cross-platform, document oriented database that provides high performance, high availability, and easy scalability. MongoDB works on concept of collection and document. Database is a physical container for collecti...
-
March 23, 2017
Some commands for MongoDB
MongoDB Commands Create or switch to a database: use DATABASE_NAME Check currently selected database: db Check database lists: show dbs Drop database: db.dropDatabase() Create collection: db.createCollec...
-
March 22, 2017
Build a simple http server in Ubuntu using Nodejs and ExpressJs
Today, I am going to talk about how to build a simple http server in ubuntu using Nodejs and Expressjs. If you have not installed Nodejs, please install it or check this. By now, I am assumming that you have installed Nodejs. Let’s start now: Cre...