Skip to content

Instantly share code, notes, and snippets.

View cristiano-pacheco's full-sized avatar

Cristiano Pacheco cristiano-pacheco

View GitHub Profile
@paulirish
paulirish / bling.js
Last active July 23, 2024 01:12
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;
@ProcessEight
ProcessEight / Testing in Magento 2.md
Last active July 9, 2024 13:50
M2: Notes on setting up PHPUnit and writing/troubleshooting tests in Magento 2