Fear not! The (un)desired files which have been committed: git add <filename>
git rm <filename> Changing the previous commit: git commit --amend [...] Read more
With Ubuntu 14 they’ve changed the root apache folder from /var/www to /var/www/html. I know defuq waste of time if you ask me, so here an easy tutorial to return to the usual ways. sudo nano [...] Read more
Say you want to get a number with leading zeros; e = e.toString(); // This only works with a maximum length of 2
e = (e.length < 2) ? ("0" + e) : e;
// 9 -> "09" e = leadingZeros(e, [...] Read more
As most don’t know the most well known keyboard layout is the least effective: QWERTY. The 2 lesser known layouts are Dvorak and Colemak. There are others; Neo, Workman, etc. After a bit of research [...] Read more