Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

iolanguage · Io

The Yahoo! Groups Product Blog

Check it out!

Group Information

? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

Messages

Advanced
Messages Help
Messages 9436 - 9466 of 13333   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
9436 Jon Kleiser
jon_kleiser Send Email
Oct 1, 2006
7:30 pm
... Is MacPorts/DarwinPorts supposed to be the answer to all those dependsOnLib() lines? I just installed Io-2006-09-29 and DarwinPorts-1.3.2. When I start io...
9437 Chris Roos
chrisjroos@... Send Email
Oct 2, 2006
6:30 pm
I apologise in advance for asking what is undoubtedly a daft question... Does Io have constants in the same sense that ruby has constants? Chris...
9438 Steve Dekorte
stevedekorte Send Email
Oct 2, 2006
8:25 pm
... Hi Chris, You can implement some sort of object freezing in Io (jer did it a while back) but it's not built-in. Did you have a specific need or application...
9439 Chris Roos
chrisjroos@... Send Email
Oct 2, 2006
9:01 pm
... No specific need or application ;-) I'm basically fumbling my way around ruby. Everytime I find something that I can't do easily, I think of io. This...
9440 Haofei
yuesefa@... Send Email
Oct 3, 2006
6:34 pm
it seems i have some problem building io on ubuntu here is the message i take from make. ... make[1]: *** [addons] Segmentation fault make[1]: Leaving...
9441 Jeremy Tregunna
jtregunna_io Send Email
Oct 3, 2006
7:10 pm
... The fix for this problem exists in the Io darcs repository, so until a new release is pushed, perhaps you could do a darcs get and get the repo....
9442 jnmrtnmarchi Send Email Oct 4, 2006
7:07 pm
Hello, i have successfully built an Io executable for Windows XP, from the most recent sources. I've used Code::Blocks with gcc. All tests performed with...
9443 Haofei
yuesefa@... Send Email
Oct 6, 2006
11:43 am
Failed to build Io on my machine. I am using Ubuntu 6.06. The version of gcc is 4.0.3. Do i have to modify the make file to fit my system or there were other...
9444 Jeremy Tregunna
jtregunna_io Send Email
Oct 6, 2006
2:54 pm
... Io is one of those projects where the main development repository is usually more stable than the latest release. Continuing that thought, there have been...
9445 oliver oli
oliver.oli@... Send Email
Oct 6, 2006
4:41 pm
is there a download location?...
9447 jnmrtnmarchi Send Email Oct 6, 2006
8:36 pm
... Cordially,...
9448 Haofei
yuesefa@... Send Email
Oct 7, 2006
2:11 am
i darcs the sources and build successfully :-) but meet another problem :-( ... io: error while loading shared libraries: libiovmall.so: cannot open shared ...
9449 Jeremy Tregunna
jtregunna_io Send Email
Oct 7, 2006
2:28 am
... I assume you're on Linux since it's the only platform braindead enough to not cache standard lib dirs on bootup. Edit your /etc/ ld.so.conf and add...
9450 Haofei
yuesefa@... Send Email
Oct 7, 2006
3:12 am
thanks Jeremy! u help me a lot ;-)...
9451 Jean-Marten Marchi
jnmrtnmarchi Send Email
Oct 7, 2006
7:00 pm
you can find attached a upx compressed io.exe for win32 built from the most recent source tree. oliver oli <oliver.oli@...> wrote:...
9452 Steve Dekorte
stevedekorte Send Email
Oct 7, 2006
7:24 pm
... Would it help if we added something to the install process to warn uses about this? - Steve...
9453 Jeremy Tregunna
jtregunna_io Send Email
Oct 7, 2006
7:32 pm
... Perhaps. -- Jeremy Tregunna jtregunna@......
9454 Charles D Hixson
kapistan Send Email
Oct 7, 2006
7:47 pm
... It would help. One good place to put it would be in the readme.txt file. This would need to be in the section: Building and Installing on Unix/OSX ...
9455 ricardolinerotorres
ricardoliner... Send Email
Oct 8, 2006
11:08 pm
WHERE CAN I GET SOME EXAMPLE CODE.....THAT IMPLEMENTS OBJETC PERSISTENCE....IN IO.... ...THANKS...
9456 Jeremy Tregunna
jtregunna_io Send Email
Oct 9, 2006
12:15 am
... Currently, Io's persistence system isn't yet completed yet. However, if all you want to do is serialize objects, quite a number of Io objects can be...
9457 ricardolinerotorres
ricardoliner... Send Email
Oct 9, 2006
5:20 pm
ok..so not all objects can be serialize.... how about the ones i create... like.. person:= Object clone do( name:="max power" age:="55" occupation:="lawyer&quot; ...
9458 ricardolinerotorres
ricardoliner... Send Email
Oct 9, 2006
6:24 pm
can somebody tell me whats wrong whit this code both files are in the same folder ... a := Object clone do( sayHi :="HI" sayingHi:=method(write(salude)) ) ... ...
9459 Steve Dekorte
stevedekorte Send Email
Oct 9, 2006
7:13 pm
... Hi Ricardo, The first character of a autoimported symbol name has to begin with an uppercase character. - Steve...
9460 ricardolinerotorres
ricardoliner... Send Email
Oct 9, 2006
7:32 pm
ok..so not all core objects can be serialize.... how about the ones i create?... like.. person:= Object clone do( name:="max power" age:="55" ...
9461 Steve Dekorte
stevedekorte Send Email
Oct 9, 2006
8:09 pm
... You could write a few methods like: Object serialized := method(s, if(s == nil, s := Sequence clone) self slotNames foreach(n, s appendSeq(n, " := ", self...
9462 ricardolinerotorres
ricardoliner... Send Email
Oct 9, 2006
11:37 pm
....you showed and example..where you use the serialize method with a slot..but i've tried to do the same and its shows me an exception ..this is my code ... ...
9463 Jeremy Tregunna
jtregunna_io Send Email
Oct 10, 2006
7:36 pm
... Just define a "serialized&quot; method on your object which returns a String containing the code needed to make your object. -- Jeremy Tregunna ...
9464 ricardolinerotorres
ricardoliner... Send Email
Oct 10, 2006
8:15 pm
....you showed and example..where you use the serialize method with a slot..but i've tried to do the same and its shows me an exception ..this is my code ... ...
9465 Jeremy Tregunna
jtregunna_io Send Email
Oct 10, 2006
8:25 pm
... What version of Io do you have? My guess is it's ancient -- before the Serialization stuff (which has been in Io now for about 6 months). Io> "foo"...
9466 ricardolinerotorres
ricardoliner... Send Email
Oct 11, 2006
12:09 am
ok...i've downloaded the latest version of Io on http://www.iolanguage.com/downloads/ but know i need some help again do i need cygwin to install Io or...
Messages 9436 - 9466 of 13333   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

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