[mochikit] Re: Activity

2007-10-08 Thread Kevin Kaiser

Wouldn't the solution just be to update mochikit.com to indicate that
the project is stable, maintained silently in the background and isn't
seeking to do active, steady releases due to already fulfilling its
original function?

A lot of software projects end up growing out of control after too
many contributions, and one reason that I personally stick with
MochiKit is that it's not constantly being reinvented as something
bigger, better, more encompassing. It's also not advertised in the
same way as Prototype, et al. In fact, I was more of a fan of
MochiKit's identity when I first discovered it and the tagline was
something to the effect of MochiKit helps you get shit done, fast;
it sounded more efficient and DIY when compared to the alternatives,
and frankly exuded more confidence than makes javascript suck less.

I'd rather get shit done faster than just suck a little bit less.

-Kevin


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
MochiKit group.
To post to this group, send email to mochikit@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/mochikit?hl=en
-~--~~~~--~~--~--~---



[mochikit] twoDigitFloat bug

2007-10-08 Thread Pedro Belo

Hey guys,

I'm running into something that looks like a floating point problem,
but I'm not sure about what can be done about it.

The thing is: twoDigitFloat(568.80) returns 568.79. Just tested
against the trunk, too.

I've created a ticket in case anyone comes with a solution:
http://trac.mochikit.com/ticket/275

Thanks,
Pedro


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
MochiKit group.
To post to this group, send email to mochikit@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/mochikit?hl=en
-~--~~~~--~~--~--~---



[mochikit] Re: twoDigitFloat bug

2007-10-08 Thread Bob Ippolito

That's how floats work, 568.80 is represented internally as (roughly)
567.7999. numberFormatter rounds though, you can use
numberFormatter(#.##)(568.80) which should give you what you want.

On 10/8/07, Pedro Belo [EMAIL PROTECTED] wrote:

 Hey guys,

 I'm running into something that looks like a floating point problem,
 but I'm not sure about what can be done about it.

 The thing is: twoDigitFloat(568.80) returns 568.79. Just tested
 against the trunk, too.

 I've created a ticket in case anyone comes with a solution:
 http://trac.mochikit.com/ticket/275

 Thanks,
 Pedro


 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
MochiKit group.
To post to this group, send email to mochikit@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/mochikit?hl=en
-~--~~~~--~~--~--~---