Skip to content

Instantly share code, notes, and snippets.

View juanlittledevil's full-sized avatar

Juan Segovia juanlittledevil

View GitHub Profile
@juanlittledevil
juanlittledevil / keybase.md
Created June 9, 2021 00:05
Keybase Verfication

Keybase proof

I hereby claim:

  • I am juanlittledevil on github.
  • I am juanlittledevil (https://keybase.io/juanlittledevil) on keybase.
  • I have a public key ASCkt2xHLUEbEf1xRb0vBLDkznqAjvy-THLvwNnLS-NnWAo

To claim this, I am signing this object:

@juanlittledevil
juanlittledevil / Moziac pad as midiNote mutes
Created December 27, 2019 14:48
Mute incoming midi notes with Mozaic pads.
@onLoad
padNote = [] // <- fill this array with the MIDI note values you want to use for the notes.
padState = []
// 16 pads
for i = 0 to 15
// 0 means it's not on. You can use YES/NO also.
padState[i] = 0
endfor
@End