Re: enhanced open-funktion

2004-07-15 Thread Greg Boug
o makes the ol' perl5 open FH, "|/usr/bin/foo"; make a lot more sense. Using something like open "p", "/usr/bin/foo"; just wouldn't have the same ring to it. Aside from which, it gets even worse when you consider how you would have to ch

RE: Larry's Apocalypse 1

2001-04-10 Thread Greg Boug
> > While I don't know if Larry will mandate it, I would like this code: > >open PAGE, "http://www.perl.org"; > >while () { > > print $_; > >} > > to dump the HTML for the main page of www.perl.org to get > dumped to stdout. > > Well, this seems innocent enough, but how far

RE: Larry's Apocalypse 1

2001-04-09 Thread Greg Boug
> >The same is true for anything... Sometimes a minimalist approach > >is the right way to do it... The problem is to make sure when > >using a minimalist approach that you don't make it too small... > I think the more important thing is to not add completely redundant > features without a really

RE: Larry's Apocalypse 1

2001-04-08 Thread Greg Boug
> David Whipp wrote: > > > A language that doesn't have everything is actually easier to program > > > in than some that do. > > > > The obvious reply is: "There's more than one way to do it" > To which the obvious reply is: > > 'Although the Perl Slogan is "There's More Than One Way > to Do

RE: What will be the Perl6 code name ?!!

2000-10-19 Thread Greg Boug
I was thinking more along the lines of "TMTOWTDI" ;-) > -Original Message- > From: Garrett Goebel [mailto:[EMAIL PROTECTED]] > Sent: Friday, 20 October 2000 10:47 AM > To: 'iain truskett'; [EMAIL PROTECTED] > Subject: RE: What will be the Perl6 code name ?!! > > > The only acceptable c

RE: RFC 357 (v1) Perl should use XML for documentation instead of POD

2000-10-03 Thread Greg Boug
> > Some arguments for XML: > > > > - Done right, it could be easier to write and maintain > Pod is already "done right", and it's already spectacularly > easy to write and maintain. XML is a hammer in search of nail. Actually, a better analogy would be a its a sledge hammer in search of a fin

RE: RFC 288 (v1) First-Class CGI Support

2000-09-25 Thread Greg Boug
> > General purpose output formatting: no, nyet, nein, non, "over > > my dead body". > I'm guessing you mean "nyet" to "general purpose formatting *only*". :-) > > After sending that last email, I was sitting here drinking a beer, and > it occured to me that tons of headers all the use same form

RE: RFC 288 (v1) First-Class CGI Support

2000-09-24 Thread Greg Boug
> > Parse the CGI context, returning CGI variables into %CGI > Which variables are you talking about? Everything you need is already in > %ENV, as I'm sure you're aware. Yeah, but its encoded... %CGI in an unencoded form would be a nice thing. :) > If you're talking about splitting up the query

RE: RFC 290 (v1) Remove -X

2000-09-24 Thread Greg Boug
> > Perl programmers happy with the -X syntax will need to get used to the > > lengthier replacement. > Blech. I certainly think that long functions are fine and dandy, but I'd > loathe the day that I'd have to give up my -X stuff. I *love* it. I'm a > shell-head! Many Perlers are. I would not cla

RE: PERL6STORM - tchrist's brainstorm list for perl6

2000-09-22 Thread Greg Boug
> > =item perl6storm #0064 > > > > Do something about microsoft's CRLF abomination. > > I think for the case of Microsoft C++ used for the Win32 port, everyone > would be happy if Perl's sysopen, sysread, etc. did not require binmode. > Unfortunately, Microsoft made the decision very early on in i

RE: RFC 83 (v3) Make constants look like variables

2000-09-21 Thread Greg Boug
Apologies if these comments have already been noted... > my $PI : constant = 3.1415926; > my @FIB : constant = (1,1,2,3,5,8,13,21); > my %ENG_ERRORS : constant = (E_UNDEF=>'undefined', E_FAILED=>'failed'); > > Constants can be lexically or globally scoped (or any other new scoping > lev