o_O icon indicating copy to clipboard operation
o_O copied to clipboard

put on npm

Open weepy opened this issue 13 years ago • 7 comments

when we get to 1.0

weepy avatar Apr 02 '12 17:04 weepy

Will it ever get to 1.0? Great library by the way. I love it. :)

tormodvm avatar Oct 17 '14 09:10 tormodvm

Thanks - do you want to be a contributor ??!

On Fri, Oct 17, 2014 at 10:09 AM, TeddyBones [email protected] wrote:

Will it ever get to 1.0? Great library by the way. I love it. :)

— Reply to this email directly or view it on GitHub https://github.com/weepy/o_O/issues/38#issuecomment-59487019.

weepy avatar Oct 17 '14 09:10 weepy

I don't think I have the skills, but is there a todo list somewhere of what you want to be implemented? Saw your update to 0.4.2 in the comments. Nice update.

tormodvm avatar Oct 19 '14 19:10 tormodvm

TBH it feels kinda feature complete, but then it's not used that much out in the wild AFAIK

I kinda just assumed that the alternatives must be better since they put for effort in, so I haven't "pushed it". Maybe I'm wrong ?

Jonah

On Sun, Oct 19, 2014 at 8:09 PM, TeddyBones [email protected] wrote:

I don't think I have the skills, but is there a todo list somewhere of what you want to be implemented? Saw your update to 0.4.2 in the comments. Nice update.

— Reply to this email directly or view it on GitHub https://github.com/weepy/o_O/issues/38#issuecomment-59660925.

weepy avatar Oct 19 '14 19:10 weepy

Well, I haven't found any alternatives that does a better job without giving me a big framework I don't want along with it. I think you should consider updating the docs and examples though. A basic twitter stream or something would be better than a todo-list that uses .extend everywhere. But don't listen to me, I'm just doing this as a hobby. :) I'm using it for my home made audio mixing console.

While I have you here: I can't figure out how to get computed values when using o_O.array filled with o_O.models. I can't use computed values inside models? Any hints? Sorry if this is the wrong place to ask.

tormodvm avatar Oct 19 '14 20:10 tormodvm

can you provide an example ?

what's the audio mixing console ?

... I'd be grateful of help with docs etc if you have any ideas.

On Sun, Oct 19, 2014 at 9:31 PM, TeddyBones [email protected] wrote:

Well, I haven't found any alternatives that does a better job without giving me a big framework I don't want along with it. I think you should consider updating the docs and examples though. A basic twitter stream or something would be better than a todo-list that uses .extend everywhere. But don't listen to me, I'm just doing this as a hobby. :) I'm using it for my home made audio mixing console.

While I have you here: I can't figure out how to get computed values when using o_O.array filled with o_O.models. I can't use computed values inside models? Any hints? Sorry if this is the wrong place to ask.

— Reply to this email directly or view it on GitHub https://github.com/weepy/o_O/issues/38#issuecomment-59663992.

weepy avatar Oct 19 '14 20:10 weepy

var track;
for (i=0;i<24;i++) {

    var track_model = o_O.model(
        {
            name: '',
            visibility: false,
            pan: 0,
            panWidth: function(){
                //do something with pan() value;
                //any way to do this?
            },
            volume: 0,
            autoMode: 'trim'
        }
    );
    track.push(track_model);
}

It's a tascam us-2400 that I use with reaper, osc, nodejs and an ipad. Do you play music?

I'll be glad to help with the docs, but it's hard to find time. And my code is a mess. haha.

tormodvm avatar Oct 19 '14 21:10 tormodvm