How to Install MongoDB on Ubuntu 14.04
In this post we will learn to install MOngoDB on ubantu 14.04. In modern web applications, the major issue arises
Read moreIn this post we will learn to install MOngoDB on ubantu 14.04. In modern web applications, the major issue arises
Read moreHi! This tutorial is to introduce you from best online code snippets/syntax highlighters that are easy to use and well
Read moreThis post focuses on “How to avoid strict host key checking when you try to clone a repository with ssh
Read moreAnsible is a configuration management tool build in python. It is really easy to get started with and to get
Read moreSteps to change bash shell Terminal Color Following command will Open .bashrc file $gedit ~/.bashrc In .bashrc file find the
Read moreThis is a quick guide for setting up consul on ubuntu instances. This tutorial uses aws instances. We will create
Read moreI purchased sandisk 8gb pendrive. I am having two issues with the purchase. The courier service guy messaged me to
Read morePython program for selection sort algorithm # Selection sort method to sort an arraydef selectionsort( aList ): for
Read more# Merge sort function which uses recursive method to divide and sort the listdef mergeSort(alist): print(“Splitting “,alist) if len(alist)>1: mid
Read more# insertionsort() function to implement insertion sortdef insertionsort( aList ): for i in range( 1, len( aList ) ): tmp
Read more