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
cps 0.45 | |
import qualified Sound.Tidal.Scales as Scales | |
do | |
let runnow d p = do now <- getNow | |
d $ (nextSam now) ~> p | |
oneshot d p = runnow d $ seqP [(0, 1, p)] | |
sctf = (# cutoff (scale 150 150 (slow 8 sine1))) | |
hctf = (# hcutoff "100") |
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
Show hidden characters
[ | |
{ | |
"caption": "SublimeREPL: Tidal", | |
"command": "run_existing_window_command", "args": | |
{ | |
"id": "repl_tidal", | |
"file": "config/Tidal/Main.sublime-menu" | |
} | |
} | |
] |
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
SynthDef(\bassy, {|out=0, freq=440, ctf=1000, rq = 0.5, attack=0.001, release=1, lpcutoff=5000, amp=0.1, mul=1, pan=0.5| | |
var sig = LFSaw.ar(freq) * 0.5; | |
var env = EnvGen.ar(Env.perc(attack, release), doneAction:2); | |
sig = mul * BHiPass.ar(RLPF.ar(sig, lpcutoff*env, rq), ctf, rq); | |
OffsetOut.ar(out, DirtPan.ar(sig*amp, ~dirt.numChannels, pan, env)) | |
}).add; |
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
SuperDirt.start | |
( | |
SynthDef(\moogbass, { | |
arg out = 0, pan = 0, freq = 440, amp = 0.1, gate = 1, cutoff = 1000, gain = 2.0, lagamount = 0.01, att = 0.001, dec = 0.3, sus = 0.9, rel = 0.2, chorus = 0.7; | |
var osc, filter, env, filterenv, snd, chorusfx; | |
osc = Mix(VarSaw.ar( | |
freq: freq.lag(lagamount) * [1.0, 1.001, 2.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
-- import Sound.Tidal.Scales | |
import Sound.Tidal.Drum.Jungle as J | |
cps 0.666 | |
let drums' p = d1 p | |
hats p = d2 p | |
mando p = d3 $ | |
degradeBy 0.25 $ |
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
settings = { | |
core = { real_name = ""; user_name = ""; nick = ""; }; | |
}; | |
servers = ( | |
{ | |
address = "livecode.irc.slack.com"; | |
chatnet = "slack"; | |
port = "6667"; | |
password = ""; | |
use_ssl = "yes"; |
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
module Sound.Tidal.MIDI.SO404 where | |
import Sound.Tidal.Params | |
import Sound.Tidal.MIDI.GMParams | |
import Sound.Tidal.MIDI.Control | |
-- CC#7-Volume | |
-- CC#65-Portamento time | |
-- CC#71-Filter Resonance | |
-- CC#72-Release time |
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
FROM debian:jessie | |
MAINTAINER Mauro <[email protected]> | |
ENV DEBIAN_FRONTEND noninteractive | |
RUN apt-get update \ | |
&& apt-get install -yq wget unzip \ | |
ca-certificates build-essential gcc \ | |
libasound2-dev libjack-jackd2-dev \ |
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
//https://github.com/heaversm/unity-osc-receiver | |
public var RemoteIP : String = "127.0.0.1"; | |
public var SendToPort : int = 9000; | |
public var ListenerPort : int = 8000; | |
public var cubeReceivers: GameObject[]; | |
public var sphereReceivers: GameObject[]; | |
private var handler : Osc; | |
private var cyRot : int = 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
cps 0.666 | |
let lpf = (# bandq "0.25") . (# bandf "0.9") . (# resonance "0.1") . (# cutoff "0.15") | |
dirt $ | |
stack[ | |
whenmod 21 7 (within(0,0.25)((# pan (scale 0.25 0.5 rand)) . (# vowel "h e y l o o k t u r n t a b l i s m"))) $ | |
every 12 (# speed "-1") $ | |
every 23 (# accelerate "-5") $ | |
sometimes( superimpose ((# coarse "16") . (# speed "2"))) $ |