Skip to content

Instantly share code, notes, and snippets.

@samusz
Created April 11, 2019 02:40
Show Gist options
  • Save samusz/b9cc953fe1ddc2f146c8a9752de65d2a to your computer and use it in GitHub Desktop.
Save samusz/b9cc953fe1ddc2f146c8a9752de65d2a to your computer and use it in GitHub Desktop.
My first sonic pi attempt. I kinda like it ;)
# Welcome to Sonic Pi v3.1
live_loop :flibble do
sample :ambi_drone, rate: 0.3
# sample :ambi_lunar_land, rate: 0.1
play_chord [60,85,110]*1.5
sample :bd_haus, rate: 0.7
use_bpm 80
sleep 3
end
live_loop :guit do
with_fx :echo, mix: 0.3, phase: 0.25 do
sample :guit_em9, rate: 0.5
end
# sample :guit_em9, rate: -0.5
sleep 8
end
live_loop :boom do
with_fx :reverb, room: 1 do
sample :bd_boom, amp: 10, rate: 1
end
sleep 8
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment