In this tutorial we will see automatic vim editor indentation tips and more. Indentation makes a program readable as well as neat and organised. In python programming language indentation is used instead of curly braces or keywords which make code…
Author: Aman Deep
Linux wc command: count characters, words, lines of a file
The wc command in unix/linux is used to print the number of characters, words, bytes and newlines of files or standard input. Syntax wc [OPTION] [FILE] Usage and examples: Here we will test the commands on a file named song.txt,…
Best clipboard manager for ubuntu / Linux Mint: Diodon
The clipboard is a temporary storage for your copied stuff which can be text, picture or any datato manage your clipboard you can use diodon Diodon is a lightweight clipboard manager written in vala. It is made for unity interface…
How to Change GRUB Boot Order in Ubuntu / Linux Mint
Let’s see how to boot into a specific operating system by default in linux grub boot loader.When you install a new copy of linux OS on your computer by default you get booted into your linux partition after a time…
How to Install xfce in ubuntu 16.04 & 16.10
I found Unity to be very memory consuming and sometimes it hangs the whole system. So here comes xfce – A lightweight Desktop which is fast and uses less system resources. you will find it much like gnome 2.x. It…
Internet speed, CPU, RAM usage indicator for ubuntu
A System load indicator to view internet network speed: download and upload, CPU usage and Memory consumption and also swap space use. It is based on the default system monitor so you will find all resources synced. It is a…
How to install latest Tor Browser in Ubuntu 16.04 & 16.10
What is Tor?Tor Browser is an internet browser based on firefox. It allows users to browse the internet anonymously. So, you can browse the blocked websites too. It hides your Ip address when you send or receive data from the…
How to repair GRUB boot loader in ubuntu
In this tutorial we will see how to use this GUI tool called boot-repair which fixes most of the common grub related problems. The most common problem is the overwriting of the GRUB bootloader by the windows bootloader when windows…
Difference between Seeds, Peers and leeches in Torrent
How does BitTorrent protocol work? When you download a file normally (direct download) from a website that file is downloaded from their central server but BitTorrent is a peer-to-peer protocol. There is no central server on which files are hosted…
Insertion Sort algorithm explained in python with example
Insertion sort is an algorithm for sorting a list of numbers. The key idea of this algorithm is to divide the list into two portions: a sorted portion and an unsorted portion. At each step of the algorithm a number…