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.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 11013 - 11042 of 11910   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
11013
Do you mean yieldingCoros returns a list? Exception: Scheduler does not respond to 'yieldingCoroutines' ... Scheduler yieldingCoroutines actor.io 7 I...
peeandnong
Offline Send Email
Nov 1, 2008
9:13 am
11014
I installed libsgml as described in another post. IO builds fine and all of the samples in samples/misc appear to work....
peeandnong
Offline Send Email
Nov 1, 2008
9:25 am
11015
The Socket addon does not build. source/IoEvent.h:17:19: error: event.h: No such file or directory This is fixed by loading the asynchronous event notification...
peeandnong
Offline Send Email
Nov 1, 2008
12:18 pm
11016
Dear Io lovers, I just wonder what's the status of the gtk+ or gnome bindings for Io. AFAIKT the version on http://rtfm.insomnia.org/~qg/iogtk/ is based on...
Friedrich
friedrichdom...
Offline Send Email
Nov 10, 2008
8:29 am
11017
Haven't posted for a year(s?), just curious about people's opinion on boolean operations and how most languages have overloaded them. Should "nothing or ...
Mike Austin
mike_ekim
Offline Send Email
Nov 14, 2008
6:07 am
11018
On trying to compile Io, running "make test" gave me this: ./_build/binaries/io_static ../libs/iovm/tests/correctness/run.io || true ...
str1442
lancerstr@...
Send Email
Nov 15, 2008
2:09 pm
11019
On trying to compile Io, running "make test" gave me this: ./_build/binaries/io_static ../libs/iovm/tests/correctness/run.io || true ...
str1442
lancerstr@...
Send Email
Nov 15, 2008
2:47 pm
11020
Got this Error on iolanguage.com by trying to open the "Issues" Link: Exception: compile error: expected a message but instead found a open group character ...
str1442
lancerstr@...
Send Email
Nov 16, 2008
8:16 pm
11021
... Hey Mike, I've changed the boolean comparison operations to all return a boolean. - Steve...
Steve Dekorte
stevedekorte
Offline Send Email
Nov 18, 2008
5:53 am
11022
... Hey how's it going Steve? I meant this to be more of a debate, but I guess irc is where to go now. For example, this logic can be useful: x = value or 1 ...
Mike Austin
mike_ekim
Offline Send Email
Nov 18, 2008
9:48 am
11023
... Let me ask again, does anyone know about work in this area? Regards Friedrich -- Q-Software Solutions GmbH; Sitz: Bruchsal; Registergericht: Mannheim ...
Friedrich
friedrichdom...
Offline Send Email
Nov 18, 2008
11:50 am
11024
... On a different, but related topic: a := list(1, 2, 3) a at(50) => nil, no exception a atPut(50, 1) => exception: index out of bounds Any reason why at()...
Mike Austin
mike_ekim
Offline Send Email
Nov 18, 2008
11:23 pm
11025
... Because atPut() tends to assume the location exists while at() is often most conveniently used for both access and existence testing. I suppose we could...
Steve Dekorte
stevedekorte
Offline Send Email
Nov 19, 2008
1:48 am
11026
... It makes sense to me the way it already is, and I don't think we need a new method. Maybe it just needs slightly more extensive documentation....
quercerandjanath
quercerandja...
Offline Send Email
Nov 19, 2008
1:57 am
11027
... Considering the dynamic nature of Io, perhaps a better solution is to selectively request an exception in the event of an error: aList...
Samuel A. Falvo II
falvosa
Offline Send Email
Nov 19, 2008
6:16 am
11028
... documentation. ... Sounds good to me. Although wouldn't it be more consistent to call it exceptIfNil?...
quercerandjanath
quercerandja...
Offline Send Email
Nov 19, 2008
9:37 am
11029
I don't think this needs to be added to Io. You can always just: l := list(0,1,2); value := l at(3) ifNil(Exception raise("boom")) or if your list contains...
Rich Collins
richwcollins
Offline Send Email
Nov 19, 2008
6:20 pm
11030
... I didn't say it had to be added to Io. I said to exploit the dynamic nature of Io (meaning, add it yourself as needed). :) ... which is why I suggested...
Samuel A. Falvo II
falvosa
Offline Send Email
Nov 19, 2008
6:32 pm
11031
It's been a long long while for me, but can't a list hold Nil values? Perhaps the point is to distinguish it from an invalid key? How does at, atPut, etc....
Kevin Edwards
edwakev
Offline Send Email
Nov 19, 2008
7:13 pm
11032
I don''t think the unusual case of accessing a list that possibly contains nil values with the possibility of using an out of bounds index warrants additional...
Rich Collins
richwcollins
Offline Send Email
Nov 19, 2008
7:21 pm
11033
... Maybe the issue is that "at" is used in places where "contains" is more appropriate: if (list contains(MODE_X), obj useModeX ) And if you want "the index...
Mike Austin
mike_ekim
Offline Send Email
Nov 20, 2008
5:49 am
11034
... Lua's tables do a nice job of handling this: http://lua-users.org/wiki/TablesTutorial...
Steve Dekorte
stevedekorte
Offline Send Email
Nov 20, 2008
8:14 am
11035
... Ahh, interesting. One thing I find odd is: "Note, there is no guarantee as to the order in which keys will be stored in a table when using dictionaries so...
Mike Austin
mike_ekim
Offline Send Email
Nov 21, 2008
3:33 am
11036
... stored in a ... using pairs() ... of the ... and has only ... There are extensions to lua (I think metalua is one, IIRC) that change this so that you can...
quercerandjanath
quercerandja...
Offline Send Email
Nov 21, 2008
4:34 am
11037
Hi Friedrich, ... as far as I know, no further work was done on the gtk+ binding after it was created. So it probably is not up to date anymore. ~ MK...
Manfred Kröhnert
atomixx42@...
Send Email
Nov 21, 2008
8:31 pm
11038
http://github.com/stevedekorte/io/graphs/impact...
Steve Dekorte
stevedekorte
Offline Send Email
Nov 24, 2008
10:48 pm
11039
Hi all, I've been tracking io for a short while now and very recently, I've noticed that I'm unable to build the socket addon. I've followed the instructions...
aadi.deshpande
Offline Send Email
Nov 24, 2008
11:53 pm
11040
Which version of libevent do you have installed? Is it the latest?...
Steve Dekorte
stevedekorte
Offline Send Email
Nov 24, 2008
11:57 pm
11041
Hi Steve, Thanks for the pointer. I had libevent 1.3.0 installed and once I updated to libevent 1.4.8 , I was able to move along smoothly. If I could be...
aadi.deshpande
Offline Send Email
Nov 25, 2008
4:01 pm
11042
I added an example to my github repo: git://github.com/richcollins/io.git...
Rich Collins
richwcollins
Offline Send Email
Nov 25, 2008
6:24 pm
Messages 11013 - 11042 of 11910   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

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