Re: Vocabulary

2003-12-12 Thread Casey West
t a couple go-rounds and it can be stored in CVS for safe keeping (and maintaining). Send me diffs if you like. Document below sig. Casey West -- Usenet is like Tetris for people who still remember how to read. -- Button from the Computer Museum, Boston, MA =pod =head1 NAME perlvo

Perl Documentation Project (PDP) BOF

2002-07-16 Thread Casey West
lroom A in the East Tower Moderated by: Casey West, Aaronsen Group Ltd. The Perl Documentation Project (PDP) is my attempt to create a centralized documentation system for Perl like Linux has in it's Linux Documentation Project (LDP). The LDP has been a boon for Linux and I think Perl is

Re: Perl6 -- what is in a name?

2002-01-28 Thread Casey West
away from it ever since. : :Perl6 isn't going to make everyone happy. Until you start running their code on parrot, or compile it to Perl bytecode. :-) Darn, nasty thoughts out loud again. Casey West -- "Louis Pasteur's theory of germs is ridiculous fiction". -- Pierre Pachet, Professor of Physiology at Toulouse, 1872

Re: need help making auction

2002-01-23 Thread Casey West
:http://www.everysoft.com/frames.html Online Forum: http://209.15.166.219/cgi-bin/forum.pl Please go to their forum and ask them to help you, I'm sure they would be more than happy to. No further response is necessary. Casey West -- Technology makes it possible for people to

Re: Apocalypse 4 : The Strange Case of the STRANGE CASE

2002-01-23 Thread Casey West
On Wed, Jan 23, 2002 at 03:21:37PM -0500, Casey West wrote: : :On Wed, Jan 23, 2002 at 01:45:44PM -0600, Jonathan Scott Duff wrote: :: ::On Wed, Jan 23, 2002 at 11:50:54AM +, Tim Bunce wrote: ::> Early on in the life of Perl 5 Larry adopted the convention that ::> subroutines that Perl

Re: Apocalypse 4 : The Strange Case of the STRANGE CASE

2002-01-23 Thread Casey West
]. : :Not early enough to catch import() though. Oh well ... Perl 6 will :fix that. (For various definitions of "fix" ;-) import() is not called automatically by Perl. It's called automatically by the module Exporter.pm. Subtle but important difference there. Casey West -- Shoot

Re: Apoc4: The loop keyword

2002-01-21 Thread Casey West
a while is more a :part of the "inner stuff" than the "outer". What's the chance that it could :be considered so? So you're suggesting that we fake lexical scoping? That sounds more icky than sticking to true lexical scoping. A block dictates scope, not

Missing files mentioned in MANIFEST

2002-01-03 Thread Casey West
org I notice that MANIFEST and io/* stuff were updated by Dan about 4 hours ago so I would imagine this is a thinko. Just a heads up. Casey West -- Shooting yourself in the foot with Scheme As Lisp, but none of the other appendages are aware of this happening.

Re: Perl DOC BOF

2001-07-30 Thread Casey West
that translate POD. Of course, if the wiki internal format isn't some type of DocBook, it's not going to solve all our problems very well. More on this later ;-) Casey West -- Shooting yourself in the foot with Linux Generous programmers from around the world all join forces to help y

The Real Perfect Name(tm)

2001-07-23 Thread Casey West
I just met this camel at the San Diego Zoo. His name is Santana. He is IIRC 3 months old. My proposal: Perl 6 should be code named Santana http://geeknest.com/~cwest/tpc/pictures/four/dscn0039.jpg Since we're all sitting here at this meeting, I figure it's on topic. :-)

Re: So, we need a code name...

2001-05-03 Thread Casey West
;Pisa"... : : Appearances notwithstanding, I am seriously suggesting "Perk". The name : is, er, perky. Hopefully the implementation would be too. I agree. There are "perks" to building Perl 6, etc. "Think happy thoughts Peter" Casey West -- "In case of fire, do your utmost to alarm the hotel porter." --In a Vienna hotel

Re: Dot can DWIM without whitespace

2001-04-25 Thread Casey West
{ -href => 'http://geeknest.com' }, $cgi -> font( { -color => 'red' }, 'My homepage!', ), ), $cgi -> end_html; In anycase, it happens frequently already. -- Casey West

Re: a modest proposal Re: s/./~/g

2001-04-25 Thread Casey West
e for -> : : $mydsn->Sql("$mysqlstmt " . $moresql) ; : $mydsn~Sql("$mysqlstmt " . $moresql) ; In that case I'd rather use this syntax: $obj'attribute; $obj'constructor'method; Or... maybe not... -- Casey West

Re: YA string concat proposal

2001-04-24 Thread Casey West
maybe this is: : :$a ca $b; : : For "concat after"? Now this sparks my interest. :) The only think I don't like is: $a ce $b; $a ca $b; because I'm so used to seing $a [char]= $b; I would think of: $a c= $b; but then the ca() idea might not be feasible unless we thought: $a ce= $b; $a ca= $b; was a good idea. -- Casey West

Re: how about just juxtaposing? (Re: Sane "+" string concat proposal)

2001-04-24 Thread Casey West
e finding syntax errors a bit difficult, as many : will simply become concatination operators. Consider : : print "Foo" : foo("bar"); : : Did the author forget a semi-colon, or did they intend to concatinate : there? Also, consider this... Or, did they intend to concatinate 'print' and "Foo" in void context? -- Casey West

Re: Sane "+" string concat proposal

2001-04-24 Thread Casey West
we go this route, we may as well just use 'cc'. Much less typing : (no chording), less confusing, analagous to 'eq' and : 'gt'. I like 'cc' for that very reason. String operators should look the same, imho. -- Casey West

Re: Sane "+" string concat proposal

2001-04-24 Thread Casey West
"$onemore" + "$okanother" +"$wowlots" : : Personally, my fingers got really tired of having to use the shift key for : all the quotes, the $, and the +. Of course, I'd normally just write that : as : : $longstring = join('', $short, $another, ... , $wowlots); I would do that for this example anyhow. -- Casey West

Re: Sane "+" string concat proposal

2001-04-24 Thread Casey West
+ 2) + "$three"; Numeric context wins. I am not opposed to this idea, I see it to be quite easy to understand, even without explicit parens, though they help. -- Casey West

Re: Strings vs Numbers (Re: Tying & Overloading)

2001-04-24 Thread Casey West
No thanks. We already have the ability to put white space around '->' which is helpfull a la Soap::Lite. Besides, I can't think of instances where white space matters without being except: print <<__EOT__ __EOT__ which is easily avoidable via 'print <<" __EOT__"'. -- Casey West