Thanks for maintaining the binaries - it makes life much easier for new users. Cheers, Steve...
13145
gatesphere
suspended_chord
Mar 2, 2012 8:53 pm
No problem! -->Jake...
13146
suspended_chord
Mar 2, 2012 9:47 pm
And now they're all up. Enjoy! -->Jake...
13147
Duke Normandin
cgnormandin
Mar 2, 2012 10:21 pm
On Fri, 02 Mar 2012 21:47:20 -0000 ... Thank you for going the extra mile, Jake!! Today must be Io "rebuild" day! I just got finished updating mygit Io tree,...
13148
norbertmuellerde
norbertmuell...
Mar 3, 2012 7:56 pm
Hello, I am trying to use Io under Ubuntu 10.04 and have a strange behaviour: % cat operator.io OperatorTable addOperator (":",1) Object : := method (a, self...
13149
Jeremy Tregunna
jeremy.tregunna@...
Mar 3, 2012 7:59 pm
... It's not a bug. Here's why. Operator transformation happens at compile time. In the REPL this is each time you hit enter. However, in a file, it's when the...
13150
norbertmuellerde
norbertmuell...
Mar 3, 2012 9:31 pm
... <snip> ... Hi Jeremy, thanks for your quick response, I wasn't aware that there is such a thing as compile time in an interpreted language. But thinking...
13151
Jeremy Tregunna
jeremy.tregunna@...
Mar 3, 2012 9:34 pm
... The compile time in Io is when tokenization occurs, construction of the AST (messages) and when the operator shuffler runs. It's very lightweight. Regards,...
13152
gatesphere
suspended_chord
Mar 7, 2012 4:42 pm
Just a quick update - someone pointed out a bug with the Mac installer over email, and as a result, I've rebuilt it and reup-ed it. Apparently, this particular...
13153
Duke Normandin
cgnormandin
Mar 8, 2012 1:33 am
Can't find it! Anyway know where it got to? and who's Quag? :) -- Duke...
13154
bqt0xenk
Mar 12, 2012 7:03 pm
Hi, I try executing this code: regex := Regex with("a+") match := "aaaa73noises" matchesOfRegex(regex) next but get this error: IoState_protoWithId_() Error:...
13155
dennisf486
Apr 7, 2012 5:25 pm
Steve, do you still have the code for this you were talking about? I could really use it now. In fact all I need help with is implementing the part for...
13156
dennisf486
Apr 8, 2012 7:09 pm
In my game engine I now have over 64 Io scripts and probably 100 protos. I reference many 3rd-party libraries, and I want to know what scripts are importing...
13157
dennisf486
Apr 13, 2012 4:07 am
I hit a snag in my script refactoring. I'm trying to wrap all my proto creations inside methods so that I can pass dependencies as arguments, but I can't...
13158
Jeremy Tregunna
jeremy.tregunna@...
Apr 13, 2012 4:13 am
The way I'd probably go about doing this is something like this: method( self ldMap := Object clone call message arguments foreach(arg, self ldMap...
13159
dennisf486
Apr 13, 2012 4:17 am
Haha OK I feel stupid, I just found "lexicalDo" in Io's C source code, it appears it does exactly that. Why doesn't lexicalDo show among the documented Object...
13160
Jeremy Tregunna
jeremy.tregunna@...
Apr 13, 2012 4:21 am
Given that this comes up every now and then (avg of once a year on this list it seems), I think it's worth considering changing the behaviour of do(). It only...
13161
dennisf486
Apr 13, 2012 9:59 pm
If you want to make "do" be the same as "lexicalDo", you have my vote. Otherwise, could we at least add an error path so that if an identifier is unknown...
13162
Steve Dekorte
stevedekorte
Apr 16, 2012 5:57 pm
Those both sound like good ideas. I'd be happy to accept your github push request for them :) Steve...
13163
tomkane63
Apr 18, 2012 5:28 pm
I am new to this language, and I love it. I made first contact a couple of months ago with the book 7 langs in 7 weeks. But I have been really struggling...
13164
Oliver Kiddle
okiddle
Apr 18, 2012 5:28 pm
After reading Bruce A. Tate's 7 languages book, I wondered whether it would be possible to configure IO to support the basic dependency syntax of Unix make....
13165
Jeremy Tregunna
jeremy.tregunna@...
Apr 18, 2012 6:32 pm
Hi Oliver, When I wrote the phone book example for Bruce, : was not treated as part of the identifier. Had I known it was going to become part of the...
13166
Oliver Kiddle
okiddle
Apr 19, 2012 1:01 am
... I think that's a bit of a pity. I can really see why the DSL section is included in the book because it is without doubt one of the things that makes Io...
13167
Jeremy Tregunna
jeremy.tregunna@...
Apr 19, 2012 1:43 am
Not ideal, but an identifier with a : in its name could only be allowed if it has a valid argument list. This wouldn't break the objc bridge, since: NSString...
13168
Steve Dekorte
stevedekorte
Apr 28, 2012 7:08 am
Hi Tom, I'm not on Linux so I can't help directly, but there is a Linux binary that might have what you need on the io home page. Have you tried it? Steve...
13169
Steve Dekorte
stevedekorte
Apr 28, 2012 7:49 am
I have it set to moderate new user messages and then turn off moderation for them if their first message is ok. Sorry that I'm not very diligent wrt new...
13170
Steve Dekorte
stevedekorte
Apr 28, 2012 11:26 pm
Glad to hear you found a solution - I didn't have any luck digging up that code....
13171
tomkane63
Apr 30, 2012 11:52 am
Hi Steve, Thanks for the response. And I can see this might be outside your ken, and it's purely an install problem, which is a bit murky in Linux. I took...
13172
suspended_chord
May 2, 2012 2:48 pm
Hello all, Just posting to announce that I've updated the win32 binary package to fix a directory structure issue I had in the previous release, leading to...
13173
Steve Dekorte
stevedekorte
May 4, 2012 10:23 pm
... I'd recommend cloning the git repo and compiling it on linux. If you install the dependencies, it should compile the video addons and install everything...