Skip to content

Instantly share code, notes, and snippets.

View pimterry's full-sized avatar
👶
Just had a baby - not very available for a little while!

Tim Perry pimterry

👶
Just had a baby - not very available for a little while!
View GitHub Profile
@doismellburning
doismellburning / userstories.md
Last active October 30, 2017 16:25
Conference User Stories
@paulirish
paulirish / bling.js
Last active August 27, 2024 04:55
bling dot js
/* bling.js */
window.$ = document.querySelectorAll.bind(document);
Node.prototype.on = window.on = function (name, fn) {
this.addEventListener(name, fn);
};
NodeList.prototype.__proto__ = Array.prototype;