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...
It seems that the 'protos39; slot is empty when the 'init' method of an object is called during a clone operation. The 'protos39; slot is then set after init is...
Hello all, I'm tracking down a segfault in io_freerealloc, but my unfamiliarity with the iovm, and the superabundance of damn preprocessor macros are making it...
Phantastic! One can hide just everything in Io. Something to exploit? I will do some more research. Do you have some evil ideas? Regards BB PS: I really do not...
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>...
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( ...
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...
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...
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....
Obviously you are using Objective-C (Macintosh)? There are some error messages desiring for the GNU Objective-C Compiler. After installing GNU Objective-C...
Hi, I got the latest from github and I'm having some problems with the build using the free version of vc9. I believe there have been some recent improvements...
I am always interested in bugs ore faults of componenets, so as I found the intersting posting of Jeremy Tregunna from Mon Jun 8, 2009 4:42 am (Bug Report:...
I need my addon for Io to be located not in my ~/io/addons folder but in my ~/myproject folder because "myproject" is a git repository, and I need the addon to...
Ok, ok, sorry for my misapprehension. So, so ldconfig! I checked the net again and could not find any postings from Jeremy Tregunna from 1994 or before. There...
I am not amused. I tried to show a friend, how easy one could install Io on debian lenny, and how much fun one might get with Io. I downloaded the tar-file...
For the game I'm working on, I have a very complicated data structure for storing the terrain (it works directly with compressed terrain data in memory without...
Change Line 21 in Makefile DLL_SUFFIX := so DLL_COMMAND := -shared -Wl,-soname="libiovmall.so" FLAT_NAMESPACE := to DLL_SUFFIX := so DLL_COMMAND := -shared...
Since it looks like some people are online answering messages right now, I thought I'd ask a quick question of you. :D For the game engine I'm working on, I...
It seems to start with /usr/include/evhttp.h:111: error: expected specifier-qualifier-list before `TAILQ_ENTRY39; and goes downhill from there. (Maybe they...
The really old problem in starting io io: error while loading shared libraries: libiovmall.so: cannot open shared object file: No such file or directory is...
This build problem first occurred a couple years ago for me, and I just noticed the latest code I pulled from github still has the same issue. Steps to...
Anyone know how to build Io statically? MinGW binaries work in Wine with Ubuntu, so I'm trying to build piece by piece. I'm getting dynamic lib build errors....
After running into a rare bug in the previous hash table code, I rewrote it last week and have been tweaking the new code a bit, including a few critical fixes...
When I try to build the current git status (trying to do so in preparation for submitting a Win32 patch), I get lots of errors on both Windows and Linux. They...
Hi all, I've been toying with Io for a while (since I found out about it via Pixar's usage). I've been looking for a nice powerful, embeddable, extendable...
I'm not on IRC, so I don't know what's new these days. Any news on the core library refactoring? I have to be honest, I'm interested because I'm working on...
In Io, I know it's possible to set a slot on a specific literal, for example: Io> 10 foo := 1 ==> 1 Io> 10 foo ==> 1 ... Exception: Number does not respond to...