Skip to content

Instantly share code, notes, and snippets.

@cmoody
Created May 5, 2020 02:33
Show Gist options
  • Save cmoody/78c5d7b16c9f7c5303c88267ef268dee to your computer and use it in GitHub Desktop.
Save cmoody/78c5d7b16c9f7c5303c88267ef268dee to your computer and use it in GitHub Desktop.
Chopsticks in sonic pi
use_bpm 165
##| Left Hand, Right Hand
define :time_loop do |loop_number, right_hand, left_hand|
loop_number.times do
play right_hand
play left_hand
sleep 1
end
end
##| GGGGGG
##| FFFFFF
time_loop 6, :G4, :F4
##| GGGGGG
##| EEEEEE
time_loop 6, :G4, :E4
##| BBBBBB
##| DDDDDD
time_loop 6, :B4, :D4
##| C CC B A
##| C CC D E
time_loop 1, :C5, :C4
time_loop 1, :C5, :C4
time_loop 1, :C5, :C4
time_loop 1, :B4, :D4
time_loop 1, :A4, :E4
##| GGGGGG
##| FFFFFF
time_loop 6, :G4, :F4
##| GGGGGG
##| EEEEEE
time_loop 6, :G4, :E4
##| BBBBAB
##| DDDDED
time_loop 4, :B4, :D4
time_loop 1, :A4, :E4
time_loop 1, :B4, :D4
##| C G C
##| C F C
time_loop 1, :C5, :C4
time_loop 1, :G4, :F4
time_loop 1, :C5, :C4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment