No worries. I didn't expect a huge following in the first place, so it's pretty cool to get any feedback at all.

I'm looking to see if I can make a function to open an svg and fill in text areas with generated words. That'd be pretty nifty I guess. Also, maybe I'll make a command line version to allow it to work as a plugin in InkScape

Other than that, my work is focused on making short-cuts so that I can accomplish the same things I can now, but with shorter scripts. One thing I'm working on is:

Code:
rule Word {
  loop 1 2 2 5[3] 4[4] 5 5 6 {
    rule Syllable
  }
}
Which would run the syllable rule a number of times between 1 and 6, and with 3 syllables 5 times as likely as 1 syllable. This can be done already, using the probability setting on mutliple rules with the same name, but that's quite a bit of code compared to the above.