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 10101 - 10130 of 10708   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
10101
Hi everybody, esp. Steve, as there seemingly hasn't been much development on Io lately, I thought it might be a good time to kindly ask for inclusion of the...
Jonas Eschenburg
jonas_eschen...
Offline Send Email
Sep 10, 2007
6:31 pm
10102
... Thanks for the patch. When I do: git-am j.patch I get: "previous dotest directory .dotest still exists but mbox given." Suggestions?...
Steve Dekorte
stevedekorte
Offline Send Email
Sep 11, 2007
2:53 am
10103
... The .dotest directory is where git-am saves its state when applying a patch fails. You can then resolve the issue manually and call "git-am --resolved" our...
Jonas Eschenburg
jonas_eschen...
Offline Send Email
Sep 11, 2007
9:11 am
10104
mod_io has been out of date for quite some time as io has evolved quite a bit in terms of organization. I do have the source code for at least mod_io at home,...
C. Olson
xgrendelxprimex
Offline Send Email
Sep 20, 2007
3:43 pm
10105
Hi Chris- I've built a decently robust Io appserver that talks direct HTTP, integrates with PostgreSQL and Memcached, and has built-in session management- Let...
Scott Solmonson
scosol
Offline Send Email
Sep 20, 2007
6:04 pm
10106
How do I call a method on self for which I have the slot name (in a Sequence) when I also want to send along arguments in the message call? Something like: ...
robert_feldt
Offline Send Email
Sep 25, 2007
1:38 pm
10107
It's amazing how the act of writing down your query makes you find the solution on your own. getSlot(methodName) call(1) seems to be one solution. Sorry, ...
robert_feldt
Offline Send Email
Sep 25, 2007
1:39 pm
10108
... You may be looking for performWithArgList: "(methodName, argList) Performs the method corresponding to methodName with the arguments in the argList."...
John Nowak
honknojaw
Offline Send Email
Sep 25, 2007
2:54 pm
10109
Or just simply: getSlot(slotThatHoldsTheName) call(arg1, arg2) or perform(slotName, arg1, arg2) -- Jeremy Tregunna jtregunna@......
Jeremy Tregunna
jtregunna_io
Offline Send Email
Sep 25, 2007
9:09 pm
10110
Oops, then forget my reply just now. -- Jeremy Tregunna jtregunna@......
Jeremy Tregunna
jtregunna_io
Offline Send Email
Sep 25, 2007
9:09 pm
10111
... There's a difference between the two in terms of which context the method will be called in, yes? I'm without an Io interpreter or the ability to get one...
John Nowak
honknojaw
Offline Send Email
Sep 26, 2007
4:45 am
10112
The short answer is: not if you know what you're doing. If you pass those to the same object (in my example, the locals) then no there's no real noticeable...
Jeremy Tregunna
jtregunna_io
Offline Send Email
Sep 26, 2007
12:11 pm
10113
Thanks John (and all of you who answered), performWithArgList seems to be exactly what I'm after. In general, if I have a list of arguments and want to send...
Robert Feldt
robert_feldt
Offline Send Email
Sep 26, 2007
4:01 pm
10114
Hi, I've mentioned a couple of times earlier that there seems to be a Color problem in Io (at least on my Macs), and now I've found out roughly where the...
Jon Kleiser
jon_kleiser
Offline Send Email
Sep 28, 2007
1:04 pm
10115
Io Release 2007 10 03 Summary: - Cairo binding added (by Daniel Rosengren and Trevor Fancher) - TagDB binding added - Regex overhaul (by Daniel Rosengren) -...
Steve Dekorte
stevedekorte
Offline Send Email
Oct 3, 2007
7:33 pm
10116
I see the bug. I will fix it...
Rich Collins
richwcollins
Offline Send Email
Oct 4, 2007
2:49 am
10117
Hi, As far as I can see, your fix hasn't made it into the git repo yet ... /Jon...
Jon Kleiser
jon_kleiser
Offline Send Email
Oct 22, 2007
10:49 am
10118
Did you ever get my patch, Steve?...
Rich Collins
richwcollins
Offline Send Email
Oct 23, 2007
8:09 am
10119
I noticed that there is no openForWriting using mode "w" in Io's File. The open() function uses the default mode, which is "r+". Is there any deeper reason for...
Jonas Eschenburg
jonas_eschen...
Offline Send Email
Oct 29, 2007
4:40 pm
10120
... I do: File with("foo.txt") remove openForWriting But if you wanted a method, it would be easy to add: File removeAndThenOpenForWriting := method(remove;...
Steve Dekorte
stevedekorte
Offline Send Email
Oct 29, 2007
9:58 pm
10121
... It does not seem a good way: it won't work if you only have permissions for file modification, not for directory modification. Cheers, Danya....
Danya
me.dendik@...
Send Email
Oct 30, 2007
2:55 pm
10122
Well, it would have to be File with("foo.txt") truncateToSize(0) openForUpdating as remove requires permission for directory modification and openForWriting is...
Jonas Eschenburg
jonas_eschen...
Offline Send Email
Oct 30, 2007
5:20 pm
10123
I've started another attempt at writing a tome for Io. However, different in this attempt as to previous attempts, this will be more traditional rather than...
Jeremy Tregunna
jtregunna_io
Offline Send Email
Oct 31, 2007
1:34 am
10124
Apologies if this is a duplicate report. (By the way, the issue tracker on the site isn't working.) - - - Io fails to compile on Leopard due to issues related...
John Nowak
honknojaw
Offline Send Email
Nov 4, 2007
3:59 am
10125
... <snip> Yeah. I reported this in IRC a little while ago. It doesn't seem like anyone knows the specific part of ucontext to fix in this case. When I first...
Brian Mitchell
binary42@...
Send Email
Nov 4, 2007
4:22 am
10126
... <snip> Yeah. I reported this in IRC a little while ago. It doesn't seem like anyone knows the specific part of ucontext to fix in this case. When I first...
Brian Mitchell
binary42@...
Send Email
Nov 4, 2007
4:25 am
10127
... Here's a couple of fixes that will help Io build for OS X Leopard: * Change ucontext.h imports in libcoroutine to sys/ucontext.h . * If OpenGL gives you...
Joseph Osborn
pocket_progr...
Offline Send Email
Nov 4, 2007
4:26 pm
10128
One more thing I forgot in my last post: For some reason the inline IOBOOL function doesn't compile, so I had to change it to a macro....
Joseph Osborn
pocket_progr...
Offline Send Email
Nov 4, 2007
4:27 pm
10129
Is Flux the primary GUI toolkit for Io? Thanks, Josh...
Josh Flowers
joshflowers@...
Send Email
Nov 4, 2007
7:12 pm
10130
... Hi Josh, Flux is the official but unfinished one. I think there is also a GTK binding....
Steve Dekorte
stevedekorte
Offline Send Email
Nov 5, 2007
9:46 pm
Messages 10101 - 10130 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