Checking your Ubuntu Version

Categories: Howto, Quick tips, Ubuntu

There are 4 different ways to check which version of Ubuntu one is running. Two of them are command-line based and the other is using tools. In Unity Unity is the default desktop environment for Ubuntu since 12.04 (Precise Pangolin). The steps to retrieve the version information is as follows: Click on the ‘projection’ on […]

Methods to clone a python list

Categories: Howto, Python

Python list are one of the most used data structure. An improper cloning of a list has burnt more midnights’ oil than creation & manipulation of the list has taken. Cloning isn’t difficult but plain different. Of course, I am not considering the most obvious method iterate through the list and create a new list đŸ™‚ […]