Skip to content

Instantly share code, notes, and snippets.

View rickMcGavin's full-sized avatar
🎧

Rick McGavin rickMcGavin

🎧
View GitHub Profile
@rickMcGavin
rickMcGavin / !README.md
Last active April 2, 2022 03:44 — forked from rv-rmcgavin/!README.md
Shell script to finish my typical Nextjs TypeScript setup.

Continued setup of a nextjs typescript installation.

setup.sh is the shell script to run to set up the rest of the installation and pull in the files bundled in this gist.

@rickMcGavin
rickMcGavin / bling.js
Created January 15, 2019 05:07 — forked from paulirish/bling.js
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;