r31189 -[S06] print default usage messag to standard output, by petition from avar++

2010-06-10 Thread pugs-commits
Author: moritz Date: 2010-06-11 08:11:20 +0200 (Fri, 11 Jun 2010) New Revision: 31189 Modified: docs/Perl6/Spec/S06-routines.pod Log: [S06] print default usage messag to standard output, by petition from avar++ Modified: docs/Perl6/Spec/S06-routines.pod

Re: The obligation of free stuff: Google Storage

2010-06-10 Thread Brandon S. Allbery KF8NH
On Jun 10, 2010, at 07:22 , Leon Timmermans wrote: I agree it should be similar to normal FS interactoin to make matters as intuitive as possible, but I horrified by the idea of overloading open() that way. That's a PHP mistake I wouldn't like seeing repeated. If you want open to do something tha

Re: The obligation of free stuff: Google Storage

2010-06-10 Thread Mark J. Reed
On Thursday, June 10, 2010, Leon Timmermans wrote: > I agree it should be similar to normal FS interactoin to make matters > as intuitive as possible, but I horrified by the idea of overloading > open() that way But open is already overloaded in p5, with pipes etc. We don't want to repeat the mi

Re: The obligation of free stuff: Google Storage

2010-06-10 Thread Leon Timmermans
On Thu, Jun 10, 2010 at 9:15 AM, Richard Hainsworth wrote: > Ideally [at least, what I would like], managing a file on a remote resource > should be the same as managing one locally, eg. > > my Amazon $fn = open("$path-to-input-file-location/$file-name", :r) or die > $!; > for $fn.readlines { }; >

Re: The obligation of free stuff: Google Storage

2010-06-10 Thread Richard Hainsworth
Ideally [at least, what I would like], managing a file on a remote resource should be the same as managing one locally, eg. my Amazon $fn = open("$path-to-input-file-location/$file-name", :r) or die $!; for $fn.readlines { }; $fn.close; my Google $fn = open("$path-to-output-file-location/$fil