Skip to content

Instantly share code, notes, and snippets.

View maur8ino's full-sized avatar

Mauro Verrocchio maur8ino

View GitHub Profile

Keybase proof

I hereby claim:

  • I am maur8ino on github.
  • I am maur8ino (https://keybase.io/maur8ino) on keybase.
  • I have a public key whose fingerprint is 5050 22D2 9ADB 5A1F ED87 490B F142 7BCF 6DF9 AB64

To claim this, I am signing this object:

@maur8ino
maur8ino / 0_reuse_code.js
Created September 25, 2013 12:55
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
@maur8ino
maur8ino / main.js
Last active December 22, 2015 21:39
Javascript module template
$(document).ready(function() {
// Calling module(s)
$M.myModule();
var module2 = new $M.myModule2();
module2.myPublicFunction();
if (someCondition) {
$M.myModule3();
}
});