Skip to content

Instantly share code, notes, and snippets.

@nicoder
Last active April 5, 2016 02:50
Show Gist options
  • Save nicoder/dff796a16043f92e169a9518cf2b6f16 to your computer and use it in GitHub Desktop.
Save nicoder/dff796a16043f92e169a9518cf2b6f16 to your computer and use it in GitHub Desktop.
live_loop :a do
use_synth :tb303
play 64, cutoff: (rrand 70, 80)
play (ring 64, 66, 68, 64).tick, cutoff: (rrand 70, 80)
sleep 1
end
live_loop :b do
# sync :a
use_synth :dsaw
play 52, cutoff: 50, release: 3
play (ring 59, 61).stretch(2).tick, cutoff: 50, release: 3
sleep 2
end
live_loop :c do
#sync :a
sample :bd_tek
sleep 0.5
sample :bd_tek
sleep 3.5
end
live_loop :d do
sync :a
with_fx :echo, phase: 0.3, mix: 0.3 do
sample :elec_snare, rate: 5
end
end
live_loop :e do
sync :a
sleep 2
sample :drum_snare_hard, cutoff: (rrand 50, 130)
sleep 2
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment