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

Yahoo! Groups Tips

Did you know...
Want your group to be featured on the Yahoo! Groups website? Add a group photo to Flickr.

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 9795 - 9824 of 11910   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
9795
Io> Number floatMin ==> 0 Io> Number floatMin asString(50, 50) ==> 0.00000000000000000000000000000000000001175494350822 Io> Number floatMin > 0 ==> true If the...
Jon Kleiser
jon_kleiser
Offline Send Email
Mar 1, 2007
4:01 pm
9796
Hello all. I looked into Io awhile back, then fell out of projects that needed scripting and fell away. I've just come back out of curiosity, and am liking...
Mac Reiter
macreiter
Offline Send Email
Mar 5, 2007
6:19 pm
9797
You could always use the Sandbox object. It sets up so that dangerous objects like "File", "Directory", "System", et al. are removed from the new state just...
Jeremy Tregunna
jtregunna_io
Offline Send Email
Mar 5, 2007
6:27 pm
9798
Hi Mac, Sandboxing can partially be achieved by starting another Io vm and removing all references to unsafe objects. Without references to the unsafe objects,...
Quag
quagath
Offline Send Email
Mar 5, 2007
7:08 pm
9799
Thank you for the various responses. My initial approach would have been to have File/Directory/etc not compiled in, but it's neat that I can also take a...
Mac Reiter
macreiter
Offline Send Email
Mar 6, 2007
3:37 pm
9800
Hi everybody. I've already said something about this on the IRC channel, but here is the longer version of my problem. Basically: how should you include files?...
Bram Neijt
bneijt@...
Send Email
Mar 6, 2007
7:43 pm
9801
... Hi Bram, Can you specify in pseudo code exactly what behavior you would like? - Steve...
Steve Dekorte
stevedekorte
Offline Send Email
Mar 6, 2007
8:22 pm
9802
... Sure, I'd be happy to. The problem in technical terms is: I would like an include statement/command which will look for the file relative to the file doing...
Bram Neijt
bneijt@...
Send Email
Mar 6, 2007
9:39 pm
9803
... What he basically is looking for is for a standard include path facility, as with C compilers, where "include" files are sought in zero or more standard...
Samuel A. Falvo II
falvosa
Offline Send Email
Mar 6, 2007
10:06 pm
9804
Consider: /Users/foo/Projects/io/myFabulousProject/dir/SomeObject.io and: /Users/foo/Projects/io/OtherFabulousProject/main.io in main.io: Importer...
Jeremy Tregunna
jtregunna_io
Offline Send Email
Mar 6, 2007
10:40 pm
9805
... Ok, I understand now. How about this?: doRelativeFile := method(path, doFile(call message label pathComponent appendPath(path)) ) - Steve...
Steve Dekorte
stevedekorte
Offline Send Email
Mar 6, 2007
11:25 pm
9806
The code you present below looks like what I want. The earlier example by Jeremy is just what every ones first answer is: just make sure you get the full path...
Bram Neijt
bneijt@...
Send Email
Mar 7, 2007
12:57 am
9807
The thing is, in IRC you wanted something similar to C's #include directive. #include has a set few paths it'll search, but it still needs to know to search...
Jeremy Tregunna
jtregunna_io
Offline Send Email
Mar 7, 2007
1:45 am
9808
... Correction: doRelativeFile := method(path, doFile(call message label pathComponent asMutable appendPath(path)) )...
Steve Dekorte
stevedekorte
Offline Send Email
Mar 7, 2007
2:01 am
9809
... Ah, I can see the confusion here. I do want something like #include "" but it wasn't because of the include path it uses when it can't find the file...
Bram Neijt
bneijt@...
Send Email
Mar 7, 2007
9:04 am
9810
I now get an exception like this: Exception: Sequence does not respond to 'appendPath' ... Sequence appendPath includer.io 3 Object...
Bram Neijt
bneijt@...
Send Email
Mar 7, 2007
9:10 am
9811
When I try to run addons/OpenGL/samples/cube.io using the latest darcs patches (on my G5 Mac), I get IoState_protoWithInitFunction_() Error: missing proto /Jon...
Jon Kleiser
jon_kleiser
Offline Send Email
Mar 7, 2007
9:48 am
9812
It automatically adds them. -- Jeremy Tregunna jtregunna@......
Jeremy Tregunna
jtregunna_io
Offline Send Email
Mar 7, 2007
12:29 pm
9813
... Hmm... don't really like that, but ok. IRC should be good and commercial free enough. Maybe the Io community can switch to a google group later on, because...
Bram Neijt
bneijt@...
Send Email
Mar 7, 2007
2:52 pm
9814
... Sorry, I should probably test these before posting them: doRelativeFile := method(path, p := Path with(call message label pathComponent, path) call sender...
Steve Dekorte
stevedekorte
Offline Send Email
Mar 7, 2007
8:32 pm
9815
Yeah! It works. Great, make this part of the core distribution! Although it might be better to call it doFileRelative or something smaller, because I'll be ...
Bram Neijt
bneijt@...
Send Email
Mar 8, 2007
5:02 am
9816
... Until that time you can include it in your ~/.iorc. On startup Io executes the statements in that file, allowing you to have local custom configurations...
Erik Garrison
geebusmcfeebus
Offline Send Email
Mar 8, 2007
5:59 am
9817
... What does everyone think about making the relative path the first search path for the auto importer? - Steve...
Steve Dekorte
stevedekorte
Offline Send Email
Mar 8, 2007
8:42 pm
9818
Today I've tried to pull the latest darcs patch "initial record", but after I type "y", nothing happens. That's also the case when I try to load ...
Jon Kleiser
jon_kleiser
Offline Send Email
Mar 9, 2007
2:07 pm
9819
Sounds like a good idea to me (relative path first search path in auto importer), but then I'm not a heavy Io user yet... That would seem to behave like...
Mac Reiter
macreiter
Offline Send Email
Mar 9, 2007
2:59 pm
9820
... How big of a patch is "initial record"? Darcs works best with small patches; large patches will send it into a tizzy. Also, I seem to recall someone else...
Samuel A. Falvo II
falvosa
Offline Send Email
Mar 9, 2007
3:27 pm
9821
I've created an Ubuntu package for the Io core (none of the Addons yet, though). If I find some spare time, I'll probably post an ITP bug for ubuntu and then...
Bram Neijt
bneijt@...
Send Email
Mar 9, 2007
5:30 pm
9822
... Due to some darcs issues, I've rebuilt the repo. Everyone will need to do a fresh get. Sorry for the inconvenience. :-/ - Steve...
Steve Dekorte
stevedekorte
Offline Send Email
Mar 9, 2007
8:57 pm
9823
I've been struggling to get the 2007-02-22 release to run on a Xen domU, which is hosted on a 64-bit system. I get the following error when running in gdb. ...
Erik Garrison
geebusmcfeebus
Offline Send Email
Mar 12, 2007
4:11 am
9824
... Hi Erik, This is probably the ucontext bug in several 64bit unixes. If you drop by the IRC channel, I'll try to walk you through turning on the alternate...
Steve Dekorte
stevedekorte
Offline Send Email
Mar 12, 2007
6:03 am
Messages 9795 - 9824 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