Blinking curser in Firefox

Lately I've been annoyed by the fact that whenever I clicked somewhere on a page in Firefox a blinking curser would appear. At first I thought it was because of the html was made editable somehow, maybe because of a plugin. After disabling all plugins an ...

Linux terminal: Create hierarchy of folders

mkdir -p files/{css,js/{custom,external},fonts} The above command will create a file structure as shown below. Cool if you need to create the same folder structure over and over - or dynamically. The -p stands for parent and the flag is defined as no er ...