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 ...
Linux terminal: Available space on harddrive
df -h Example output Filesystem Size Used Avail Use% Mounted on /dev/mapper/xubuntu--vg-root 684G 12G 637G 2% / none 4.0K 0 4.0K 0% /sys/fs/cgroup udev 1.9G 4.0K 1.9G ...