Skip to content
View nnals's full-sized avatar

Block or report nnals

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 Loading

  1. Colorize a doodle based on the numbe... Colorize a doodle based on the number of votes
    1
    let xs = Array.from(document.querySelectorAll(".d-participantCount"))
    2
      .map(box => {
    3
        let voteDiv = box.querySelector("div.d-text");
    4
        let match = voteDiv.innerText.match(/^\d+$/);
    5
        if (!match) return null;