This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Pattern #42 from 100 | |
-- 042-2022-01-11.tidal | |
d1 | |
$ jux ((fast 2) . rev . (# pan (choose [0, 0.5, 0.75, -1]))) | |
$ every 2 (fast 2 . rev) | |
$ s "superfm" | |
|>| n ("[c g f bf]" + "[0, 7, -5, 12]") | |
# legato 1 |>| gain "1 0.75 0.5 0.75" | |
# room 0.6 # size 0.7 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Pattern #41 from 100 | |
-- 041-2021-11-20.tidal | |
d1 $ slow 4 $ n "[-22]" # s "superhammond" # attack 2 # legato 4 # release 20 | |
d2 $ jux rev $ slow 4 $ (|- n ("<0 -2 7>")) $ n "[0, 2, 5, 7, 12, 14]" # s "superpiano" # attack 2 # legato 4 # release 20 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Beethoven | |
use_bpm 120 | |
live_loop :beat do | |
sleep 4 | |
end | |
live_loop :bell, sync: :beat do | |
stop |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# filename: perf-heatherland.rb | |
use_bpm 120 | |
live_loop :beat do | |
sleep 4 | |
end | |
live_loop :kick, sync: :beat do |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Noise to music | |
# filename: perf-noise-to-music.rb | |
use_bpm 120 | |
live_loop :bar do | |
sleep 4 | |
end | |
with_fx :sound_out_stereo, output: 5 do |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Field | |
# | |
# filename: field.rb | |
# carla: field.carxp | |
use_bpm 120 | |
live_loop :beat do | |
sleep 8 | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Chromero | |
# | |
# filename: chromero.rb | |
# carla: chromero.carpx | |
use_bpm 60 | |
live_loop :bar do | |
sleep 4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Who are you? | |
# | |
# filename: way.rb | |
# carla: way.carpx | |
live_loop :metro do | |
sleep 1 | |
end | |
live_loop :phrase, sync: :metro do |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Pattern #40 from 100 | |
-- 040-2021-08-04.tidal | |
d1 | |
$ slow 2 | |
$ off 0.125 (|- note 3) | |
$ note (scale "minor" "0 2 4 6") # s "tabla:1" # end "0.35" | |
d2 | |
$ slow 4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Pattern #39 from 100 | |
-- 039-2021-07-07.tidal | |
d1 | |
$ every 2 (degradeBy 0.25) | |
$ struct "t(<5, 9 , 7>,16)" | |
$ (off 0.5 (|+ gain (range 0.25 1 rand))) | |
$ n (scale "minor" $ floor <$> (fast 5 (range 0 12 sine))) | |
# s "omi" # legato (slow 4 $ range 1 4 cosine) | |
# room (range 0.125 0.75 $ slow 4 sine) |
NewerOlder