Skip to content
View brumm's full-sized avatar
Block or Report

Block or report brumm

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. tako tako Public

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

    JavaScript 198 13

  2. tabulous tabulous Public

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

    JavaScript 18

  3. whatsgit whatsgit Public

    because you got issues

    JavaScript 119 2

  4. atom-codesandbox atom-codesandbox Public

    Codesandbox Preview in Atom

    JavaScript 54 1

  5. atom-highlight-colors atom-highlight-colors Public

    Highlights colors in your code

    JavaScript 11 3

  6. Find out which element is scrolling Find out which element is scrolling
    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); }); }); }()