weepy / o_O

Funnyface: HTML binding for teh lulz
http://weepy.github.com/o_O/
MIT License
150 stars 11 forks source link

put on npm #38

Open weepy opened 12 years ago

weepy commented 12 years ago

when we get to 1.0

tormodvm commented 9 years ago

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

weepy commented 9 years ago

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

On Fri, Oct 17, 2014 at 10:09 AM, TeddyBones notifications@github.com 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.

tormodvm commented 9 years ago

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.

weepy commented 9 years ago

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 notifications@github.com 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.

tormodvm commented 9 years ago

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.

weepy commented 9 years ago

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 notifications@github.com 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.

tormodvm commented 9 years ago
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.