From 1c48858909090f68bd69abb9976606726771c1b8 Mon Sep 17 00:00:00 2001 From: Timo Hoogland Date: Sun, 28 Jan 2024 14:44:32 +0100 Subject: [PATCH 1/3] Update _config.yml change theme to minima --- docs/_config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/_config.yml b/docs/_config.yml index 2f7efbea..a25eb13c 100644 --- a/docs/_config.yml +++ b/docs/_config.yml @@ -1 +1 @@ -theme: jekyll-theme-minimal \ No newline at end of file +theme: minima From 22a66e9fed5066bf6ea806ab8d390a1916000b11 Mon Sep 17 00:00:00 2001 From: Timo Hoogland Date: Sun, 28 Jan 2024 14:46:50 +0100 Subject: [PATCH 2/3] Update _config.yml theme change to slate --- docs/_config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/_config.yml b/docs/_config.yml index a25eb13c..f980e760 100644 --- a/docs/_config.yml +++ b/docs/_config.yml @@ -1 +1 @@ -theme: minima +theme: jekyll-theme-slate From 2f3942b902d2e939ae397a98376817d713815403 Mon Sep 17 00:00:00 2001 From: Timo Hoogland Date: Sun, 28 Jan 2024 14:49:50 +0100 Subject: [PATCH 3/3] Update README.md --- README.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 40ab9730..dcd00a5c 100644 --- a/README.md +++ b/README.md @@ -95,8 +95,8 @@ new sample hat_909 time(3/16) Make rhythmic patterns with sequences of numbers and probabilities ```java -ring loBeat [1 0 0 1 0.5] -ring hiBeat [0 1 0.2 0] +list loBeat [1 0 0 1 0.5] +list hiBeat [0 1 0.2 0] new sample tabla_lo time(1/8) play(loBeat) new sample tabla_hi time(1/8) play(hiBeat) @@ -108,7 +108,7 @@ Generate psuedorandom melodic content for a synthesizer in a range and set a sca set scale minor d set randomSeed 31415 -ring melody random(16 0 24) +list melody random(16 0 24) new synth saw note(melody) time(1/16) shape(4 100) ``` @@ -134,12 +134,12 @@ Generate sequences algorithmically to compose complex structures and choose from ```java set scale minor a -ring rhythm euclidean(32 13) +list rhythm euclidean(32 13) -ring melody spread(5 0 24) -ring melody palinedrome(melody) -ring melody clone(melody 0 5 7 3) -ring melody lace(melody melody) +list melody spread(5 0 24) +list melody palinedrome(melody) +list melody clone(melody 0 5 7 3) +list melody lace(melody melody) new synth triangle note(melody 1) shape(1 80) play(rhythm) ``` @@ -155,7 +155,7 @@ new midi "Your Awesome Midi Device" time(1/4) note(7 1) length(100) sync(on) Control other environments via OSC-messages ```java -ring params [0.25 0.5 0.75] +list params [0.25 0.5 0.75] new emitter osc address(yourDevice) theParam(params) time(1/4) @@ -169,7 +169,7 @@ new emitter osc address(yourDevice) theParam(params) time(1/4) Easily control parameters in Mercury via external OSC-messages ```java -new synth triangle fx(reverb /extOSC/verbAmount) fx(filter low /extOSC/cutoff 0.4) time(1) shape(1 1000) +new synth triangle fx(reverb '/extOSC/verbAmount') fx(filter low '/extOSC/cutoff' 0.4) time(1) shape(1 1000) ``` **AND MANY MORE (TO COME...)**