Hey all, I'd like to start making binary distributions of Io available and I'm looking for volunteers to periodically (when you get a chance) compile Io for...
I find the separation of File and Directory objects to be cumbersome when programming with them. I always end up writing a FileSystemNode object with the...
What do folks think about a switch functionality via a case() method of the form: (b) case (1, // code ) case (2, // code ) else ( // code ) Thoughts? You can...
Thanks a lot for IoDesktop-2004-07-06! This time there were no automake-1.4= problems ;-)
I still can't set the font of a TextField to Vera/Sans/Normal.ttf....
The following program prints out each file's name and mode, which on my pc is always the same whether it's a directory or a file: #include <dirent.h> #include...
Hey folks, Ed Heil wrote a nice tutorial-like piece on his weblog which describes writing an RSS aggregator in Io: http://www.goesping.org/index.php?p=86 --...
The make ended (as a couple of times before) with ld: Undefined symbols: _IoSocketsDone _IoSocketsInit make[1]: *** [all] Error 1 make: [all] Error 2 (ignored)...
hi, I am trying to create an ELF file of my application which includes printf's,scanf's and file operations ,from arm-elf-gcc iam getting undefined symbol...
The following code is nothing special. It is basically a translation of the C code from the Embedding section of the Programming guide translated to something...
First, let me start by saying how cool the language looks. I like the reflexivity and multiple inheritance, and if I had known about how clean the concurrency...
I've been coding in Io with much more frequency lately and am starting to run into walls where my previous Class-based OO habits. One example today is Enums. ...
I've tried to get libevent working under mingw using native Windows call or with select(), never with any luck. So to get something working, I just wrote a...
Slashdot recently had (yet another) disucssion of scripting languages which mostly said nothing. But there was one interesting post at the bottom. The poster's...
Hi, It seems to me a statement is (or has gone) missing in "Hash.c" in function Hash_removeKey_ before line 209 should be statement; lastRecord = record, or in...
I'm trying to build Io on a Windows XP box using Cygwin. I'm using IoDesktop-2004-05-13 and ./configure runs ok. IoVM builds and runs. But when I try to...
Hi, I'm still playing with the objc bridge and found a very strange problem where objects would become numbers. I thought this was be caused by garbage...
Hello! Slowly I am getting the grips of OpenGL, but trying out the FreeType Font module I ran into problems I could not resolve. When I turn on GL_DEPTH_TEST...
Hello! I tried something like A := Object clone do( B := Object clone B parent := self // i.e. := A ) which didn't work because A has no "self" slot. So, how...
I've been experimenting a bit with Ion and the new TextView. As the Free fo= nts don't seem to have the Norwegian characters æøåÆØÅ, I've tried to use...
Three quick thoughts of varying intent and quality: Would it be possible to pull Lobby's blocks out of Object, making Lobby a completely separate object?...
IoDesktop-2004-06-08 built fine on my Mac OS X 10.3.3, and I'm very pleased ;-) I've discovered a few problems though: When I do "ioDesktop test.io", I first...
I think I understand why the parent slot exists. But I'm not sure having it is really worth the extra complexity and confusion. I know when I started learning...
http://www.iolanguage.com/Downloads/ Release 2004 06 08 - Ion and Audio features =================================== - added editable TextField and SavePanel...
I am having an issue with a memory leak. VS.NET is reporting a leak when I shutdown my app. It seems to happen simply from running the following: IoState...