Skip to content

Instantly share code, notes, and snippets.

@hashrocketeer
Created June 30, 2016 02:48
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 hashrocketeer/e4c6e7e5fd594b36c74475795afabbfe to your computer and use it in GitHub Desktop.
Save hashrocketeer/e4c6e7e5fd594b36c74475795afabbfe to your computer and use it in GitHub Desktop.
# Welcome to Sonic Pi v2.10
live_loop :kwiyor do
play chord_degree(ring(1,5,6,4).tick, :f3), sustain: 1, release: 0.5
sleep 2
end
live_loop :drumz do
sync :kwiyor
16.times do
sample :bd_haus if spread(4, 16).tick
sample :elec_tick, pan: rand(-0.5..0.5) if spread(13, 16).look
sample :elec_cymbal, amp: 0.1 if spread(4, 7).look
sleep 2/16.0
end
end
live_loop :maylowdee do
sync :kwiyor
16.times do
synth :pluck, note: ring(:f, ring(:c, :bb, :g).look, :a).look if spread(7, 16).tick
sleep 1/8.0
end
end
@hashrocketeer
Copy link
Author

This is the piece that came out of the second Event Horizon Sonic Pi jam night.

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