Skip to content

Instantly share code, notes, and snippets.

@nicoder
Created April 13, 2016 02:55
Show Gist options
  • Save nicoder/b6c35a1826ea56344759f621c45fd1de to your computer and use it in GitHub Desktop.
Save nicoder/b6c35a1826ea56344759f621c45fd1de to your computer and use it in GitHub Desktop.
live_loop :l do
play (ring 60).tick
sleep 1
end
live_loop :b do
#sync :l
play (ring 67, 69).stretch(2).tick
sleep 1
end
live_loop :c do
#sync :l
sample :drum_bass_hard
sleep 2
end
live_loop :d do
#sync :l
use_synth :fm
s = choose([1, 32, 64, 128])
#puts s
use_random_seed s
16.times do
play [48, 55, 57, 43].choose, release: 0.2, amp: (rrand 2, 3)
sleep 0.125
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment