Skip to content

Instantly share code, notes, and snippets.

@datashaman
Created September 7, 2021 13:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save datashaman/e4cc432516dbe6c923c3390af2d6a52a to your computer and use it in GitHub Desktop.
Save datashaman/e4cc432516dbe6c923c3390af2d6a52a to your computer and use it in GitHub Desktop.
Snake Jazz in Sonic Pi
live_loop :snake_jazz do
with_fx :compressor do
with_fx :flanger, mix: rrand(0, 0.2) do
with_fx :reverb, amp: rrand(0, 0.6) do
with_fx :tanh, krunch: 2, mix: rrand(0, 0.2) do
with_fx :hpf, cutoff: 130 - rrand(0, 20), mix: rrand(0.9, 1) do
sample :drum_cymbal_open
sleep 0.75
sample :drum_cymbal_pedal
sleep 0.5
sample :drum_cymbal_pedal, sustain: 0.1
sleep 0.25
end
end
end
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment