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

Yahoo! Groups Tips

Did you know...
Show off your group to the world. Share a photo of your group with us.

Best of Y! Groups

   Check them out and nominate your group.

Messages

  Messages Help
Advanced
Messages 9893 - 9922 of 10708   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
9893
The online manual (guide.html) says To reverse the order of the loop, add a negative step: for(a, 0, 10, -1, a println) I think "for(a, 10, 0, -1, a println)"...
Jon Kleiser
jon_kleiser
Offline Send Email
Apr 3, 2007
7:05 pm
9894
I wanted to check out how fast "Range clone setRange(...) asList" was compared to the more traditional solution ... Io> Date cpuSecondsToRun(1000 repeat(Range...
Jon Kleiser
jon_kleiser
Offline Send Email
Apr 3, 2007
7:38 pm
9895
... Note that you're calculating the numbers from 100 to 1 twice in the former version, and it involves a lot of extra message sends, as opposed to only once...
Jeremy Tregunna
jtregunna_io
Offline Send Email
Apr 3, 2007
7:56 pm
9896
Oh, let me correct the code snippit: Io> Date cpuSecondsToRun(l := list; for(i, 0, Number constants inf, if (i > 500, break); l append(i))) ==> 0.01 Io> Date...
Jeremy Tregunna
jtregunna_io
Offline Send Email
Apr 3, 2007
8:27 pm
9897
... When I try that on my G4 (also on 10.4.9), I get even more determined! Io> Date cpuSecondsToRun(l := list; for(i, 0, Number constants inf, if(i > 500,...
Jon Kleiser
jon_kleiser
Offline Send Email
Apr 3, 2007
9:08 pm
9898
But again, that for() is cheating. It doesn't actually have the same semantics as the Range version. -- Jeremy Tregunna jtregunna@......
Jeremy Tregunna
jtregunna_io
Offline Send Email
Apr 3, 2007
9:32 pm
9899
... Well, that of course solved the problem completely. D'ough! The reason I posted this was to construct a minimal example for memory allocation bugs that I...
Jonas Eschenburg
jonas_eschen...
Offline Send Email
Apr 4, 2007
5:47 pm
9900
... On the C side, you can use the COLLECTOR_FOREACH macro: COLLECTOR_FOREACH(state->collector, v, printf("%p %s\n", (void *)v, IoObject_name(v)); );...
Steve Dekorte
stevedekorte
Offline Send Email
Apr 4, 2007
11:17 pm
9901
[from moderator - sorry for the delay in posting this - yahoo had marked it as spam for some reason] Samuel A. Falvo II wrote: [...] ... <offtopic> *rummage...
David Given
hjalfi
Offline Send Email
Apr 4, 2007
11:21 pm
9902
... MCPL can be found here: http://www.cl.cam.ac.uk/~mr10/MCPL.html Note that you can back-track to here: http://www.cl.cam.ac.uk/~mr10/index.html which is the...
Samuel A. Falvo II
falvosa
Offline Send Email
Apr 4, 2007
11:49 pm
9903
... Thanks! By the way, I noticed a rather strange behavior in IOCLONE (IoObject.c): After performing the cloning using the object's specific clone method, it...
Jonas Eschenburg
jonas_eschen...
Offline Send Email
Apr 5, 2007
3:42 am
9904
Hi, I added Io to my mercurial mirrors, see http://mercurial.creo.hu/repos/ http://mercurial.creo.hu/repos/io-hg Feel free to advertise it on the website. ...
Csaba Henk
dzsekijo
Offline Send Email
Apr 5, 2007
12:50 pm
9905
Hi everybody. I'm new to Io and reading through the source. None of the functions (in the C source) seem to be documented. Now I've heard that it might be...
Bram Neijt
bneijt@...
Send Email
Apr 5, 2007
3:49 pm
9906
The Io-2007-04-07.tar.gz (both "us east" and "us west") is only 20 bytes. /Jon...
Jon Kleiser
jon_kleiser
Offline Send Email
Apr 10, 2007
7:22 am
9907
... Thanks - I've fixed it. - Steve...
Steve Dekorte
stevedekorte
Offline Send Email
Apr 10, 2007
11:10 am
9908
I opened Korean Io user forum: http://iolanguage.kr/...
Min-hee Hong
gorisdahlia
Offline Send Email
Apr 13, 2007
3:34 pm
9909
I'm totally disappointed. I've been impressed by the texts, the images. I've downloaded the win32 binairies. I can't run a single sample. I keep getting...
noagbodjivictor
Offline Send Email
Apr 14, 2007
9:08 am
9910
... Hi noagbodjivictor. There are about 100 sample files. Which one(s) did you run and what exactly was the error that was printed?...
Steve Dekorte
stevedekorte
Offline Send Email
Apr 14, 2007
11:12 am
9911
I've tried a lot. Specially those from the Flux and OpenGL directory. The error message as I've said above is : Exception: Object does not respond to "Flux" or...
victor NOAGBODJI
noagbodjivictor
Offline Send Email
Apr 14, 2007
1:22 pm
9912
Actually, I'm having similar problems when I'm trying to play with the ObjC integration, though it may be unrelated as I seem to be getting a bit further. Io...
oliver.mooney
Offline Send Email
Apr 14, 2007
6:00 pm
9913
... Ok, and are those addons compiled and installed?...
Steve Dekorte
stevedekorte
Offline Send Email
Apr 14, 2007
8:30 pm
9914
Yes they are. I got them from the website: http://homepage.mac.com/jamesrburgess/Stuff/. But it doesn't matter now. It seems that there is no real support for...
victor NOAGBODJI
noagbodjivictor
Offline Send Email
Apr 14, 2007
8:38 pm
9915
... Objc syntax has been broken from some time. However I have a patch to fix it and improve border cases support :-) I have another useful patch to avoid...
Quentin Mathé
qmathe
Offline Send Email
Apr 14, 2007
9:56 pm
9916
What are asUTF8, asUTF16, asUTF32 methods in Sequence object? I have tried send messages that, but it seems be no any effect... Io> "abc" asUTF8 ==> abc Io>...
Min-hee Hong
gorisdahlia
Offline Send Email
Apr 19, 2007
3:03 am
9917
... Io> s := "abc" ==> abc Io> s encoding ==> ascii Io> s itemSize ==> 1 Io> s = s asUTF16 ==> abc Io> s encoding ==> utf16 Io> s itemSize ==> 2 Btw, I think...
Steve Dekorte
stevedekorte
Offline Send Email
Apr 19, 2007
3:53 am
9918
... In my opinion, providing UnicodeSequence object(and encode/decode method) like Python is better then asUCS2/4 method... Io> s := "abc" ==> abc Io> u := s...
Min-hee Hong
gorisdahlia
Offline Send Email
Apr 19, 2007
6:54 am
9919
... Hash: SHA1 ... Are those examples are just ASCII so asXXX method makes no differences, right? I think you'd better test with multibyte characters like...
Sungjin Chun
chunsj@...
Send Email
Apr 19, 2007
7:08 am
9920
I find this very useful: http://blogamundo.net/dev/2005/11/09/if-you-are-writing-an-application-that-deals-with-multilingual-content/...
Carlos Villela
carlos_ville...
Online Now Send Email
Apr 19, 2007
8:44 am
9921
Hi Quentin, This has been really helpful, thank you! I've been playing with your ObjcBridge.io and I think I've a fairly good understanding of how the syntax...
oliver.mooney
Offline Send Email
Apr 19, 2007
10:25 am
9922
About soundtouch : on MacOSX 10.4, stdc++ is installed but is named "libstdc++-static.a". That's why the build process can't find it. Just do : "sudo ln -s...
jideel
jeedeel
Offline Send Email
Apr 20, 2007
11:15 pm
Messages 9893 - 9922 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