Skip to content
View pauljuneau's full-sized avatar

Block or report pauljuneau

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. webmidi-conductor webmidi-conductor Public

    JavaScript library for interpreting midi messages and audits live performance. Determines if notes being played are in the desired scale along with indicating each note's scale degree. It also indi…

    JavaScript 2

  2. blog blog Public

    HTML

  3. pauljuneau.github.io pauljuneau.github.io Public

    My github page user site

    HTML

  4. PitchDetectMirror PitchDetectMirror Public

    Mirrors forked version of PitchDetect repo with minor enhancements to publish events.

    JavaScript

  5. SalesforceDesignPatterns SalesforceDesignPatterns Public

    Repository containing useful Salesforce design pattern

    Apex 3

  6. Open console and run these one liner... Open console and run these one liner js commands to expand collapsed code in PR diffs
    1
    //expand files
    2
    setTimeout(function expandAll() { var x = document.getElementsByClassName("js-expand directional-expander"); if(x === undefined || x.length == 0) return; x[0].click(); setTimeout(expandAll, 500);},500);
    3
    
                  
    4
    //Load Diffs
    5
    setTimeout(function loadDiffs() { var x = document.getElementsByClassName("load-diff-button btn-link width-full position-absolute top-0 left-0 height-full f4 no-underline js-diff-load"); if(x === undefined || x.length == 0) return; x[0].click(); setTimeout(loadDiffs, 500); },500);