It's definitely time for a live stream. Some will be early in the course, some will be 'caught up' and following the videos as I add them.. So all questions welcome! Especially as it's always good to go over earlier topics.
It'll be in just under 12 hours from now. Hopefully this will show the time in your timezone: 2020-05-18T20:00:00Z → 2020-05-18T21:00:00Z
irand is a continuous flow of random numbers, which it causing no events to be created. By using segment 1, only one random number is picked per cycle, and everything starts working. I was having a brain freeze in the live stream and kept trying struct 1 which makes no sense.
In fact, i had a second related question that would have followed the first one
Why does that piece of code constantly picking a random number (and not just one on evaluation)?
do
let x = segment 1 $ irand 9999
d1 $ struct (binaryN 16 (x)) $ sound "bd:0"
I also tried without the "do" block without any success:
x = segment 1 $ irand 9999
d1 $ struct (binaryN 16 (x)) $ sound "bd:0"
My goal here is being able to change the pattern's rhythm by evaluating the "do" block or the variable line (in the second example scenario).