JetBrains PhpStorm is one of the best development IDE for PHP developers. However, according to PHP community it’s license price is costly specially who want to learn. It’s one of the modern IDE till now for PHP. Today I am going to show how to run PhpStorm from terminal in Linux machine (Ubuntu, CentOS and other platform). Also I will describe about to create PhpStorm launcher in Ubuntu and other Linux OS. From the command line even you can run …
Blog Posts
Step 1 Download Sublime Text 2 from their download location. To download it please type the following command : sudo wget http://c758482.r82.cf2.rackcdn.com/Sublime%20Text%202.0.2.tar.bz2 Step 2 After downloading Sublime Text 2 you’ll need to extract the .tar.bz2 file. To extract tar.bz2 type the following command : tar xf Sublime Text 2.0.1 x64.tar.bz2 Now you will get a extracted directory with all the files needed to run Sublime Text 2. So it’s better to move this directory to another appropriate place. To move …
Sometimes I saw an error to do a task in my Ubuntu PC. The error was something like invalid byte sequence in us-ascii. Then after searching a lots of solution over net I found out that local settings of my Ubuntu was messed up. And it’s really important to make your locale settings correct to avoid lots of ugly error. To check your existing locale configuration of Ubuntu, please type the following command: sudo locale If there is something wrong …
What is nth-child CSS Selectors? To select any element inside your DOM (Document Object Model) there are lots of CSS selectors. And nth-child is one of them, more smarter, handy and useful to use. By nth-child you can select any *th (1st, 2nd, 3rd, 4th........nth) element of your HTML DOM. Let’s see how we can use it: Usage of nth-child in CSS nth-child pseudo-selector define the number-th of your targetted element. i.e: You have a list item like the …