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 236 - 265 of 10708   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
236
Beta Release 2002 11 01 ======================= - added String and Buffer foreach methods - major performance improvement for incremental garbage collector ...
Steve Dekorte
stevedekorte
Offline Send Email
Nov 1, 2002
1:13 pm
237
http://www.dekorte.com/Software/C/Io/releases/Io-2002-11-08.tgz Beta Release 2002 11 08 ======================= - added distributed objects example code - fix...
Steve Dekorte
stevedekorte
Offline Send Email
Nov 9, 2002
1:08 am
238
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...
Steve Dekorte
stevedekorte
Offline Send Email
Nov 9, 2002
7:15 pm
239
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...
Mike
mike_ekim
Offline Send Email
Nov 11, 2002
8:05 am
240
... 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...
Steve Dekorte
stevedekorte
Offline Send Email
Nov 11, 2002
8:41 am
241
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. ...
Mike
mike_ekim
Offline Send Email
Nov 11, 2002
3:32 pm
242
... Networked gaming, remote debuggers, distributed databases... Cheers, Steve OSX freeware and shareware: http://www.dekorte.com/downloads.html...
Steve Dekorte
stevedekorte
Offline Send Email
Nov 11, 2002
6:09 pm
243
... 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...
Steve Dekorte
stevedekorte
Offline Send Email
Nov 11, 2002
6:14 pm
244
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...
Mike
mike_ekim
Offline Send Email
Nov 14, 2002
9:28 pm
245
... 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,...
Steve Dekorte
stevedekorte
Offline Send Email
Nov 14, 2002
11:40 pm
246
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...
Mike
mike_ekim
Offline Send Email
Nov 15, 2002
12:25 am
247
... I think I understand - you expected init to only be applied to "instances" but all objects are instances in a prototype based system. When does this cause...
Steve Dekorte
stevedekorte
Offline Send Email
Nov 15, 2002
1:22 am
248
... 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...
Mike
mike_ekim
Offline Send Email
Nov 15, 2002
2:05 am
249
... Very cool! Cheers, Steve OSX freeware and shareware: http://www.dekorte.com/downloads.html...
Steve Dekorte
stevedekorte
Offline Send Email
Nov 15, 2002
3:42 am
250
http://www.dekorte.com/Software/C/Io/releases/Io-2002-11-14.tgz Beta Release 2002 11 14 ======================= - lots of documentation corrections by Sean...
Steve Dekorte
stevedekorte
Offline Send Email
Nov 15, 2002
6:13 am
251
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(...
Mike
mike_ekim
Offline Send Email
Nov 15, 2002
9:54 am
252
... Hey Mike, This example seems to work for me: Visual = Object clone Visual addChild = block(child, child parent = self) Window = Visual clone Window...
Steve Dekorte
stevedekorte
Offline Send Email
Nov 15, 2002
6:42 pm
253
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...
Sean Perry by way of...
shalehperry
Offline Send Email
Nov 15, 2002
11:02 pm
254
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 ...
Steve Dekorte
stevedekorte
Offline Send Email
Nov 15, 2002
11:42 pm
255
... 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,...
Sean Perry
shalehperry
Offline Send Email
Nov 15, 2002
11:51 pm
256
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...
Sean Perry
shalehperry
Offline Send Email
Nov 16, 2002
12:22 am
257
... 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...
Steve Dekorte
stevedekorte
Offline Send Email
Nov 16, 2002
12:30 am
258
... 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...
Sean Perry
shalehperry
Offline Send Email
Nov 16, 2002
12:47 am
259
... I just took a look and there's already a: IoMessage *IoMessage_assertArgCount_(IoMessage *self, int n); Which seems to do the right thing. I guess I just...
Steve Dekorte
stevedekorte
Offline Send Email
Nov 16, 2002
1:02 am
260
On Fri, 15 Nov 2002 15:51:18 -0800, "Sean Perry" ... It's not available on Symbian, but then not a lot in the way of POSIX is. I can probably do a workaround...
Chris Double
chris.double@...
Send Email
Nov 16, 2002
6:51 am
261
... If you want to take that approach, that seems fine. Or we could take the approach I suggested of grabbing the NetBSD (or another BSD) strptime function...
Sean Perry
shalehperry
Offline Send Email
Nov 16, 2002
7:41 pm
262
Logged into a friends open bsd box this morning and ran make and make test, both succeeded. Once again, bsd make could not handle the addons/ directory but...
Sean Perry
shalehperry
Offline Send Email
Nov 16, 2002
11:09 pm
263
... Thanks for all the testing. I'll have to fix the addons makefile. So far it looks like Io runs on: OSX (Darwin/PPC) Windows(cygwin) Symbian RedHat Linux...
Steve Dekorte
stevedekorte
Offline Send Email
Nov 17, 2002
12:19 am
264
http://www.dekorte.com/Software/C/Io/releases/Io-2002-11-16.tgz Beta Release 2002 11 16 ======================= - updated Docs (lots of changes) - Date - added...
Steve Dekorte
stevedekorte
Offline Send Email
Nov 17, 2002
4:30 am
265
I don't know if OS/X uses these parameters by default, but windows sure doesn't and looks terrible without them. I manually add them in each release I...
Mike
mike_ekim
Offline Send Email
Nov 17, 2002
7:14 am
Messages 236 - 265 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