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

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 11200 - 11229 of 11910   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
11200
Steve. I am now reading the Tutorial as I see the build is mostly done in Io. Do you consider the SGML "problem" I noted a bug and what is the best way for me...
Guy Hulbert
gwhulbert@...
Send Email
Jan 1, 2009
2:53 pm
11201
Hi, Guy, Jonas Eschenburg and I were the last maintainers of Debian packages and looks like both of us bumped into having no time to continue maintaining. ...
Danya Alexeyevsky
me_dendik
Offline Send Email
Jan 1, 2009
3:49 pm
11202
Sorry, typo, the address is: http://dendik.bpa.nu/io/debian/iolanguage-debian...
Danya Alexeyevsky
me_dendik
Offline Send Email
Jan 1, 2009
3:53 pm
11203
... Great. Thanks for this. I volunteered to help out with perl so I'll be setting up a debian build environment asap anyway. I'm not sure about anything...
Guy Hulbert
gwhulbert@...
Send Email
Jan 1, 2009
4:02 pm
11204
... Iit would be nice if the SGML clib had packages for the popular platforms, but as it doesn't I don't know of a better way to make it easy for people to...
Steve Dekorte
stevedekorte
Offline Send Email
Jan 1, 2009
4:08 pm
11205
... This seems to be converting to git nicely[1] ... I'll throw it up on github once I get it working. May take a few days (weeks if I get too busy ;-). [1]...
Guy Hulbert
gwhulbert@...
Send Email
Jan 1, 2009
4:15 pm
11206
... The problem that I see is that it's calling 'sudo' unnecessarily. Everything else built and installed without that (on debian /usr/local is setgid and...
Guy Hulbert
gwhulbert@...
Send Email
Jan 1, 2009
4:29 pm
11207
Hi Dennis A have some related experience to you project and I kept the win32 port up for a while. A few comments: First it looked possible you were confused by...
ljnrf
Offline Send Email
Jan 1, 2009
8:49 pm
11208
Io isn't building on Windows right now. I'll fix it when I find some time but right now I'm really busy. Maybe someone else could have a look?...
Rich Collins
richwcollins
Offline Send Email
Jan 1, 2009
9:12 pm
11209
Hi, I am new to IO and today I wanted to get in touch with IO. For that reason I assigned a task to myself and wrote an IO program to fetch all my flickr...
Andreas Schipplock
schipplock
Offline Send Email
Jan 2, 2009
2:02 am
11210
... I'll take a look at fetchToFile(). In the mean time you can use: File with(photoID .. ".jpg") setContents(URL with(ImageSrc) fetch)...
Steve Dekorte
stevedekorte
Offline Send Email
Jan 2, 2009
2:11 am
11211
... However, having run everything carefully, it seems the problem is this line in the 'clean' target: ./_build/binaries/io_static$(BINARY_SUFFIX) build.io...
Guy Hulbert
gwhulbert@...
Send Email
Jan 2, 2009
4:55 pm
11212
Not related to Io or Caribou, but... :) I'm trying out a recycling, external ref-counting collector in combination with pooled objects. It solves the cache...
Mike
mike_ekim
Offline Send Email
Jan 2, 2009
8:42 pm
11213
Thanks, that works :). - Kind regards, Andreas Schipplock. ... -- - Kind regards, Andreas Schipplock....
Andreas Schipplock
schipplock
Offline Send Email
Jan 2, 2009
8:52 pm
11214
I got it :) A few questions... Float is a type of Integer? These days, I see String more as a root object or "character related" than inheriting from Array,...
Mike
mike_ekim
Offline Send Email
Jan 2, 2009
8:53 pm
11215
Is there any way to do default values in method argument lists, a la PHP? Example: function php_function($default = "default") { echo $default; } I can call...
winkerbeam
Offline Send Email
Jan 2, 2009
9:58 pm
11216
... It's not. ... Right. - Steve...
Steve Dekorte
stevedekorte
Offline Send Email
Jan 3, 2009
1:12 am
11217
... Here's one way: foo := method(a, b, if(b isNil, b = defaultValue) ) I'd add that if you're passing a lot of arguments, you're probably not writing well...
Steve Dekorte
stevedekorte
Offline Send Email
Jan 3, 2009
1:15 am
11218
... I'd like to amend that statement by saying "well-factored" instead of "well-structured". I've seen extremely well structured procedures that still took 22...
Samuel A. Falvo II
falvosa
Offline Send Email
Jan 3, 2009
2:25 am
11219
Thanks for your responses. The method I was working on was one that interacts with a REST API, and it's a general request function that accepts a third...
winkerbeam
Offline Send Email
Jan 3, 2009
2:41 am
11220
I wrote a very simple JSON parser suitable for using with things like web service and CouchDB responses. http://gist.github.com/42776 It doesn't encode JSON,...
winkerbeam
Offline Send Email
Jan 3, 2009
7:05 am
11221
Oh, I didn't even realize quag had made one. http://github.com/quag/io-json/tree/master Could have saved me some work :/...
winkerbeam
Offline Send Email
Jan 3, 2009
7:17 am
11222
... I was referring to Jeremy's proto hierarchy. He has Dictionary as a sorted, ordered collection. I'm confused :) Mike...
Mike
mike_ekim
Offline Send Email
Jan 3, 2009
9:22 pm
11223
... It's not sorted exactly. It's a red black tree with in-order tree traversal. ... Regards, Jeremy Tregunna jeremy.tregunna@......
Jeremy Tregunna
jeremy.tregunna@...
Send Email
Jan 3, 2009
10:52 pm
11224
... It's a good idea to not support random access to characters in strings, except when treating them as arrays. Thus, Array is a very poor model for the...
William Tanksley, Jr
wtanksle
Offline Send Email
Jan 3, 2009
11:18 pm
11225
... While there are disadvantages, some of the advantages of strings as arrays are: - it simplifies the implementation of mutation operations - one can unify...
Steve Dekorte
stevedekorte
Offline Send Email
Jan 4, 2009
4:21 am
11226
... It only simplifies array-type mutation operations, which are NOT the most common string mutations. If you want string-type mutation operations, like...
William Tanksley, Jr
wtanksle
Offline Send Email
Jan 4, 2009
4:48 am
11227
... UTF can be encoded in fixed width encodings such as UCS2 and USC4....
Steve Dekorte
stevedekorte
Offline Send Email
Jan 4, 2009
4:59 am
11228
... UCS2 (UTF-16) is fixed width only in the basic plane... But this doesn't matter. Even using UCS4, Lithuanian or Korean require combining characters for...
William Tanksley, Jr
wtanksle
Offline Send Email
Jan 4, 2009
5:13 am
11229
... Am I misreading this?: "UTF-32 (or UCS-4) is a protocol for encoding Unicode characters that uses exactly 32 bits for each Unicodecode point. All other...
Steve Dekorte
stevedekorte
Offline Send Email
Jan 4, 2009
5:17 am
Messages 11200 - 11229 of 11910   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

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