Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save calumgunn/04bedc17463747c5da01859c15050f71 to your computer and use it in GitHub Desktop.
Save calumgunn/04bedc17463747c5da01859c15050f71 to your computer and use it in GitHub Desktop.
// open SC
// press CMD+B to boot the server
// click anywhere in the below text
// press CMD+ENTER
// make sure ya speakers aren't too loud first tho
(
~a = NodeProxy.new;
~a.play;
~a[0] = {
var sig, n = 5;
sig = { |i| BPF.ar(SawDPW.ar(220 + i), LFNoise0.kr(SawDPW.kr(0.5).range(4,19)).range(100,10000), 0.001); }.dup(n);
sig = sig + { |i| BPF.ar(Pulse.ar(110 - i), LFNoise0.kr(SawDPW.kr(0.6).range(4,19)).range(100,1000), 0.01); }.dup(n);
Splay.ar(sig, SinOsc.kr(0.2).range(0.2,0.8));
}
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment