I was bored, so I made this - Hyrulean Rupees using nothing but LESS and HAML.
A Pen by Robin Grass on CodePen.
[ | |
{ | |
"featureType": "all", | |
"elementType": "labels", | |
"stylers": [ | |
{ "visibility": labelVisibility } | |
] | |
}, { | |
"featureType": "road", | |
"elementType": "geometry.fill", |
{ | |
"/": "DefaultController", | |
"foo": "DefaultController", | |
"user": { | |
":uri": "AccountController::getPerson", |
(function(y, o, d, a) { | |
var i = o.createElement(d); | |
i.scrolling = 'off'; i.frameborder = '0'; | |
i.src = a; o.body.appendChild(i); | |
})(window, document, 'iframe', '//somedomain.tld'); |
I was bored, so I made this - Hyrulean Rupees using nothing but LESS and HAML.
A Pen by Robin Grass on CodePen.
(function(window, jQuery) { | |
/** | |
* ensure | |
* | |
* Only invokes callback if selector matches at least one node. | |
* | |
* @param string selector | |
* @param function callback | |
* |
class Vessel | |
constructor: (@type, @name) -> | |
# Create a new ship! | |
ship = new Vessel('Schooner', 'Wasa') | |
console.debug ship.type #>> Schooner |
class Vessel | |
constructor: (@type, @name) -> | |
class Schooner extends Vessel | |
constructor: (@name) -> | |
super(@name, @constructor.name) |
class Person | |
constructor: (@name) -> | |
goodGreet: => | |
"Hello, my name is #{@name}" | |
badGreet: -> | |
"I'm #{@name} and this won't work!" |
I hereby claim:
To claim this, I am signing this object:
a is not b | |
# a === !b << baad mkay? | |
a isnt b | |
# a !== b << mmh'guud! | |
unless a is not b | |
# a === !b << bara dumt, ok? |