[Csnd] Short Composition Challenge
Date | 2009-04-14 02:31 |
From | Tobiah |
Subject | [Csnd] Short Composition Challenge |
I have an idea for a brief informal contest. Given a simple, one-oscillator orchestra, provide a score which produces the most beautiful piece. I offer an orchestra that I crafted for the purpose of this event. One can make use of very limited envelope an pan controls. Obviously, the craft will be in the score generation program (although one is welcome to hand edit her entry!). If there is interest, I suggest a seven day window for this challenge. Only the scores should be submitted at first. We can look at source code later. For large scores, a URL might be best. I can host scores if you send them to me in an archive format. Thanks, Toby sr = 44100 ksmps = 1 nchnls = 2 giSineFunc ftgen 1, 0, 65536, 10, 1 instr 1 ;***** INIT SECTION ***** iDur init p3 iVol init p4 iStartPitch init p5 iEndPitch init p6 iAttack init p7 iDecay init iDur - iAttack iPanStart init p8 iPanEnd init p9 ;***** SYNTH SECTION ***** kEnv linseg 0, iAttack, iVol, iDecay, 0 kPitch expseg iStartPitch, iDur, iEndPitch aSig oscili kEnv, kPitch, giSineFunc kPan linseg iPanStart, iDur, iPanEnd aLeft = aSig * kPan aRight = aSig * (1 - kPan) outs aLeft, aRight endin |
Date | 2009-04-14 06:14 |
From | Brent Boylan |
Subject | [Csnd] Re: Short Composition Challenge |
I like this idea. It will be fun to see what people come up with. |
Date | 2009-04-14 08:54 |
From | Stéphane Rollandin |
Subject | [Csnd] Re: Short Composition Challenge |
> If there is interest, I suggest a seven day window > for this challenge. Only the scores should be submitted at first. We > can look at source code > later. For large scores, a URL might be best. I can host > scores if you send them to me in an archive format. very nice idea, but please give us a month. I don't see an interest in having a too tight time schedule. regards, Stef |
Date | 2009-04-14 10:16 |
From | Chuckk Hubbard |
Subject | [Csnd] Re: Re: Short Composition Challenge |
2009/4/14 Stéphane Rollandin |
Date | 2009-04-14 13:50 |
From | Toby |
Subject | [Csnd] Re: Re: Short Composition Challenge |
Stéphane Rollandin wrote: > >> If there is interest, I suggest a seven day window >> for this challenge. Only the scores should be submitted at first. We >> can look at source code >> later. For large scores, a URL might be best. I can host >> scores if you send them to me in an archive format. > > very nice idea, but please give us a month. I don't see an interest in > having a too tight time schedule. Ok. I guess there needn't be a time limit anyway, but let's say a month. Toby |
Date | 2009-04-14 15:01 |
From | Rory Walsh |
Subject | [Csnd] Re: Re: Re: Short Composition Challenge |
I don't suppose you wish to alter the instrument slightly so that users can choose between a exponential amplitude envelope and a linear one? It would still make the instrument ridiculously simple yet offer more scope for more natural sounding notes. Just a thought. Rory. 2009/4/14 Toby |
Date | 2009-04-14 16:53 |
From | Tobiah |
Subject | [Csnd] Re: Re: Re: Re: Short Composition Challenge |
Rory Walsh wrote: > I don't suppose you wish to alter the instrument slightly so that > users can choose between a exponential amplitude envelope and a linear > one? It would still make the instrument ridiculously simple yet offer > more scope for more natural sounding notes. Just a thought. > > Rory. Sure, it's not set in stone. I was going to use expseg, but it always bothers me that I can't start at zero. What do people do, just start at .0000001? As I remember, as that start number varies, the shape of the envelope changes greatly. As that number becomes very small, it takes a while for the envelope to recover, then you get a swell at the end. If the start number is too large, then you get a click and have to take measures to fix that. Maybe I have it wrong. Post your modification so that we can try it out. The main idea of the orchestra was to put the composer in shackles to free her. I'd like to see any suggestions for modifications; I only considered the orchestra for a half hour or so. The idea is to give a tiny aperture for the score generation program to shine through. I find the restriction liberating and motivating. Toby |
Date | 2009-04-14 16:56 |
From | Tobiah |
Subject | [Csnd] Re: Re: Re: Re: Re: Short Composition Challenge |
Tobiah wrote: > Rory Walsh wrote: >> I don't suppose you wish to alter the instrument slightly so that >> users can choose between a exponential amplitude envelope and a linear >> one? Oh, and I know that the pan could be easily improved. There are many better formulas out there. Suggestions? Tobiah |
Date | 2009-04-14 16:59 |
From | Michael Gogins |
Subject | [Csnd] Re: Re: Re: Re: Re: Short Composition Challenge |
They use transeg. Regards, Mike On 4/14/09, Tobiah |
Date | 2009-04-14 17:01 |
From | Jeff Taylor |
Subject | [Csnd] Re: Re: Re: Re: Re: Short Composition Challenge |
Personally, I use linseg with a range of 0-1 then take the result to the second power. This gets me an exponential curve without having to use the fiddly expseg. -- Electronically, Jeff Taylor On Tue, Apr 14, 2009 at 10:53 AM, Tobiah <toby@tobiah.org> wrote:
|
Date | 2009-04-14 17:06 |
From | Rory Walsh |
Subject | [Csnd] Re: Re: Re: Re: Re: Re: Short Composition Challenge |
I never though of that. I think Michael's idea is simpler, just use transeg and add an extra pfields to determine the type. I had just finished modifying the earlier example to add an if statement to determine the type but Mikes way is easier I think. Rory. |
Date | 2009-04-14 17:17 |
From | Anthony Kozar |
Subject | [Csnd] Re: Short Composition Challenge |
Tobiah wrote on 4/14/09 11:53 AM: > Rory Walsh wrote: >> I don't suppose you wish to alter the instrument slightly so that >> users can choose between a exponential amplitude envelope and a linear >> one? It would still make the instrument ridiculously simple yet offer >> more scope for more natural sounding notes. Just a thought. >> >> Rory. > > Sure, it's not set in stone. I was going to use expseg, > but it always bothers me that I can't start at zero. > What do people do, just start at .0000001? As I remember, > as that start number varies, the shape of the envelope > changes greatly. As that number becomes very small, > it takes a while for the envelope to recover, then > you get a swell at the end. If the start number is > too large, then you get a click and have to take measures > to fix that. Maybe I have it wrong. Post your modification > so that we can try it out. I think some people subtract the start value from the exponential signal. kexp expon .001, p3, 1.001 kres = kexp - .001 > The main idea of the orchestra was to put the composer in > shackles to free her. I'd like to see any suggestions for > modifications; I think the simple orchestra is a good idea. Equal-power panning would be better than linear panning though. Anthony Kozar mailing-lists-1001 AT anthonykozar DOT net http://anthonykozar.net/ |
Date | 2009-04-14 18:19 |
From | Chuckk Hubbard |
Subject | [Csnd] Re: Short Composition Challenge |
One can use any number of programs to create the score, not just one or zero? -Chuckk On Tue, Apr 14, 2009 at 4:31 AM, Tobiah |
Date | 2009-04-14 18:29 |
From | Stéphane Rollandin |
Subject | [Csnd] Re: Re: Re: Re: Short Composition Challenge |
Rory Walsh a écrit : > I don't suppose you wish to alter the instrument slightly so that > users can choose between a exponential amplitude envelope and a linear > one? It would still make the instrument ridiculously simple yet offer > more scope for more natural sounding notes. Just a thought. I have been experimenting with the orchestra Tobiah proposed and I like its shortcomings: it makes us really have to tweak the score a lot. so I would vote for keeping this orchestra as it is. now if you want a more expressive orchestra, I think it would be fun to just add it to the challenge: let's make a piece for both, and see how the final results compare. will the expressiveness lacking in the rough orchestra be a real limitation in the end ? I'm curious about the answer. Stef |
Date | 2009-04-14 18:31 |
From | victor |
Subject | [Csnd] Re: Re: Short Composition Challenge |
and can we use any ftables with it? Poscil instead of oscil so we can have non-power-of-two as well? Victor ----- Original Message ----- From: "Anthony Kozar" |
Date | 2009-04-14 18:33 |
From | Stéphane Rollandin |
Subject | [Csnd] Re: Re: Re: Re: Re: Short Composition Challenge |
I don't know if my english was correct in my previous post: by "let's make a piece for both" (orchestras), I meant: let each of us make two pieces, one for each orchestra. that's clearer I guess :) Stef |
Date | 2009-04-14 18:59 |
From | Rory Walsh |
Subject | [Csnd] Re: Re: Re: Short Composition Challenge |
If we did that users could read in sound files which would add a whole different aspect to the instrument, can we restrict it to any ftable but it can only contain one cycle of a waveform? 2009/4/14 victor |
Date | 2009-04-14 19:07 |
From | victor |
Subject | [Csnd] blog (was Re: Short Composition Challenge) |
I have started a blog about this. Perhaps we can use it to collect responses and comments? http://csounding.blogspot.com/ victor ----- Original Message ----- From: "Tobiah" |
Date | 2009-04-14 21:10 |
From | Mark Van Peteghem |
Subject | [Csnd] Re: Re: Short Composition Challenge |
Anthony Kozar wrote: > I think some people subtract the start value from the exponential signal. > > kexp expon .001, p3, 1.001 > kres = kexp - .001 I've done that too. More recently I made envelopes with linseg between 0 and 1 and applied expcurve to it. I haven't compared the two methods yet; I suspect it's slower with expcurve, but it may sound nicer. -- Mark _________________________________________ When you get lemons, you make lemonade. When you get hardware, you make software. |
Date | 2009-04-14 22:18 |
From | Tobiah |
Subject | [Csnd] Re: Re: Re: Short Composition Challenge |
victor wrote: > and can we use any ftables with it? Poscil instead of oscil so > we can have non-power-of-two as well? One of the reasons that I put the ftable in the orchestra was to prevent using any others. The point is that all you get is a sinewave with simple envelope and panning. I really don't want to go beyond what the orchestra already is, although I'm considering the alterations to the envelope and pan, because they don't lift restrictions on creativity; they only make things sound more natural. Toby |
Date | 2009-04-14 22:19 |
From | Tobiah |
Subject | [Csnd] Re: Re: Re: Re: Short Composition Challenge |
Rory Walsh wrote: > If we did that users could read in sound files which would add a whole > different aspect to the instrument, can we restrict it to any ftable > but it can only contain one cycle of a waveform? Central to the idea is that all you get is a sinewave. Hint: You can make other waveforms by summing sines with the score. Toby |
Date | 2009-04-14 22:21 |
From | Tobiah |
Subject | [Csnd] Re: Re: Short Composition Challenge |
Chuckk Hubbard wrote: > One can use any number of programs to create the score, not just one or zero? You can fly to the moon, and find the score etched in a rock. There are absolutely no restrictions on how you come up with the score. At first, I'd like to see just the scores submitted with no explanation. Later, we can share the programs or methods used to create the scores. Toby |
Date | 2009-04-14 22:24 |
From | Stéphane Rollandin |
Subject | [Csnd] Re: Short Composition Challenge |
Attachments | Tobiah's orchestra.csd |
I know I was the one who asked for one month... but, well... I couldn't resist the simplicity of your orchestra so at the end of the day I have something to submit. here it is, attached. hopefully I will have the right to make another one, will I ? :) Stef |
Date | 2009-04-14 22:48 |
From | Tobiah |
Subject | [Csnd] Re: Re: Short Composition Challenge |
Stéphane Rollandin wrote: > > I know I was the one who asked for one month... but, well... I couldn't > resist the simplicity of your orchestra so at the end of the day I have > something to submit. here it is, attached. hopefully I will have the > right to make another one, will I ? :) Great piece for an afternoon's work! This will be fun. Of course, you can make as many as you like. |
Date | 2009-04-14 23:11 |
From | Michael P Mossey |
Subject | [Csnd] Re: Short Composition Challenge |
Tobiah wrote: > Stéphane Rollandin wrote: >> >> I know I was the one who asked for one month... but, well... I >> couldn't resist the simplicity of your orchestra so at the end of the >> day I have something to submit. here it is, attached. hopefully I will >> have the right to make another one, will I ? :) > > Great piece for an afternoon's work! This will be fun. Of > course, you can make as many as you like. > We should come up with a voting scheme to determine the winner. We could list our top three favorites and assign points based on that. The composers of entries will probably give their own entry the top score, but because they are forced to choose two other pieces as well, I think it will distribute nicely in the end. Also, many who vote will not be composers of an entry. |
Date | 2009-04-15 01:56 |
From | Tobiah |
Subject | [Csnd] Re: Re: Short Composition Challenge |
Stéphane Rollandin wrote: > > I know I was the one who asked for one month... but, well... I couldn't > resist the simplicity of your orchestra so at the end of the day I have > something to submit. I'd like to change the notion that scores should be presented first, and then the programs/methods. Let's show the source code coincident with the score so that we can share the processes as they are invented. So, Stéphane if you are willing to share, would you discuss your creation of this score? Thanks, Toby |
Date | 2009-04-15 07:45 |
From | victor |
Subject | [Csnd] Re: Re: Short Composition Challenge |
Stephane, Can I post your orchestra at http://csounding.blogspot.com? Victor ----- Original Message ----- From: "Stéphane Rollandin" |
Date | 2009-04-15 08:11 |
From | Anthony Kozar |
Subject | [Csnd] Re: Short Composition Challenge |
Interesting idea to blog the challenge, but why not use Csounds.com's blogging feature? ^_^ Anthony victor wrote on 4/15/09 2:45 AM: > Stephane, > > Can I post your orchestra at http://csounding.blogspot.com? |
Date | 2009-04-15 08:17 |
From | victor |
Subject | [Csnd] Re: Re: Short Composition Challenge |
I actually forgot about it... ----- Original Message ----- From: "Anthony Kozar" |
Date | 2009-04-15 10:02 |
From | Mark Van Peteghem |
Subject | [Csnd] Re: Re: Short Composition Challenge |
Michael P Mossey wrote: > We should come up with a voting scheme to determine the winner. We > could list our top three favorites and assign points based on that. > The composers of entries will probably give their own entry the top > score, but because they are forced to choose two other pieces as well, > I think it will distribute nicely in the end. Unless they write three pieces, which is allowed by Tobiah :-) If voting is not anonymous, you could require that people don't vote for their own songs, but then maybe the composers would refuse to vote. Maybe we're just being too paranoid about people cheating in this informal contest without prizes. > Also, many who vote will not be composers of an entry. -- Mark _________________________________________ When you get lemons, you make lemonade. When you get hardware, you make software. |
Date | 2009-04-15 10:23 |
From | Stéphane Rollandin |
Subject | [Csnd] Re: Re: Re: Short Composition Challenge |
Attachments | Tobiah's orchestra.el |
Tobiah a écrit : > I'd like to change the notion that scores should be presented first, > and then the programs/methods. Let's show the source code coincident > with the score so that we can share the processes as they are invented. > > So, Stéphane if you are willing to share, would you discuss your > creation of this score? sure, the source code is attached. it is for Emacs with Csound-x. there are three kinds of chords in the piece, and they never overlap. the actual score I wrote calls three corresponding functions: 'simple-chord, 'chord, and 'slide-chord to compose the piece, I first wrote these functions roughly, then I called them with some parameters, tweaked the functions code so that I could get nice sounds, then I stopped modifying the functions and did the actual composition of the piece, this time playing with the duration and sequence of chords, and only tweaking the parameters sent to the functions. when I got the final shape of the piece, I made some last slight tweaking of the functions internals (mostly to the way they handle volume and panning) in order to dynamise the more static aspects of the sounds. now for the chord functions and what they do: function 'simple-chord just plays to instr 1 notes simultaneously. its parameters are the duration of the chord (d), the root frequency (which is not played) and two ratios. attacks and volume are different for each ratio. function 'slide-chord plays a 3 to 11 notes chord, with the following trick: each note starts with a given frequency in the chord but ends with another frequency, so that although we have the same sound at the very beginning and very end of the chord, the middle part is composed of beatings and interferences from all chord notes morphing one into another. function 'chord plays a richer chord of 3 to 11 notes. it is the "static" version of 'slide-chord (no sliding) in both 'chord and 'slide-chord, a parameter controls the attack. when it is close to 0 we get a bell-like sound. a typical gesture in the piece is a slow-starting sliding-chord followed by one or more bell-like equivalent static chords. simple-chords are interspeded about the rich chords so that they ligthen and smoothen the overall piece. the last note is very long and very simple and I think it contrasts nicely with the big masses that were preceding. about the coding process: Csound-x is the front-end I developed for Emacs: http://www.zogotounga.net/comp/csoundx.html For this piece, I did everything in a plain Emacs Lisp buffer, only writing lisp code. I never had to actually create nor edit a CSD file; the macro 'csound-composition takes care of everything. I did not have to compile anything either; every now and then, I would evaluate (csl-play-composition my-composition) to hear the piece. for debugging purposes, in order to see how the actual score was be written, I would do (csl-edit-composition my-composition) so that I could see the generated CSD file in another Emacs buffer. The subset of Csound-x used to compose the score is i.el, documented here: http://www.zogotounga.net/comp/csoundx-info.html#The%20i%20library The macro 'csound-composition is illustrated here: http://www.zogotounga.net/comp/csoundx-info.html#Csound%20Elisp as you can see in that last example, it can also generate the orchestra from lisp statements. here I just included your orchestra litteraly. that's it, I hope this helps. feel free to ask for more details... regards, Stef |
Date | 2009-04-15 10:30 |
From | Stéphane Rollandin |
Subject | [Csnd] Re: Re: Re: Short Composition Challenge |
sure, please add my name somewhere in a comment :) regards, Stef |
Date | 2009-04-15 10:31 |
From | Stéphane Rollandin |
Subject | [Csnd] Re: Re: Re: Short Composition Challenge |
> Maybe we're just being too paranoid about people cheating in this > informal contest without prizes. WHAT ? there is no prize ?! doh... I just lost my day... Stef |
Date | 2009-04-15 11:45 |
From | francibal |
Subject | [Csnd] Re: Short Composition Challenge |
Sorry, but i need some help. I've tried Your orchestra but when i use attack time set to 0 there is be no output (amplitude is 0.0). If i use any positive value (like 0.00001) it's all ok. I can't understand why (linseg allow a 0 value, no?). If someone can explain me why this appen, i will be more happy. Many thanks. francibal(do) Tobiah-3 wrote: > > I have an idea for a brief informal contest. Given a simple, > one-oscillator orchestra, provide a score which produces the > most beautiful piece. > > I offer an orchestra that I crafted for the purpose > of this event. One can make use of very limited > envelope an pan controls. Obviously, the craft will > be in the score generation program (although one is > welcome to hand edit her entry!). > > If there is interest, I suggest a seven day window > for this challenge. Only the scores should be > submitted at first. We can look at source code > later. For large scores, a URL might be best. I can host > scores if you send them to me in an archive format. > > Thanks, > > Toby > > > sr = 44100 > ksmps = 1 > nchnls = 2 > > giSineFunc ftgen 1, 0, 65536, 10, 1 > > instr 1 > > ;***** INIT SECTION ***** > iDur init p3 > iVol init p4 > iStartPitch init p5 > iEndPitch init p6 > > iAttack init p7 > iDecay init iDur - iAttack > > iPanStart init p8 > iPanEnd init p9 > > ;***** SYNTH SECTION ***** > kEnv linseg 0, iAttack, iVol, iDecay, 0 > kPitch expseg iStartPitch, iDur, iEndPitch > aSig oscili kEnv, kPitch, giSineFunc > > kPan linseg iPanStart, iDur, iPanEnd > > aLeft = aSig * kPan > aRight = aSig * (1 - kPan) > > outs aLeft, aRight > > endin > > > Send bugs reports to this list. > To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe > csound" > > -- View this message in context: http://www.nabble.com/Short-Composition-Challenge-tp23031675p23056265.html Sent from the Csound - General mailing list archive at Nabble.com. |
Date | 2009-04-15 11:49 |
From | "Dr. Richard Boulanger" |
Subject | [Csnd] Re: Short Composition Challenge |
Victor and all, In addition to the csounding blog - which is cool, Please do consider posting the .csd's and then .mp3s at cSounds.com so that they can all be feed to iTunes and appear in the musical podcasts! Dr. B. ================================================ Dr. Richard Boulanger Professor of Electronic Production and Design Music Technology Division Berklee College of Music 1140 Boylston Street Boston, MA 02135 rboulanger@berklee.edu http://csounds.com/boulanger 617-747-2485 (office) ================================================= On Apr 15, 2009, at 3:11 AM, Anthony Kozar wrote: > Interesting idea to blog the challenge, but why not use Csounds.com's > blogging feature? > > ^_^ > > Anthony > > victor wrote on 4/15/09 2:45 AM: > >> Stephane, >> >> Can I post your orchestra at http://csounding.blogspot.com? > > > > Send bugs reports to this list. > To unsubscribe, send email sympa@lists.bath.ac.uk with body > "unsubscribe csound" |
Date | 2009-04-15 14:19 |
From | Michael Gogins |
Subject | [Csnd] Re: Re: Re: Short Composition Challenge |
Again, why not use transeg? Regards, Mike On 4/14/09, Mark Van Peteghem |
Date | 2009-04-15 15:50 |
From | Michael Bechard |
Subject | [Csnd] Re: Re: Short Composition Challenge |
Seconded (especially for the podcast), and maybe prepend the title with "Sine Comp 2009" or something so that we know. Michael Bechard ----- Original Message ---- From: Dr. Richard Boulanger |
Date | 2009-04-15 21:25 |
From | '2+ |
Subject | [Csnd] Re: blog (was Re: Short Composition Challenge) |
Attachments | None |
Date | 2009-04-15 21:34 |
From | Mark Van Peteghem |
Subject | [Csnd] Re: Re: Re: Re: Short Composition Challenge |
I haven't compared expcurve with transeg, although transeg is more flexible. It actually gives me more than I need now. Michael Gogins wrote: > Again, why not use transeg? > > Regards, > Mike > > On 4/14/09, Mark Van Peteghem |
Date | 2009-04-15 22:34 |
From | Michael P Mossey |
Subject | [Csnd] Re: Re: Re: Short Composition Challenge |
Mark Van Peteghem wrote: > Michael P Mossey wrote: >> We should come up with a voting scheme to determine the winner. We >> could list our top three favorites and assign points based on that. >> The composers of entries will probably give their own entry the top >> score, but because they are forced to choose two other pieces as well, >> I think it will distribute nicely in the end. > > Unless they write three pieces, which is allowed by Tobiah :-) If voting > is not anonymous, you could require that people don't vote for their own > songs, but then maybe the composers would refuse to vote. > > Maybe we're just being too paranoid about people cheating in this > informal contest without prizes. > I'm not worried anyone will cheat, but it would be nice to have a system that makes sense... that is, whichever composition wins should really express the group consensus and not result from some quirk in the voting scheme. I attend a club's "movie night" in which a small group tries to come to a consensus about what movie to watch that evening. There are something like ten movies to choose from, and ten people doing the choosing. So first we all vote for our favorite three movies. Then the bottom half of the movies are thrown out. Then we vote for our favorite two. Again the bottom half is thrown out. Finally we vote for one. That gives a winner. |
Date | 2009-04-16 01:52 |
From | Chuckk Hubbard |
Subject | [Csnd] Re: Re: Re: Re: Short Composition Challenge |
On Thu, Apr 16, 2009 at 12:34 AM, Michael P Mossey |
Date | 2009-04-16 07:18 |
From | Michael Mossey |
Subject | [Csnd] Re: Short Composition Challenge |
Chuckk Hubbard wrote: > On Thu, Apr 16, 2009 at 12:34 AM, Michael P Mossey > |
Date | 2009-04-27 19:33 |
From | mark jamerson |
Subject | [Csnd] Re: Short Composition Challenge |
Here is the link to my entry for Tobiah's Short Composition Challange, which I posted on Csounds.com as a blog. http://www.csounds.com/node/373 This was a fun challenge which gave me an opportunity to try out some new techniques, specifically score generation with Python. Thanks for the challenge, Tobiah. Mark Jamerson |
Date | 2009-04-27 20:25 |
From | Rory Walsh |
Subject | [Csnd] Re: Re: Short Composition Challenge |
Very nice Mark. It seems to me that most people stay away from editing scores manually these day. I think all the submissions to this little challenge have all used some type of score generation system. Rory. 2009/4/27 mark jamerson |
Date | 2009-04-27 20:54 |
From | mark jamerson |
Subject | [Csnd] Re: Re: Re: Short Composition Challenge |
Thanks, Rory. I astually started the challenge by hand inputting the score, and I quickly learned why most people use a score generator. I usually edit scores manually, but I tailor my instruments to having as few p-fields as possible, thus speeding up the process. Mark ----- Original Message ---- From: Rory Walsh |
Date | 2009-04-27 21:04 |
From | Rory Walsh |
Subject | [Csnd] Re: Re: Re: Re: Short Composition Challenge |
Whatever you've done it's worked a treat. I hope I get some time to do my own! 2009/4/27 mark jamerson |