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 11597 - 11626 of 11910   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
11597
Hey guys, I'm not sure if you've seen this or not, but it may interest some of you. _why (of Hackety internet-fame) has created a new language called Potion,...
John Lunney
johnjameslunney
Offline Send Email
Jul 2, 2009
7:08 pm
11598
mmh! ... -- Kind regards, Andreas Schipplock....
Andreas Schipplock
schipplock
Offline Send Email
Jul 2, 2009
8:06 pm
11599
... "A path is any set of non-whitespace UTF-8 characters preceded by a slash. A path is also called an “instance variable” in programming jargon. Paths...
A.M.
agentm@...
Send Email
Jul 2, 2009
8:18 pm
11600
... Undoubtedly a concession to the needs of compiling to static binary code. -- Samuel A. Falvo II...
Samuel A. Falvo II
falvosa
Offline Send Email
Jul 2, 2009
8:32 pm
11601
Nice....
Semka Novikov
me@...
Send Email
Jul 2, 2009
8:36 pm
11602
I'm working on a C++ binding library for Io that allows you to make your C++ objects callable from Io without typing a lot of code. It's called LikeMagic....
dennisf486
Offline Send Email
Jul 3, 2009
5:45 am
11603
Although you are working with C++, have you had a look at Lua's Alien project (http://alien.luaforge.net/)? It allows you bind to dynamic libraries from Lua...
simonhaines
Offline Send Email
Jul 3, 2009
7:52 am
11604
Thanks I'll take a look at that. Unfortunately alien.luaforge.net is down, but I found the google cache of it. I have a good handle on the C++ side of...
dennisf486
Offline Send Email
Jul 3, 2009
4:13 pm
11605
Hi, Ive downloaded the latest .tar.gz from the website and Io doesn't build for me any more (NetBSD5/amd64). Error is: ...
Milos Negovanovic
milos.negovanovic@...
Send Email
Jul 4, 2009
10:42 am
11606
... After commenting out bunch of typedef-s in PortableStdint.h build continues ... not so sure this is the best way to fix it tho. Any suggestions? Regards --...
Milos Negovanovic
milos.negovanovic@...
Send Email
Jul 4, 2009
11:09 am
11607
... Patch that I have applied is attached. Is this correct thing to do? Regards -- Milos Negovanovic milos.negovanovic@......
Milos Negovanovic
milos.negovanovic@...
Send Email
Jul 4, 2009
11:38 am
11608
All you're missing is an ifndef preprocessor directive in that header for __NetBSD__. I'm mobile right now so I can't tell you exactly where. Regards, Jeremy...
Jeremy Tregunna
jeremy.tregunna@...
Send Email
Jul 4, 2009
1:00 pm
11609
... Cool, Its not urgent so I can wait. :) Regards -- Milos Negovanovic milos.negovanovic@......
Milos Negovanovic
milos.negovanovic@...
Send Email
Jul 4, 2009
1:14 pm
11610
I'm in the midst of writing some addons that wrap the various Xiph libraries (libogg, libvorbis, libtheora, etc). So far I've been wrapping the low level API...
Chris Double
doublecnz
Offline Send Email
Jul 5, 2009
5:45 am
11611
Hi, I have a situation where I have available name of object's method slot which I would like to invoke. What is the best way to do this? I would like for the...
Milos Negovanovic
milos.negovanovic@...
Send Email
Jul 12, 2009
9:47 am
11612
Hi! I think the best way is to clone the method and set its scope to the target context, so you get a kind of "bound method": the_a := t getSlot("a") clone...
Friedrich Weber
fred.reichbier@...
Send Email
Jul 12, 2009
1:33 pm
11613
Hi, About performOn: If called on a method it behaves as stated in the docs, but called on a block has no effect (the block is activated but not on the object...
Oscar Martinez
wasintw
Offline Send Email
Jul 12, 2009
6:00 pm
11614
... theObject perform(slotName)...
Steve Dekorte
stevedekorte
Offline Send Email
Jul 12, 2009
6:02 pm
11615
... Sorry, please ignore this - I didn't read the rest of the question before responding. Friedrich's answer looks correct....
Steve Dekorte
stevedekorte
Offline Send Email
Jul 12, 2009
6:04 pm
11616
I tried the example "Create a simple object and show how to use it" from the page http://www.iolanguage.com/about/samplecode/: Account := Object clone do( ...
bblochl2
Offline Send Email
Jul 13, 2009
4:46 pm
11617
... I just tried the above Account example as a script with a starting shebang line on Linux - it was working! First I tried it from the Io line interpreter...
bblochl2
Offline Send Email
Jul 13, 2009
6:32 pm
11618
... I haven't had time to try things out but have you tried using one line with ;'s on the REPL? I think the interactive REPL is a little broken on some...
Brian Mitchell
binary42@...
Send Email
Jul 13, 2009
6:52 pm
11619
... Playing with the CLI I found that Z_CLI.io does not handle correctly that case and the "slash at the end" case, at lease in my box (Debian Squeze/Sid on...
Oscar Martinez
wasintw
Offline Send Email
Jul 13, 2009
7:06 pm
11620
I have a problem of understanding: Io 20090105 Io> sin := 5 ==> 5 Io> 4 sin ==> -0.7568024953079282 Io> sin ==> 5 Io> 1x := 5 ==> 5 Io> x1:= 6 ==> 6 Io>...
bblochl2
Offline Send Email
Jul 13, 2009
8:57 pm
11621
Do a 1 slotNames You'll find x there. Regards, Jeremy Tregunna Mobile: +1 (519) 498-8299 Sent from my iPhone...
Jeremy Tregunna
jeremy.tregunna@...
Send Email
Jul 13, 2009
9:03 pm
11622
You know, when I first saw the subject heading for this message, I _seriously_ thought it read: [Io] secret vegetables? Uugh. It's only monday, and I already...
Samuel A. Falvo II
falvosa
Offline Send Email
Jul 13, 2009
9:04 pm
11623
... 1x is parsed as "1 x" ... Yes, you can use: Object removeSlot(slotName)...
Steve Dekorte
stevedekorte
Offline Send Email
Jul 13, 2009
9:04 pm
11624
... Heh. The title got me thinking about hidden variables in physics and what their parallel would be in programming languages. ...
Steve Dekorte
stevedekorte
Offline Send Email
Jul 14, 2009
2:09 am
11625
... Probably something like people who use programming languages with programming paradigms (generic, object oriented, actor-based, etc.) without actually...
Erik Max Francis
erikmaxfrancis
Offline Send Email
Jul 14, 2009
2:15 am
11626
A while back Avi Bryant (Seaside web framework author) did a talk on his approach to building a Seaside like web framework. Phil Windley did a write-up about...
Chris Double
doublecnz
Offline Send Email
Jul 14, 2009
11:30 am
Messages 11597 - 11626 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