Skip to content
Avatar

Highlights

  • Arctic Code Vault Contributor

Pinned

  1. Filter, activate, select or close one or multiple tabs across windows --- all with your keyboard.

    JavaScript 14

  2. Tako replaces the default Github repository file list with an expandable file tree and file preview for rapid exploration of repositories.

    JavaScript 159 8

  3. because you got issues

    JavaScript 120 2

  4. Codesandbox Preview in Atom

    JavaScript 56 1

  5. Highlights colors in your code

    JavaScript 10 3

  6. 1
    javascript:!function() { var slice = Array.prototype.slice; function throttle(type, name, obj) { obj = obj || window; var running = false; var func = function() { if (running) { return; } running = true; requestAnimationFrame(function() { obj.dispatchEvent(new CustomEvent(name)); running = false; }); }; obj.addEventListener(type, func); } slice .call(document.querySelectorAll("*")) .filter( e => e.scrollWidth > e.offsetWidth || e.scrollHeight > e.offsetHeight ) .filter(e => { var style = window.getComputedStyle(e); return [style.overflow, style.overflowX, style.overflowY].some( e => e === "auto" || e === "scroll" ); }) .forEach(e => { var color = Math.floor(Math.random() * 16777215).toString(16); e.style.backgroundColor = "#" + color; throttle("scroll", "optimizedScroll", e); e.addEventListener("scroll", event => { console.log("%c[scroll]", "color: white; background-color:#" + color, event.target); }); }); }()

574 contributions in the last year

Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec Jan Mon Wed Fri

Contribution activity

January 2021

20 contributions in private repositories Jan 4 – Jan 20

Seeing something unexpected? Take a look at the GitHub profile guide.