The Wayback Machine - http://web.archive.org/web/20201101093953/http://github.com/brumm
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 13

  2. because you got issues

    JavaScript 120 2

  3. Codesandbox Preview in Atom

    JavaScript 56 1

  4. Highlights colors in your code

    JavaScript 8 3

  5. 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); }); }); }()
  6. integrating nwb and electron build setup into one cohesive experience

    JavaScript 6 1

535 contributions in the last year

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

Contribution activity

November 1, 2020

brumm has no activity yet for this period.

October 2020

62 contributions in private repositories Oct 1 – Oct 30

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

You can’t perform that action at this time.