Dev

Developers, Developers, Developers!!!

- Posted in Dev

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

- Posted in Dev

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

- Posted in Dev

The code should tell you how…the comments should tell you why… - Richard Everett Jan 2 '09 at 14:59 [...] Read more

- Posted in Dev

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

- Posted in Dev

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

Page 2 of 2