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
| I am attesting that this GitHub handle noisk8 is linked to the Tezos account tz1fHBwJckcoY9e9tKddUEh2hAoSiQ4tVdHA for tzprofiles | |
| sig:edsigtbTKidreDQV5MNPndkSow1eGWtF9nBPQZgWnYnyH7ExzKzEg8d3z9rYNxJWL5X5RkpyYgGbCnNXcq2o5M1azNYpXQPfkj6 |
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
| Clock.bpm=120 | |
| #TOKE | |
| k8 >> play("|X3| ", amp=2) | |
| c1 >> play (" |o2|", dur=2/2, amp=.4) | |
| b8 >> play ("[--]", amp=2) |
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
| og >> ambi (oct=4, echo=.2, vib=1, delay=.4) | |
| gc >> pads (amp=.6,dur=PDur(1,64), oct=4, root=var([0,1]), shape=1) | |
| zp >> zap( | |
| -1, | |
| dur=0.15, | |
| oct=[5, [5, var([5, 5.25, 5.5, 6], [[64, 32], [32, 64], 32])], 5, var([5, 4.85, 4.5], 128)], | |
| pan=PWhite(-0.5, 0.5), |
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
| Clock.bpm=120 | |
| #TOKE | |
| k8 >> play("|X3| ", amp=2) | |
| c1 >> play (" |o2|", dur=2/2, amp=.4) | |
| b8 >> play ("[--]", amp=2) |
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
| #NOISK8 | UNKOWN MEDELL脥N | NUCLEOROTO | CORRALON RECORDS | |
| #FESTIVAL ASIMTRIA PUPUMYACKHAN 2021 | |
| gy >> ripple (oct=3, amp=0, dur=16) | |
| gt >> play ("|X3| ", amp=0) | |
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
| #PROYECTO MUTAR VOL2 | |
| #intro | |
| hy >> soprano (dur=16, oct=5, vib=2, amp=0) | |
| k3 >> growl (dur=8, amp=0,mix=.7, room=.5) | |
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
| b1 >> bass(dur=1/4, formant=PRand(5)[:8], rate=PRand(2,10)[:8], pan=PWhite(-1,1)) | |
| b2 >> sawbass(var([0,5,2,[3,6]],[3,3,1,1]), dur=PDur(1,8), amp=.7).spread() | |
| bu >> play ("|x4| ") | |
| gk >> play (" |n2|", amp=2) | |
| c1 >> play("#", rate=-1/2, hpf=1000, dur=4, amp=4, room=1, coarse=16).spread() |
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
| gt >> dirt (dur=PDur(4,8), formant=linvar([1,3,4]), root=var([2,1]), amp=1.3) | |
| hy >> play ("|X2| ", amp=2) | |
| gk >> space ([0,5], shape=0.5, dur=8, amp=.6, oct=4) + (0,4) | |
| print (SynthDefs) | |
| mk >> pasha ([1,5], shape=0.5, dur=PDur(4,8), amp=.5, oct=4, formant=linvar([1,1,0,3,2,0,1])) + (0,4) |
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
| #TR4NSP3CTRX | |
| # @Motivando a la Gyal | @Noisk8 | |
| # S谩bado 24 de Agosto En Calle 9 + 1 | |
| no >> play ("|V2| ", mix=.1, room=0, amp=0) | |
| kk >> play (" |n2|", amp=0) | |
| jp >> play (" |=1|", amp=0, chop=0, dur=1) | |
| nh >> play (" [::]", amp=0) |
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
| """ Handles OSC messages being sent to SuperCollider. | |
| """ | |
| from __future__ import absolute_import, division, print_function | |
| import sys | |
| if sys.version_info[0] > 2: | |
| import queue | |
| else: | |
| import Queue as queue |