Joel Matthys
Joel Matthys
I agree that usability (ie kid-friendliness) is important, so simplicity is key. In Common Music, the analysis command: ``` (markov-analyze twinkle-melody :order 2 :mode 1) ``` prints the progression table...
I'm afraid I'm basically a Ruby beginner; I'm keen but slow. If there are others willing to take a shot, I'd be eternally grateful.........
(But I'm not unwilling! I may have some time next week to take a shot.)
I have some working code now. I'm still chasing some bugs, but I think it's working the way it's supposed to. I implemented it directly in Sonic Pi, so I...
Thank you all for the comments and code corrections! This is literally my first Ruby code so expert eyes are both appreciated and necessary. I think there are also problems...
Outstanding. In order to make it a little more user-friendly by avoiding the dot notation, we could use this: ``` def markov(source, order=1, start=nil) Markov.new(source, order, start) end ``` Then...
This no longer works for order 0 (which is just a shuffling of the original list/ring) so that should be an easy fix.
It's not a device or even a piece of software; it's a protocol for a shared metronome among multiple programs. It could be useful for locking in a metronome with...
Thanks Mario. Do you have a short example of ChucK code that demonstrates this bug?
I had to do a little research on capacity vs size, and yes, you're right. Pushing the change ASAP.