This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #lang racket | |
| (require racket/trace) | |
| ; the core idea | |
| ; list of effects | |
| ; effect handler has continuation at top | |
| ; effects append to list of effects then jump to effect handler | |
| ; effect handler handles an effect then jumps to itself (using continuation) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # noteinverter.py | |
| note_names = ["C", "C#/Db", "D", "D#/Eb", "E", "F", "F#/Gb", "G", "G#/Ab", "A", "A#/Bb", "B"] | |
| inverse_note_names = { | |
| "c": 0, | |
| "c#": 1, | |
| "c#/db": 1, | |
| "db": 1, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| With Scripter, you can use JavaScript to create your own custom MIDI processing | |
| effects, including slider controls for real-time interaction. | |
| For detailed information about using Scripter, including code samples, | |
| see the MIDI plug-ins chapter of the Logic Pro X Effects or | |
| MainStage 3 Effects manual. | |
| */ | |
| // example: simple pass through and MIDI monitor |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| With Scripter, you can use JavaScript to create your own custom MIDI processing | |
| effects, including slider controls for real-time interaction. | |
| For detailed information about using Scripter, including code samples, | |
| see the MIDI plug-ins chapter of the Logic Pro X Effects or | |
| MainStage 3 Effects manual. | |
| */ | |
| // round robin on midi channels 1 to num channels |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Verifying my Blockstack ID is secured with the address 157sjtEPzgELwkQKhtiNxmsBaBqmCYxUp7 https://explorer.blockstack.org/address/157sjtEPzgELwkQKhtiNxmsBaBqmCYxUp7 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 05AB1E : https://github.com/Adriandmen/05AB1E | |
| 2sable : https://github.com/Adriandmen/2sable | |
| APL : https://www.dyalog.com/ | |
| Branchylog : https://github.com/JCumin/Brachylog | |
| Bubblegum : https://esolangs.org/wiki/Bubblegum | |
| CJam : https://sourceforge.net/projects/cjam/?source=navbar | |
| Golfscript : http://www.golfscript.com/golfscript/ | |
| J : http://jsoftware.com/ | |
| Japt : https://github.com/ETHproductions/japt | |
| Jelly : https://github.com/DennisMitchell/jelly |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ! | |
| " | |
| # | |
| $ | |
| % | |
| & | |
| ' | |
| ( | |
| ) | |
| * |