Search the web
Sign In
New User? Sign Up
iolanguage · Io
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want to share photos of your group with the world? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.

Messages

  Messages Help
Advanced
Messages 4828 - 4857 of 10708   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
4828
... The thing is that useTemporaryPath would have to change so that it opens the file in addition to simply coming up with the filename, otherwise the race...
Nick Welch
mackstann
Offline Send Email
Dec 1, 2004
8:40 am
4829
... Kind of a late reply on this, but I finally got up and started working on an implementation of squareBrackets(). I think there's a bug in the parser,...
pocket_programmer
pocket_progr...
Offline Send Email
Dec 1, 2004
7:13 pm
4830
I've been experimenting a bit sending HTTP GET and POST requests from ioServer (using a modified WebRequest.io script). To get the header fields right, I've...
Jon Kleiser
jon_kleiser
Offline Send Email
Dec 2, 2004
2:03 pm
4831
... I've thought a bit more about this. Maybe it hasn't got so much to do with Io. May it's the way Mac OS X works. I tried a couple of curl http commands in...
Jon Kleiser
jon_kleiser
Offline Send Email
Dec 2, 2004
3:29 pm
4832
... Yes. The socket just makes socket calls and is protocol agnostic. Since proxying is a procotol specific thing, the Socket code will not take care of that...
Kentaro A. Kurahone
akurahone
Offline Send Email
Dec 2, 2004
11:39 pm
4833
I would find it convenient (and consistent with today's optional endIndex argument) if "xyz" substring(startIndex, Nil) was legal and returned the same as...
Jon Kleiser
jon_kleiser
Offline Send Email
Dec 3, 2004
12:36 pm
4834
... Jon, Can you provide an example where substring(startIndex, Nil) is preferable to substring(startIndex)? -- Steve...
Steve Dekorte
stevedekorte
Offline Send Email
Dec 3, 2004
9:01 pm
4835
Excuse me, Jon: - - - - - - I can't resist, here are an example: #!/usr/bin/env io # (c) Fray Byte: Finding calabazas... 2004 :) ?Importer turnOff FindRoot :=...
Fray Byte
fraybyte
Offline Send Email
Dec 3, 2004
11:15 pm
4836
I am having problems compiling a game that uses IoVM (http://tnlgame.net/). I am getting the following error: invalid conversion from `void* ' to `void**' The...
Brian
nat35
Offline Send Email
Dec 4, 2004
2:34 am
4837
... Hi Brian, Those are warnings, not errors, right? -- Steve...
Steve Dekorte
stevedekorte
Offline Send Email
Dec 4, 2004
10:08 am
4838
... optional endIndex argument) if "xyz" substring(startIndex, Nil) was legal and returned the same as "xyz" substring(startIndex). ... Yes, of course. Here's...
Jon Kleiser
jon_kleiser
Offline Send Email
Dec 4, 2004
11:45 am
4839
... Hi Steve, I get these too. They are errors when compiled as C++. I've always fixed them by inserting explicit casts (just a few lines). I'll prepare a...
Jonas Eschenburg
indyjo@...
Send Email
Dec 5, 2004
1:58 pm
4840
... Ok, I've added the casts. The next release will also contain: #ifdef __cplusplus extern "C" { #endif ... in the IoVM headers. -- Steve...
Steve Dekorte
stevedekorte
Offline Send Email
Dec 5, 2004
8:41 pm
4841
I have a version of IoVM that uses Win32 (no Cygwin required) for those doing embedded stuff. Seems to pass the test suite. Haven't done Server yet - maybe...
David Vronay
davevronay
Offline Send Email
Dec 6, 2004
4:48 pm
4842
Hello David, ... I can host it, but I suspect Steve would be more interested in a patch (depending on how much you had to change) to make it natively work with...
Daniel Vollmer
dbvollmer
Offline Send Email
Dec 6, 2004
5:01 pm
4843
... Yes, that would be great. We can also host the binary via Ken's and Zack's mirrors. -- Steve...
Steve Dekorte
stevedekorte
Offline Send Email
Dec 6, 2004
9:59 pm
4844
I wanted to do some profiling in Io, but I would have to change each Makefile and add a -pg. What's the best way to set global flags? Using 'include' to...
Mike
mike_ekim
Offline Send Email
Dec 6, 2004
11:54 pm
4845
http://www.iolanguage.com/Downloads/ Release 2004 12 06 - fixes ============================================= - comparison changed to return argument, so a < b...
Steve Dekorte
stevedekorte
Offline Send Email
Dec 7, 2004
4:11 am
4846
Here's another thing that gives me (OSX) Bus error when Io exits: m := Map clone do(for(i, 97, 98, atPut(i asCharacter, "dummy"))) This is not a new bug. I can...
Jon Kleiser
jon_kleiser
Offline Send Email
Dec 7, 2004
12:33 pm
4847
Hi Steve, It seems like Io2Objc object do not implement basic Io object methods (such as isNil or comparisons), Is there a reason for this ? Thanks, --...
Sébastien Pierre
kaze_von_nk
Offline Send Email
Dec 7, 2004
4:29 pm
4848
... The idea with those objects, is that they are just proxies for Objective-C objects - they just forward calls to them and return the results. Do you think...
Steve Dekorte
stevedekorte
Offline Send Email
Dec 7, 2004
6:22 pm
4849
... Basic operations such as isNil and equality should be implemented for a proper integration of Objective-C objects into Io. Example: a := Nil a =...
Sébastien Pierre
kaze_von_nk
Offline Send Email
Dec 7, 2004
8:22 pm
4850
... Here is a test that shows something can still be improved: Io> 2 < 1 < 3 ==> 3 I would have expected Nil. /Jon...
Jon Kleiser
jon_kleiser
Offline Send Email
Dec 8, 2004
3:51 pm
4851
... Right. My guess would be that 2 < 1 is returning Nil, and Nil < 3 is returning True. Nil should override all comparison methods to return Nil to protect...
Scott Dunlop
swdunlop
Offline Send Email
Dec 8, 2004
4:01 pm
4852
I'm a bit frustrated over the current state of the Io docs. The List docs says length is the same as count. It's not. List translate: "Replace each value with...
Jon Kleiser
jon_kleiser
Offline Send Email
Dec 8, 2004
4:09 pm
4853
Wondering about the current state of the ObjcBridge. The last few builds do not seem to work as the documentation specifies. i.e., i get the following response...
Dave Morford
dpmorford
Offline Send Email
Dec 8, 2004
8:43 pm
4854
... Thanks for the bug report. I've added a fix. Cheers, -- Steve...
Steve Dekorte
stevedekorte
Offline Send Email
Dec 9, 2004
5:49 am
4855
I've started a wiki with editable Io documentation, so that we can fix it up ourselves. Steve approves of this idea. What I haven't done yet is transferred...
Jason Grossman
jas0ngr0ssman
Offline Send Email
Dec 9, 2004
9:06 pm
4856
... We have been playing with IoWiki for a little project in our local gaming group, but have had real trouble with the 5k page size limit. Has there been an...
Scott Dunlop
swdunlop
Offline Send Email
Dec 10, 2004
3:17 am
4857
... What do you mean "5k page size limit"? -- Steve...
Steve Dekorte
stevedekorte
Offline Send Email
Dec 10, 2004
3:30 am
Messages 4828 - 4857 of 10708   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

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