Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

iolanguage · Io

The Yahoo! Groups Product Blog

Check it out!

Group Information

? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

Messages

Advanced
Messages Help
Messages 13242 - 13271 of 13339   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
13242 Tobey Thorn
tobeythorn Send Email
Jun 18, 2012
5:33 pm
awesome you should check this out wow http://www.localeastnews15.net/work/?alert=79864...
13243 Steve Dekorte
stevedekorte Send Email
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 Send Email
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@... Send Email
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@... Send Email
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 Send Email
Jun 22, 2012
11:46 pm
... Hi Alexander, What does a type mean in Dylan exactly? Steve...
13248 Alexander Shpilkin
ashpilkin@... Send Email
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 Send Email
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 Send Email 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 Send Email
Jul 5, 2012
9:58 pm
Awesome - thanks Jake! Steve...
13252 gatesphere
suspended_chord Send Email
Jul 5, 2012
11:55 pm
No problem, Steve. Glad to do it :) -->Jake...
13253 eebel_igman Send Email 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 Send Email
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 Send Email 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 Send Email 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@... Send Email
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 Send Email Aug 9, 2012
5:30 am
Thank you very much...
13259 eebel_igman Send Email 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 Send Email 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 Send Email
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 Send Email 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@... Send Email
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 Send Email
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 Send Email
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 Send Email
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 Send Email
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...
13268 tomblalock@...
tomblalock Send Email
Oct 17, 2012
3:45 pm
http://georgezimmermantrial.info/wp-content/plugins/akismet/mylife.php?rising265.img...
13269 Duke Normandin
cgnormandin Send Email
Oct 23, 2012
7:18 pm
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 Send Email
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 Send Email
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...
Messages 13242 - 13271 of 13339   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

Copyright © 2010 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines NEW - Help