awesome you should check this out wow http://www.localeastnews15.net/work/?alert=79864...
13243
Steve Dekorte
stevedekorte
Jun 21, 2012 7:10 am
... The problem is that the keyword arg doesn't save any code, adds new syntax and semantics, and encourages more argument passing, which (it seems we are...
13244
Kevin Edwards
edwakev
Jun 22, 2012 5:55 am
... Yes, but the bad design is not the call syntax itself, since that can be superficially fixed by passing frames around or splatting. The bad design is...
13245
David Goehrig
dave@...
Jun 22, 2012 8:14 pm
First of all, thank you Kevin and Steve for this wonderful thread. It has been one of the best discussions I've seen on an emotional issue in a long time. A...
13246
Alexander Shpilkin
ashpilkin@...
Jun 22, 2012 10:42 pm
... Have you considered the Dylan approach to multiple dispatch? As far as I remember you can implement the usual generic method semantics on top of an...
13247
Steve Dekorte
stevedekorte
Jun 22, 2012 11:46 pm
... Hi Alexander, What does a type mean in Dylan exactly? Steve...
13248
Alexander Shpilkin
ashpilkin@...
Jun 22, 2012 11:52 pm
... Whoops... I'm very sorry. Turns out the language I was thinking about was not Dylan but Slate[1]. And it doesn't have types. It has a prototype-based...
13249
Kevin Edwards
edwakev
Jun 23, 2012 5:40 pm
... Thanks, I'm enjoying it, too. :-) ... Type may be "separate" from identity, but even in Io there are informal constraints on the state and behavior of each...
13250
suspended_chord
Jul 3, 2012 5:07 am
Hello all, Just letting you all know that new builds of Io are available on the iobin project website (http://iobin.suspended-chord.info/) and the main Io...
13251
Steve Dekorte
stevedekorte
Jul 5, 2012 9:58 pm
Awesome - thanks Jake! Steve...
13252
gatesphere
suspended_chord
Jul 5, 2012 11:55 pm
No problem, Steve. Glad to do it :) -->Jake...
13253
eebel_igman
Jul 23, 2012 10:58 pm
Hello I'm quite confused about the following behaviour: Example: Io> m := method(nil) ==> method( nil ) Io> getSlotReturnsNil := method(getSlot("m")) ==>...
13254
Steve Dekorte
stevedekorte
Jul 23, 2012 11:37 pm
... Hi Eebel, Try: getSlotReturnsNil := method(self getSlot("m")) getSlot is overridden on the Locals object and IIRC, is limited to the Locals themselves....
13255
eebel_igman
Jul 30, 2012 9:51 pm
Hello Again Why is the callers scope not visible in the execution scope of the Range foreach message, when the Range foreach message is invoked with only a...
13256
shifeng_h
Aug 8, 2012 10:19 pm
hi, I am a new guy for Io language. and I have a problem need help. after I create a block with method block(), how to invoke it? the code below didn't work. ...
13257
Jeremy Tregunna
jeremy.tregunna@...
Aug 8, 2012 10:20 pm
Blocks aren't activatable by default, therefore you need to pass a "call" message to them. I.e., in your example, call v like this: v call If you make blocks...
13258
shifeng_h
Aug 9, 2012 5:30 am
Thank you very much...
13259
eebel_igman
Aug 11, 2012 10:24 pm
I found evidence for the described behavior in the source code: IoRange.c, IoRange_foreach: if (IoMessage_argCount(m) == 1) { return IoRange_each(self, locals,...
13260
dennisf486
Sep 17, 2012 5:28 am
I found this thread fascinating because I'm directly working on two things affected by these issues. First, I found it necessary to implement a little...
13261
Kevin Edwards
edwakev
Sep 18, 2012 11:40 pm
... Exactly. Merging proxy management functions into the same namespace as the target object corrupts the view. It conflates two different denotations -- the...
13262
suspended_chord
Sep 21, 2012 2:00 pm
Hello all, I've made a binary build for Raspian Wheezy (armhf) available on the iobin project site (http://iobin.suspended-chord.info/). Steve, if you want to...
13263
Petr Man
petr@...
Sep 21, 2012 2:07 pm
Hello Jake ... How did you manage to compile libcoroutine? I have tried earlier this year to build on beaglebone and it failed where libcoroutine pokes in the...
13264
Jacob Peck
suspended_chord
Sep 21, 2012 2:12 pm
Hello Petr, Manually added this patch to the source: https://github.com/stevedekorte/io/pull/228 Could (read: probably will) break builds on other...
13265
Scott Solmonson
scosol
Sep 23, 2012 4:42 am
Poking the stack with a beagle bone is an easy way to spend the night in jail- better to do it with a raspian wheezy as it will probably just cost you a carton...
13266
Marc 'BlackJack...
marrin666
Sep 24, 2012 8:54 am
Hi Jake, ... This doesn't seem to be a ZIP archive: pi@raspberrypi ~/src $ unzip iobin-linux-armhf-deb-current.zip Archive: iobin-linux-armhf-deb-current.zip ...
13267
Jacob Peck
suspended_chord
Sep 24, 2012 12:26 pm
Hi Marc, Ah, you're right! Thanks for noticing that. It should be all better now, same location. I use 7z on the machine that I package iobin with, must have...
I'm fooling around with Io on a Win7 box. This code from Cliff Wells chokes my Io setup: [code] server := HttpServer clone do ( setPort ( 5000 ) setHost (...
13270
Jacob Peck
suspended_chord
Oct 23, 2012 7:23 pm
You'll have to build Io from source, making sure that libevent also compiles. I've been trying to fix this problem for about a year now, with no success :( ...
13271
Duke Normandin
cgnormandin
Oct 23, 2012 9:08 pm
... Hello Jacob .... Your reply helped a lot!! Now I won't be spinning my wheels trying to get Io to play nice on win7 under all situations. :) I've got VMware...