I have done some preliminary work on an ANSI C implementation of GPB; it encodes and decodes messages just fine. If you like, I'd be happy to toss it in the...
I have placed a copy up at http://waspvm.googlepages.com; look for libgpb-0.0.tar.gz. It's pretty minimal -- it can encode / decode messages, seek new ones,...
Have been lurking for awhile, and have started firing up IO in a real project at work -- I need to pull XML objects out of a web-based ticketing system that is...
There's an SSL addon available ('SecureSocket' I think), and I have a need for it as well, but have yet to succeed at getting it to work due to time ...
Sorry, obsessive compulsive disorder at work here: I should have said "OpenSSL binding". ... -- Phoenix Sol 541-646-8612 130 'A' Street, Suite 6 Ashland,...
Hi, 1. The issues button on the Io website does not work anymore. Exception: compile error: expected a message but instead found a open group character ...
With respect to your methods on nil... Anything that returns nil itself, just prepend in your code a ? So for instance: foo := File standardInput readLine...
... I get the feeling you're after an Objective-C style handling of nil where it's a black hole for messages sent to it. To get this effect for messages it...
... I'd argue that's probably not what you want to do all the time, and could lead to bugs coming purely from forgetting to handle a nil case in some dark...
Hello, all! We started Io Language for .NET CLR implementation. You may check it at our repository: https://synrc.com/repository/io Regards, Maxim Sokhatsky -...
The documentation shows an example, but does not tell how to compile that program. What flags are needed and against which library does one has to link. I've...
... Cool. Out of curiosity, why don't you build your implementation of Io for the .NET runtime on top of the Dynamic Language Runtime (DLR)? -- Daniele...
Daniele Alessandri
suppakilla@...
Aug 26, 2008 9:47 am
10908
Just compiled DLR. Total 1.2MB. IoNET now about 50K and will not be more 100K. Next, the DLR lib is only needed when we start to implement JIT for IoNET....
here is example of working IoNET session http://synrc.com/io/io-session.txt Now I'm just adding slots handlers to objects to be identical to original IoVM. No...
... Nice work. :-) I've only had a chance to scan the implementation but it looks pretty good. It's nice that .Net (appears) to handle all the garbage...
... It dosn't have occurred to me that this may be a compiler problem. I tried gcc-4.1 and got this: gcc-4.1 -g -std=c99 -I/home/frido/src/io/_build/headers...
Here's a small helper I hacked together. As many may know there is this pkg-config stuff. I guess it'll be quite handy to have something for io also. Here's...
I will run all the bechmarks and unit tests when finish all the core primitives. BTW, please change at http://iolanguage.com/blog/blog.cgi "A project at Syncrc...
I browsed a bit through the sources and found this: MemoryBlock *MemoryBlock_newWithSize_file_line_(size_t size, char *file, int line) { MemoryBlock *self =...
... Sounds good - I'd accept a patch to deal with this. Io should use io_calloc() and io_malloc() for all allocs (if not, we can fix those), so we should be...
... Well the call sequence is: io_calloc io_real_calloc io_real_malloc and mentioned function so this is the lowest level. So that seems to be the proper...