Skip to content

Instantly share code, notes, and snippets.

@juandopazo
juandopazo / gist:3305606
Created August 9, 2012 16:23
Inheriting constructor properties with __proto__
function Superclass() {
}
Superclass.prototype.someMethod = function () {
console.log('foo');
};
Superclass.staticMethod = function () {
console.log('I\'m "static"');
};
@s4nchez
s4nchez / gist:4713057
Last active March 7, 2022 01:22
Command line tools every developer should know

Command line tools every developer should know

Prior reading

  • The Unix philosophy, specially the "Make each program do one thing well" [1]

Basic

  • File and directory navigation/manipulation (ls, cd, mkdir, rm, rmdir, touch, cp, mv)
  • ln/unlink/readlink