Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

iolanguage · Io

The Yahoo! Groups Product Blog

Check it out!

Group Information

? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

Messages

Advanced
Messages Help
Messages 229 - 258 of 13333   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
229 Mike
mike_ekim Send Email
Oct 4, 2002
5:08 pm
If primitives had an addSlot() method, you could do: time = 2 months + 1 day + 25 min length = 1 foot + 2 in + (1/16) in Is this really useful? Maybe. ...
230 Steve Dekorte
stevedekorte Send Email
Oct 6, 2002
2:19 am
... That's a cool use of primitive extensions. I've thought about it some more, and I'm thinking of adding an addParent() method for primitives that would...
231 Steve Dekorte
stevedekorte Send Email
Oct 6, 2002
2:21 am
... Actually, that won't work at all. :-[ I need to think about it a bit more. Steve...
232 Steve Dekorte
stevedekorte Send Email
Oct 6, 2002
2:21 am
I've got a version of Io working with an incremental garbage collector(tri-color, write barrier). So far it's ~15% slower than the mark and sweep version which...
233 Steve Dekorte
stevedekorte Send Email
Oct 15, 2002
5:22 am
Beta Release 2002 10 14 ======================= - fixed bug with coro resume/pause - moved to incremental garbage collector(tri-color, write barrier) - about...
234 Steve Dekorte
stevedekorte Send Email
Oct 28, 2002
7:57 am
Beta Release 2002 10 27 ======================= - Object - added "?" operator method - ? means send if the target responds to the method - example: ?foo is...
235 Steve Dekorte
stevedekorte Send Email
Oct 28, 2002
8:00 am
... That's a good idea. I need to give it some more thought. Cheers, Steve...
236 Steve Dekorte
stevedekorte Send Email
Nov 1, 2002
1:13 pm
Beta Release 2002 11 01 ======================= - added String and Buffer foreach methods - major performance improvement for incremental garbage collector ...
237 Steve Dekorte
stevedekorte Send Email
Nov 9, 2002
1:08 am
http://www.dekorte.com/Software/C/Io/releases/Io-2002-11-08.tgz Beta Release 2002 11 08 ======================= - added distributed objects example code - fix...
238 Steve Dekorte
stevedekorte Send Email
Nov 9, 2002
7:15 pm
http://www.dekorte.com/Software/C/Io/releases/Io-2002-11-09.tgz Beta Release 2002 11 09 ======================= - added Chris Double's patch for Symbian...
239 Mike
mike_ekim Send Email
Nov 11, 2002
8:05 am
Distributed objects in a page of code! That's the way it should be. I played around with CORBA a while back and, said... I don't think so. Then you've got...
240 Steve Dekorte
stevedekorte Send Email
Nov 11, 2002
8:41 am
... In 96 I worked for a company that purchased that CORBA spec books. When stacked(covers upward), they were about 6 feet tall! ... I use null terminated...
241 Mike
mike_ekim Send Email
Nov 11, 2002
3:32 pm
I've got ServerTest.io running at 64.121.74.198/8456 if you have not tested against an Intel box. Hmm, what can we do with this :) Mike ... be. ... think so. ...
242 Steve Dekorte
stevedekorte Send Email
Nov 11, 2002
6:09 pm
... Networked gaming, remote debuggers, distributed databases... Cheers, Steve OSX freeware and shareware: http://www.dekorte.com/downloads.html...
243 Steve Dekorte
stevedekorte Send Email
Nov 11, 2002
6:14 pm
... I forgot to add the target id to these examples - add 2 bytes to each. s NULL 0 NULL test NULL s NULL 0 NULL Number NULL 1 NULL The object ids should...
244 Mike
mike_ekim Send Email
Nov 14, 2002
9:28 pm
I'm starting to write my Inertia GUI in Io, and now using more inheritance than before. Is it valid to call 'super init() from init (), for example: Visual...
245 Steve Dekorte
stevedekorte Send Email
Nov 14, 2002
11:40 pm
... Mike, It seems to work ok for me. The following does at least. Can you send me a small example of the problem? ... a = Object clone a init = block(v1, v2,...
246 Mike
mike_ekim Send Email
Nov 15, 2002
12:25 am
I found the problem - I was not taking into account the nature of prototypes. I was using init() in the wrong scope. "Window = Visual clone" invokes...
247 Steve Dekorte
stevedekorte Send Email
Nov 15, 2002
1:22 am
... I think I understand - you expected init to only be applied to "instances&quot; but all objects are instances in a prototype based system. When does this cause...
248 Mike
mike_ekim Send Email
Nov 15, 2002
2:05 am
... Not exactly. It's just in this case Visual.init should not be called until an instance of it is created. It was adding variables to Window, AND to...
249 Steve Dekorte
stevedekorte Send Email
Nov 15, 2002
3:42 am
... Very cool! Cheers, Steve OSX freeware and shareware: http://www.dekorte.com/downloads.html...
250 Steve Dekorte
stevedekorte Send Email
Nov 15, 2002
6:13 am
http://www.dekorte.com/Software/C/Io/releases/Io-2002-11-14.tgz Beta Release 2002 11 14 ======================= - lots of documentation corrections by Sean...
251 Mike
mike_ekim Send Email
Nov 15, 2002
9:54 am
Maybe I'm just tired, but I can't seem to get the right parent assigned. I want to set an object's parent to the receiver's instance: Visual addChild = block(...
252 Steve Dekorte
stevedekorte Send Email
Nov 15, 2002
6:42 pm
... Hey Mike, This example seems to work for me: Visual = Object clone Visual addChild = block(child, child parent = self) Window = Visual clone Window...
253 Sean Perry by way of...
shalehperry Send Email
Nov 15, 2002
11:02 pm
Io> d = Date clone <<Date 0x806bb98>> Io> d asString print 2002-11-15 13:53:22 PST<"2002-11-15 13:53:22 PST" 0x806c4a8> Io> d fromString("%a %b %d %H:%M", "Wed...
254 Steve Dekorte
stevedekorte Send Email
Nov 15, 2002
11:42 pm
On Friday, November 15, 2002, at 03:02 PM, Sean Perry (by way of Sean ... Nice feature. Thanks Sean! ... Do you mean argument type checking? If so, the ...
255 Sean Perry
shalehperry Send Email
Nov 15, 2002
11:51 pm
... no, I mean "this function requires two args, silly" type errors without using an assert. Or is that how Io usually handles it? ... it should be portable,...
256 Sean Perry
shalehperry Send Email
Nov 16, 2002
12:22 am
So I compiled and tested (briefly) Io on NetBSD. The tests/ directory ran fine as did my new addition to the Date object. the addons directory however was...
257 Steve Dekorte
stevedekorte Send Email
Nov 16, 2002
12:30 am
... Ah, you mean something like?: void IoMessage_assertArgCount(IoMessage *m, int count); I like that idea. ... That's a good idea. Cheers, Steve OSX freeware...
258 Sean Perry
shalehperry Send Email
Nov 16, 2002
12:47 am
... yeah the idea is to throw a useful exception rather than a simple assert. Having the ability to runtime call methods and check the arity via exceptions can...
Messages 229 - 258 of 13333   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

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