Skip to content

Instantly share code, notes, and snippets.

@nicoder
Created March 16, 2020 06:44
Show Gist options
  • Save nicoder/e708eb2c580eef9163d2f59def75d68e to your computer and use it in GitHub Desktop.
Save nicoder/e708eb2c580eef9163d2f59def75d68e to your computer and use it in GitHub Desktop.
live_loop :a do
sample :bd_haus
sleep 1
end
live_loop :b do
sync :a
use_synth :tb303
with_fx :echo, mix: rand do
c = line(40, 90, steps: 16).tick
play 48, release: 0.2, cutoff: c, pan: -0.5
play scale(48, :blues_major).choose, release: 0.2, cutoff: c, pan: 0.5
end
end
live_loop :c do
#sync :a
use_synth :dpulse
play 60, cutoff: 50, release: 1.5
play (ring 69, 67).stretch(8).tick, cutoff: 50, release: 1.5
play 72, cutoff: 50, release: 1.5
sleep 1
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment