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,...
... "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@...
Jul 2, 2009 8:18 pm
11600
... Undoubtedly a concession to the needs of compiling to static binary code. -- Samuel A. Falvo II...
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....
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...
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...
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@...
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@...
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@...
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@...
Jul 4, 2009 1:00 pm
11609
... Cool, Its not urgent so I can wait. :) Regards -- Milos Negovanovic milos.negovanovic@......
Milos Negovanovic
milos.negovanovic@...
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...
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@...
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@...
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...
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( ...
... 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...
... 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@...
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...
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>...
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@...
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...
... Probably something like people who use programming languages with programming paradigms (generic, object oriented, actor-based, etc.) without actually...
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...