Skip to content

Instantly share code, notes, and snippets.

@nicoder
Created February 19, 2015 04:26
Show Gist options
  • Save nicoder/dd86f39d02025fe3f86f to your computer and use it in GitHub Desktop.
Save nicoder/dd86f39d02025fe3f86f to your computer and use it in GitHub Desktop.
20150217 sonic pi
use_bpm 100
loop do
play :c5, attack: 2, release: 5
play :e5, attack: 2, release: 5
play :c6, attack: 2, release: 5
with_fx :distortion, distort: 0.95 do
with_fx :bpf do
play :g, attack: 0.5, release: 2
sleep 1
play :e, attack: 0.5, release: 2
sleep 0.5
play :c, attack: 0.5, release: 2
sleep 1.5
play :e, attack: 0.5, release: 2
sleep 1.5
play :g, attack: 0.5, release: 2
sleep 1.5
play :c5, attack: 2, release: 5
play :g5, attack: 2, release: 5
play :c6, attack: 2, release: 5
sleep 7
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment