Skip to content

Instantly share code, notes, and snippets.

@hzulla
Last active November 6, 2015 15:07
Show Gist options
  • Save hzulla/36fe7a49c5d60cf54358 to your computer and use it in GitHub Desktop.
Save hzulla/36fe7a49c5d60cf54358 to your computer and use it in GitHub Desktop.
Sonic Pi: Bleep Bloop
live_loop :bloops do
s = scale(:c4, :major)
with_fx :panslicer do
with_fx :reverb do
n = s.choose
2.times do
play n, release: 0.25
sleep 0.125
end
end
end
end
live_loop :base do
s = chord(:c2, :minor)
use_synth :tb303
play s.tick, release: 1.4, amp: 0.3
sleep 1
end
live_loop :drums do
sample :loop_breakbeat, beat_stretch: 2, amp: 2
sleep 2
end
live_loop :booms do
sample :bd_boom, amp: 2
sleep 4
end
@hzulla
Copy link
Author

hzulla commented Nov 6, 2015

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment