Skip to content

Instantly share code, notes, and snippets.

@nicoder
Created April 11, 2016 02:43
Show Gist options
  • Save nicoder/23d59d0b6917c4ed15af694a0dcc96b9 to your computer and use it in GitHub Desktop.
Save nicoder/23d59d0b6917c4ed15af694a0dcc96b9 to your computer and use it in GitHub Desktop.
live_loop :a do
sample :bd_zum
sleep 1
end
use_synth :tb303
live_loop :b do
#sync :a
play :c, release: 4, cutoff: rrand(60, 80), cutoff_attack: 4
sleep 4
end
live_loop :c do
#sync :b
#tick_reset
play (ring :e, :f).stretch(2).tick, release: 2, cutoff: rrand(60, 80), cutoff_attack: 2
sleep 2
end
live_loop :d do
#sync :a
with_fx :reverb do
sample :drum_cymbal_closed unless one_in 12
sleep 0.25
end
end
live_loop :e do
#sync :b
use_random_seed (ring 16, 32, 16, 64).tick(:s)
with_fx :slicer, reps: 16, phase: 0.125 do
play scale(:c, :major).shuffle.tick, cutoff: 80
sleep 0.25
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment