Skip to content

Instantly share code, notes, and snippets.

View enricomarino's full-sized avatar

Enrico Marino enricomarino

View GitHub Profile

Keybase proof

I hereby claim:

  • I am enricomarino on github.
  • I am enricomarino (https://keybase.io/enricomarino) on keybase.
  • I have a public key ASCHx0Sd8v7wxOvOvFrNVK-jShBciLFpwpjbilsri7a4nQo

To claim this, I am signing this object:

@enricomarino
enricomarino / element.html
Last active December 10, 2015 01:09
Element plugins mechanism
<!DOCTYPE html>
<html>
<head>
<title>Element plugins mechanism</title>
<style>
.selected {
outline: 2px solid darkgrey;
}
</style>
</head>
@enricomarino
enricomarino / testing revision author
Created January 31, 2012 19:00
testing revision author
if your public email is the private email of another account,
the author of the revision of your gist is the other account!
@enricomarino
enricomarino / namespaced trails
Created January 29, 2012 14:54
a new elegant module approach
function $ (el) {
if(!(this instanceof $)) {
return new $(el);
}
this.el = el;
}
function Style (el) {
this.el = el;
}