Page 1 of 3 123 LastLast
Results 1 to 10 of 21

Thread: Techie board vs Platform 3

  1. #1
    Join Date
    Dec 2010
    Posts
    3,134

    Default Techie board vs Platform 3

    I'm not sure that the arrangement which has moved some threads of a technical nature to a separate area is really working well. Surely for some people it's more relevant to their enjoyment of music than Platform 3, yet it is harder to find. I've just posted a new thread on the use of iPads for high resolution downloads, but the current layout of the boards will mean that probably no one will find it unless I use one of the beeb's modern day favourites, and "trail" it here on Platfom 3.

  2. #2
    Join Date
    Nov 2010
    Posts
    6,904

    Default

    This , on the other hand
    belongs in here
    so anyone wanting a Supercollider Theremin


    //////// the theremin ////////

    // playing only one instance:
    (
    play(
    {
    var f;
    f = MouseY.kr(4000, 200, 'exponential', 0.8);
    SinOsc.ar(
    freq: f+ (f*SinOsc.ar(7,0,0.02)),
    mul: MouseX.kr(0, 0.9)
    )
    }
    )
    )


    // building a synthdef and spawning separate synths

    (
    SynthDef(\theremin, { arg mod = 7, detune = 0;
    var f, a, z;
    f = MouseY.kr(4000, 200, 'exponential', 0.8) + detune;
    a = SinOsc.ar(f + (f * SinOsc.ar(mod,0,0.02)), mul: MouseX.kr(0, 0.9));
    z = Mix.ar(a);
    Out.ar(0, z) + Out.ar(1, z)
    }).add
    )

    a = Synth(\theremin);
    a.set(\mod, 12);

    b = Synth(\theremin);
    b.set(\mod, 5, \detune, 200);

    a.free;
    b.free;

  3. #3
    Join Date
    Nov 2010
    Location
    Near Glasgow
    Posts
    540

    Default

    Quote Originally Posted by Dave2002 View Post
    I'm not sure that the arrangement which has moved some threads of a technical nature to a separate area is really working well. Surely for some people it's more relevant to their enjoyment of music than Platform 3, yet it is harder to find. I've just posted a new thread on the use of iPads for high resolution downloads, but the current layout of the boards will mean that probably no one will find it unless I use one of the beeb's modern day favourites, and "trail" it here on Platfom 3.
    As someone who always starts by clicking on "What's New" and then checking out any threads which are likely to be of interest to me, I found your post without difficulty. I'm not sure that I understand it all, but my wife has an iPad and I might just experiment with it.

  4. #4
    Join Date
    Feb 2007
    Location
    Bristol, UK
    Posts
    8,616

    Default

    One of the ideas was that it was a more convenient way of keeping techie threads which people might want to check back on later in a more manageable form. These get lost on Platform 3.

    I do as Curalach does and check on What's New? which should show up the thread titles which have been added to since you last looked. I'd be interested to know if many people mainly click on particular forums which just have the restricted list.

  5. #5
    Join Date
    Nov 2010
    Location
    South of England
    Posts
    1,536

    Default

    Quote Originally Posted by Curalach View Post
    As someone who always starts by clicking on "What's New" and then checking out any threads which are likely to be of interest to me[...]
    I do this too, and perhaps naively, assume most people would. I proposed the Techie Board so it would be easier to retrieve informative posts once the thread has ceased to attract new posts.

  6. #6
    Join Date
    Nov 2010
    Posts
    6,904

    Default

    Quote Originally Posted by kernelbogey View Post
    I do this too, and perhaps naively, assume most people would. I proposed the Techie Board so it would be easier to retrieve informative posts once the thread has ceased to attract new posts.
    Me too

  7. #7
    Join Date
    Nov 2010
    Posts
    2,583

    Default

    Quote Originally Posted by Curalach View Post
    As someone who always starts by clicking on "What's New" and then checking out any threads which are likely to be of interest to me
    Me too.
    Whenever people agree with me I always feel I must be wrong.
    Oscar Wilde

  8. #8
    Join Date
    Nov 2010
    Location
    East Sussex
    Posts
    2,151

    Default

    Quote Originally Posted by Curalach View Post
    As someone who always starts by clicking on "What's New" and then checking out any threads which are likely to be of interest to me ...
    Same here.

  9. #9

    Default

    Yep, me, too! (I only use the general Forum area if I want to start a thread or to find an old topic.)

  10. #10
    Join Date
    Nov 2010
    Location
    S.E. England
    Posts
    5,226

    Default

    I check on 'What's New' but only get the top half of the words.

    Err, perhaps this is one for the techie thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •