node https://www.digitalocean.com/community/tutorials/how-to-install-node-js-on-ubuntu-16-04 install nodejs and npm cd ~ curl -sL https://deb.nodesource.com/setup_6.x -o nodesource_setup.sh sudo bash nodesource_setup.sh sudo apt-get install nodejs sudo apt-get install build-essential sudo node -v INSTALL NPM sudo apt-get install npm Mongo https://www.digitalocean.com/community/tutorials/how-to-install-and-secure-mongodb-on-ubuntu-16-04 Install Mongo server sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 0C49F3730359A14518585931BC711F9BA15703C6 echo "deb [...
Continue reading
December 21, 2017 Manoj
dev-ops
No Comment
Docker Image and container An instance of an image is called a container. Docker: List and Remove all images and containers List all containers docker ps -a -q Delete all containers docker rm $(docker ps -a -q) List all images docker images -q Delete all images docker rmi...
Continue reading
June 1, 2017 Manoj
Docker
No Comment
create node file for debugging server.js. run command in terminal ‘node –inspect server.js’ copy link from terminal and open it on chrome browser and set break point. open server link on another tab and see magic. 🙂
Continue reading
November 14, 2016 Manoj
node
2 Comments
Step by Step to setup Tortoise git in windows. Tortoise git is easy GUI tools to work with git.
Continue reading
August 25, 2016 Manoj
VersionControl
No Comment
Step by Step To Work with node.js using visual studio.
Continue reading
August 22, 2016 Manoj
Visual Studio
1 Comment
Running mongodb by command is easy but we required always to open command and run mongod and remain open it side by side while working on mongodb. In windows to run mongodb server automatically we need to install mongodb server as windows service. To install mongodb as windows...
Continue reading
August 21, 2016 Manoj
Database
No Comment
Method to convert json object to class identical to json object, Copy json String. for example go to link http://json.org/example.html and compy any json string Open visual studio and one .cs file Go to edit menu and select paste special and click on Paste Json as Classes. You...
Continue reading
August 17, 2016 Manoj
csharp
No Comment
There are Two parts of Organizational Process. The Hard Part(Processes, Metrics, Tools etc Related to Result or Work) The Soft Part(Ideas, Fear, Attitude etc Related to Humen). Hard Part is Easier than Soft Part. In Hard Part organising is improved by learning and in Soft Part organising is...
Continue reading
July 1, 2016 Manoj
Management
No Comment
Given query return all table name with column which contain Search string. Following Query create temporary table with name #Results . and at last table is Dropped. If any error occurred during execution #result may not drop so be sure at last that Temp table #Results is dropped...
Continue reading
April 29, 2016 Manoj
Database
No Comment
To get result from table under hierarchy.
Continue reading
April 8, 2016 Manoj
Database
No Comment