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

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

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 9187 - 9216 of 11910   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
9187
Hello List! How can I use Objects that are not in the core, e.g. Math.Vector? The command autoImportResources that is used in some examples is not recognized...
Robert Brandner
robert.brandner@...
Send Email
Jul 1, 2006
7:33 pm
9188
Hi, Io used to ship with the following sample code as an implementation of generators: Generator := Object clone Generator value := 0 Generator input := 0 ...
Csaba Henk
dzsekijo
Offline Send Email
Jul 1, 2006
9:09 pm
9189
... Math.Vector? Do you mean Vector? If you want to use Vector, you'll need to use ioServer or ioDesktop (those are the only bins with it built in). As far as...
Jeremy Tregunna
jtregunna_io
Offline Send Email
Jul 2, 2006
5:24 am
9190
... <CLIP> ... Your code is in need of some work (or at least, how I would have written it). Here's my version (works as expected with latest Io): // clip here...
Jeremy Tregunna
jtregunna_io
Offline Send Email
Jul 2, 2006
6:03 am
9191
... Thanks, very nice! ... Yes, I have both. Let's start with the most weird of them: The code works as expected with the io binary, but gets blocked before...
Csaba Henk
dzsekijo
Offline Send Email
Jul 2, 2006
7:22 am
9192
... Interesting; seems to be a problem with Ranges. If you change line 12 to read: for(i, 0, 1000, instead, it works as expected with ioServer / ioDesktop. ...
Jeremy Tregunna
jtregunna_io
Offline Send Email
Jul 2, 2006
8:30 am
9193
... Fine. So now that it works, I have the following questions: - If I'm not careful, I might end up with "Scheduler: nothing left to resume so we are exiting"...
Csaba Henk
dzsekijo
Offline Send Email
Jul 2, 2006
8:34 pm
9194
... It's hard to answer your questions without showing the code that you wrote for the different implementations. Are you able to share? Chris. -- ...
Chris Double
doublecnz
Offline Send Email
Jul 2, 2006
9:23 pm
9195
Hello, List! I'm learning Io right now and to do that I want to write a Jabber/XMPP bot in it. In order to achieve that, I first need a tool to work with ...
Danya
me.dendik@...
Send Email
Jul 2, 2006
9:31 pm
9196
... Without the code, I can't say, but my first guess would be that the bottle neck is not the coroutines. On a side note, what is the practical use of...
Steve Dekorte
stevedekorte
Offline Send Email
Jul 3, 2006
1:31 am
9197
(1) If I do ... f := File clone setPath("./test.txt") f open 500 repeat(f write("test\n")) ... I get this: ... Coroutine pauseCurrentAndResumeSelf...
Jon Kleiser
jon_kleiser
Offline Send Email
Jul 4, 2006
2:50 pm
9198
I experienced the same issues with Haemus (my IRC bot) just yesterday. ... -- Jeremy Tregunna jtregunna@... "One serious obstacle to the adoption of...
Jeremy Tregunna
jtregunna_io
Offline Send Email
Jul 4, 2006
6:41 pm
9199
... Thanks for the bug report. I'm unable to repeat this on Mac OS X 10.4.6. Are you on PPC or x86? - Steve...
Steve Dekorte
stevedekorte
Offline Send Email
Jul 4, 2006
11:01 pm
9200
... I'm on a G5 PPC. /Jon...
Jon Kleiser
jon_kleiser
Offline Send Email
Jul 5, 2006
7:27 am
9201
... Ok, that's what I'm testing on too. Can you try it on today's release? - Steve...
Steve Dekorte
stevedekorte
Offline Send Email
Jul 5, 2006
9:20 am
9202
... I get the same problems (1 & 2) with IoFull-2006-07-04 (ioDesktop built from source on my G5). When I tried to launch binaries/ioDesktop, in ...
Jon Kleiser
jon_kleiser
Offline Send Email
Jul 5, 2006
10:59 am
9203
Hi list, ... Here are the code samples: http://creo.hu/~csaba/tmp/visible/oneHundredThousandGen/ Apart from the aforementioned ones, I added a sample with...
Csaba Henk
dzsekijo
Offline Send Email
Jul 5, 2006
1:14 pm
9204
... To do that, you might want to do something more like: n := 100000 s := Date secondsToRun(a := method(n repeat(yield)); coroDo(a); a) writeln((n*2/s) floor,...
Steve Dekorte
stevedekorte
Offline Send Email
Jul 5, 2006
9:19 pm
9205
... When I run it, I get a file with 2500 bytes. Maybe you didn't delete the test file before running your test? Can anyone else repeat Jon's tests and results...
Steve Dekorte
stevedekorte
Offline Send Email
Jul 5, 2006
9:45 pm
9206
IoServer on Linux works for me. Has anyone managed to reproduce this failure under Linux/BSD? Thanks, Jonathan....
Quag
quagath
Offline Send Email
Jul 5, 2006
11:48 pm
9207
... I just get about 40,000 - 50,000. I wonder what this might depend on? Raw CPU power? Architecture/platfrom? Compile flags? This rate means a 4.5-5 sec...
Csaba Henk
dzsekijo
Offline Send Email
Jul 6, 2006
11:57 am
9208
Quick question - is it possible to pause/resume the whole of Io, i.e. a function that is called from C, runs every active coro until it has yielded, then...
Peter Hull
peterhull90
Offline Send Email
Jul 7, 2006
10:27 am
9209
... Hi Peter, Yes. When you're in C, you can get a reference to the current coroutine by calling: IoCoroutine *currentCoro = IoState_currentCoroutine(ioState);...
Steve Dekorte
stevedekorte
Offline Send Email
Jul 7, 2006
4:17 pm
9210
Here is the test code: Receiver := Object clone do ( forward := method ( call message arguments println ) ) Receiver perform("test_method", "abc", "123") # ->...
Yen-Ju Chen
yjchenx
Offline Send Email
Jul 9, 2006
6:16 pm
9211
... perform happens to be a slot on Object. Object is obviously a prototype of Receiver still. ... test_method is not found so what Io does it invoke the first...
Brian Mitchell
brian@...
Send Email
Jul 9, 2006
9:02 pm
9212
... Thanx. It works, but not pretty. Then let me rephrase my problem. I would like to execute any arbitrary string as method on a given object, say Receiver. s...
Yen-Ju Chen
yjchenx
Offline Send Email
Jul 10, 2006
3:20 pm
9213
... To answer my own question: doString() is enough....
Yen-Ju Chen
yjchenx
Offline Send Email
Jul 11, 2006
4:38 am
9214
... doString will invoke the compiler and create a Message object which is inefficient. You can avoid this by reusing a message object: someObject...
Steve Dekorte
stevedekorte
Offline Send Email
Jul 11, 2006
8:32 am
9215
... I have now built IoFull-2006-07-04 on my old G4 Mac (with 10.4.6), and the results seem to be the same, i.e. I get the "Exception: AsyncRequest error" when...
Jon Kleiser
jon_kleiser
Offline Send Email
Jul 11, 2006
9:30 am
9216
Hi Jon, ... I believe that Steve has pushed out a number of patches which resolve the AsyncRequest error issues. Jonathan....
Quag
quagath
Offline Send Email
Jul 11, 2006
10:21 am
Messages 9187 - 9216 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