Skip to content

Instantly share code, notes, and snippets.

@nicoder
Created April 8, 2016 12:22
Show Gist options
  • Save nicoder/cb89b8ca3258bc9e4897a4679f619cc9 to your computer and use it in GitHub Desktop.
Save nicoder/cb89b8ca3258bc9e4897a4679f619cc9 to your computer and use it in GitHub Desktop.
# clapping music (steve reich)
use_bpm 90
notes = (ring :c, :c, :c, :r, :c, :c, :r, :c, :r, :c, :c, :r)
in_thread do
(13 * 4 * 12).times do
play notes.tick, release: 0.2, pan: -0.2
sleep 0.25
end
end
use_synth :fm
13.times do |i|
tick_set i
4.times do
12.times do
play notes.tick, release: 0.2, pan: 0.2
sleep 0.25
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment