Search the web
Sign In
New User? Sign Up
iolanguage · Io
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Best of Y! Groups

   Check them out and nominate your group.

Messages

  Messages Help
Advanced
Messages 3984 - 4013 of 10708   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
3984
hi, i started to evaluate io today and went through the documentation. it has a lot of language features that are attractive to me. but when i wanted to play...
belred1
Offline Send Email
Jun 2, 2004
5:50 am
3985
There actually is a Windows binary, but it's a bit dated. It's not as dated as the docs, though, so you shouldn't be any worse off than with the current ...
Daniel Ehrenberg
littledanehren
Offline Send Email
Jun 2, 2004
9:03 pm
3986
I had previously linked an old version of the IoVM as a static lib to my win32 project. I recently updated to the latest version and am having some linking ...
toysnob
Offline Send Email
Jun 4, 2004
2:07 pm
3987
I am having an issue with a memory leak. VS.NET is reporting a leak when I shutdown my app. It seems to happen simply from running the following: IoState...
toysnob
Offline Send Email
Jun 6, 2004
2:52 pm
3988
... That's a known bug. If it's a real problem for your project, I'll hunt it down. Just let me know. Cheers, -- Steve...
Steve Dekorte
stevedekorte
Offline Send Email
Jun 6, 2004
2:56 pm
3989
Well I don't want to be a stick in your craw but I was getting close to shelving my Io script plugin for this 3D engine. It would be much appreciated if you...
toysnob
Offline Send Email
Jun 6, 2004
3:18 pm
3990
Ok, I've cleaned up the exit process. According to MallocDebug on OSX, the IoVM and IoServer now exits without leaks and IoDesktop exits with 2.6K leak in...
Steve Dekorte
stevedekorte
Offline Send Email
Jun 7, 2004
4:26 pm
3991
Thanks Steve, How do I get these changes? The download page still shows the 5/13 build date, do I need to use rsync? Thanks ... OSX, ... with ... the...
toysnob
Offline Send Email
Jun 7, 2004
10:41 pm
3992
... multiple inheritance is not in itself a bad thing - in most cases it leads to badly maintainable code, which is why many people dislike it. on the other...
Daniel Wunsch
the.gray@...
Send Email
Jun 8, 2004
1:53 pm
3993
... Would this qualify?: Object addTrait := method(t, p := if (self slotNames contains("parent"), self parent, Nil) self parent := t if (p, t parent := p) ) ...
Steve Dekorte
stevedekorte
Offline Send Email
Jun 8, 2004
2:10 pm
3994
... if i understand your code correctly, then the ColorTrait clone cannot call methods of the Dog Object and its possible other traits, so you can't really...
Daniel Wunsch
the.gray@...
Send Email
Jun 8, 2004
2:37 pm
3995
... I didn't know that was required. If so, can we just add the object as a parent to the trait clone to get the desired behavior? Object insertParent :=...
Steve Dekorte
stevedekorte
Offline Send Email
Jun 8, 2004
3:25 pm
3996
http://www.iolanguage.com/Downloads/ Release 2004 06 08 - Ion and Audio features =================================== - added editable TextField and SavePanel...
Steve Dekorte
stevedekorte
Offline Send Email
Jun 8, 2004
4:05 pm
3997
What do String before and String after do? ... __________________________________ Do you Yahoo!? Friends. Fun. Try the all-new Yahoo! Messenger. ...
Daniel Ehrenberg
littledanehren
Offline Send Email
Jun 8, 2004
4:19 pm
3998
... What's the difference between traits or mixins and multiple inhertance? In Io, everything is extremely unsafe, so you can deal with things like objects ...
Daniel Ehrenberg
littledanehren
Offline Send Email
Jun 8, 2004
4:27 pm
3999
... Here are their implementations: String before := method(s, i := self find(s) if (i == Nil, self, substring(0, i)) ) String after := method(s, i := self...
Steve Dekorte
stevedekorte
Offline Send Email
Jun 8, 2004
5:17 pm
4000
... http://www.cse.ogi.edu/~black/publications/TR_CSE_02-012.pdf ... actually ... Because slots are always looked up in the self context, it looks like Io can...
Mike Austin
mike_ekim
Offline Send Email
Jun 8, 2004
8:06 pm
4001
IoDesktop-2004-06-08 built fine on my Mac OS X 10.3.3, and I'm very pleased ;-) I've discovered a few problems though: When I do "ioDesktop test.io", I first...
Jon Kleiser
jon_kleiser
Offline Send Email
Jun 9, 2004
9:09 am
4002
... Thanks for the bug reports. The fonts have been moved. That line should be: Screen font := Font clone open("Library/Fonts/Free/Sans/Normal.ttf") ...
Steve Dekorte
stevedekorte
Offline Send Email
Jun 9, 2004
2:01 pm
4003
... Found the problem - in IoDesktop/main.c, remove the line: waiting(100000); I had put that in to cause a busy-wait pause so I could use MallocDebug after...
Steve Dekorte
stevedekorte
Offline Send Email
Jun 9, 2004
3:06 pm
4004
... Yes it does :) I am not saying, though, that messages to a contained object (Color) should always activate slots in the container (View). I am just saying ...
Felix Breuer
fbreuer98
Offline Send Email
Jun 9, 2004
8:04 pm
4005
... You mentioned this "python proposal" before. What I you referring to? I couldn't really find it in the list archives. Could you give me a pointer? Thanks, ...
Felix Breuer
fbreuer98
Offline Send Email
Jun 9, 2004
8:05 pm
4006
... I was referring to the following: If you want to set slot A of the Lobby, thus effectively adding a slot A to the lookup-path of every Object, you not only...
Felix Breuer
fbreuer98
Offline Send Email
Jun 9, 2004
8:17 pm
4007
... But isn't the reason that Object inherits from Lobby so that you can do things implicitly like x := 3 y := Object clone do( a := x ) and not have to worry...
Daniel Ehrenberg
littledanehren
Offline Send Email
Jun 9, 2004
10:00 pm
4008
See www.iolanguage.com/Library/locals.html ... __________________________________ Do you Yahoo!? Friends. Fun. Try the all-new Yahoo! Messenger. ...
Daniel Ehrenberg
littledanehren
Offline Send Email
Jun 9, 2004
10:02 pm
4009
... That's exactly what this whole discussion is all about. You can do x := 3 y := Object clone do( a := x ) but you cannot do p := Object clone do( x := 3 y...
Felix Breuer
fbreuer98
Offline Send Email
Jun 10, 2004
3:54 pm
4010
I know, but if you disconnected Lobby without doing that change (and no one's suggested a workable plan for the exact semantics), it'll only make things worse....
Daniel Ehrenberg
littledanehren
Offline Send Email
Jun 10, 2004
8:32 pm
4011
"Daniel Ehrenberg" <littledanehren@...> wrote in message news:20040610203242.1399.qmail@.... ... Could you have "lexical objects"...
Mike Austin
mike_ekim
Offline Send Email
Jun 11, 2004
6:50 am
4012
... What do you mean? __________________________________ Do you Yahoo!? Friends. Fun. Try the all-new Yahoo! Messenger. http://messenger.yahoo.com/...
Daniel Ehrenberg
littledanehren
Offline Send Email
Jun 11, 2004
11:28 am
4013
I've been experimenting a bit with Ion and the new TextView. As the Free fo= nts don't seem to have the Norwegian characters æøåÆØÅ, I've tried to use...
Jon Kleiser
jon_kleiser
Offline Send Email
Jun 11, 2004
11:33 am
Messages 3984 - 4013 of 10708   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2007 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help