diff --git a/website/src/pages/workshop/first-notes.mdx b/website/src/pages/workshop/first-notes.mdx
index 6e4f9110..cb40713f 100644
--- a/website/src/pages/workshop/first-notes.mdx
+++ b/website/src/pages/workshop/first-notes.mdx
@@ -97,11 +97,17 @@ Try out different octaves (1-8)
+If you are not comfortable with the note letter system, it should be easier to use numbers instead.
+Most of the examples below will use numbers for that reason.
+We will also look at ways to make it easier to play the right notes later.
+
## changing the sound
Just like with unpitched sounds, we can change the sound of our notes with `sound`:
-
+
+
+{/* c2 g2, e3 b3 d4 e4 */}
@@ -157,6 +163,8 @@ We will see more ways to combine patterns later..
The `/4` plays the sequence in brackets over 4 cycles (=4s).
+So each of the 4 notes is 1s long.
+
Try adding more notes inside the brackets and notice how it gets faster.
@@ -181,47 +189,77 @@ Try adding more notes inside the brackets and notice how it does **not** get fas
hideHeader
client:visible
tune={`note("<[36 48]*4 [34 46]*4 [41 53]*4 [39 51]*4>/2")
- .sound("gm_acoustic_bass")`}
+.sound("gm_acoustic_bass")`}
/>
-**Play X per cycle with \{ \}**
+**Alternate between multiple things**
")
+.sound("gm_xylophone")`}
+/>
+
+This is also useful for unpitched sounds:
+
+, [~ hh]*2")
+.bank("RolandTR909")`}
+/>
+
+## Scales
+
+Finding the right notes can be difficult.. Scales are here to help:
+
+")
+.scale("C:minor").sound("piano")`}
/>
-Try different numbers after `%`
+Try out different numbers. Any number should sound good!
-`{ ... }%1` is the same as `< ... >`
+Try out different scales:
+
+- C:major
+- A2:minor
+- D:dorian
+- G:mixolydian
+- A2:minor:pentatonic
+- F:major:pentatonic
-## Examples
+**automate scales**
-Small Town Boy
+Just like anything, we can automate the scale with a pattern:
+
+")
+.scale("/2")
+.sound("piano")`}
+/>
+
+## Examples
/2")
-.sound("gm_synth_bass_1").lpf(1000)`}
+.sound("gm_synth_bass_1")`}
/>
/2"
-.add.squeeze("[0 12]\*4")
-.note()
+ tune={`note("[0 12]*2".add("<36 34 41 39>/2"))
.sound("gm_synth_bass_1")`}
/>
diff --git a/website/src/pages/workshop/langebank.mdx b/website/src/pages/workshop/langebank.mdx
index 44e5d600..9190afa6 100644
--- a/website/src/pages/workshop/langebank.mdx
+++ b/website/src/pages/workshop/langebank.mdx
@@ -89,3 +89,33 @@ d1 $ sound "{bd sn, can:2 can:3 can:1, arpy arpy:1 arpy:2 arpy:3 arpy:5}"
+
+
+
+**Play X per cycle with \{ \}**
+
+
+
+
+
+Try different numbers after `%`
+
+`{ ... }%1` is the same as `< ... >`
+
+
+
+## Bracket Recap
+
+- `[]` squeezes contents to 1 cycle
+- `<>` plays one item per cycle
+- `{}%x` plays x items per cycle