Last active
November 12, 2015 09:57
-
-
Save hzulla/8c8e63f996e2f57663dd to your computer and use it in GitHub Desktop.
Sonic Pi: Techno Rhythm Experiment
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use_bpm 120 | |
live_loop :bumms do | |
sync :drums | |
sample :bd_boom | |
sleep 4 | |
end | |
live_loop :drums do | |
with_fx :wobble do | |
with_fx :ixi_techno do | |
sample :drum_cymbal_pedal | |
sleep 0.25 | |
sample :drum_cymbal_pedal | |
sleep 0.5 | |
sample :drum_cymbal_pedal | |
sleep 0.25 | |
sample :bd_haus | |
sample :drum_cymbal_hard | |
sleep 1 | |
sample :drum_cymbal_closed | |
sleep 0.5 | |
sample :drum_cymbal_closed | |
sleep 0.5 | |
sample :bd_haus | |
sample :drum_cymbal_closed | |
sleep 1 | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment