Skip to content

Instantly share code, notes, and snippets.

View BrentonCozby's full-sized avatar

Brenton Cozby BrentonCozby

View GitHub Profile
@ifyoumakeit
ifyoumakeit / github-conventional-comments.js
Last active May 14, 2024 08:49
GitHub Conventional Comments (instructions to install in comment below code)
(async function generateReplies(document) {
// https://conventionalcomments.org/#labels
const LABEL = {
praise: "praise",
nitpick: "nitpick",
suggestion: "suggestion",
issue: "issue",
todo: "todo",
question: "question",
thought: "thought",
@paulirish
paulirish / bling.js
Last active May 1, 2024 19:56
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;