Skip to content
View randyriback's full-sized avatar

Organizations

@Parsely @Automattic @recursecenter
Block or Report

Block or report randyriback

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. react-midi-sequencer react-midi-sequencer Public

    A browser-based emulation of a hardware midi sequencer

    JavaScript 1

  2. 16-midi-faders 16-midi-faders Public

    16 Assignable MIDI Faders for your DAW

    CSS

  3. Python Composition Library Python Composition Library
    1
    from time import time, sleep
    2
    
                  
    3
    class LFO:
    4
        def __init__(self, f, min=1, max=127):
    5
            self.current = min
  4. "Improvised" MIDI Music "Improvised" MIDI Music
    1
    # demo of this code in action can be found at https://www.youtube.com/watch?v=bW3mPZ2extw
    2
    import mido
    3
    import random
    4
    import threading
    5
    from utils import LFO, loop, Switch_on