Re: Gather/take & return, PHP7-style

2015-12-10 Thread Aristotle Pagaltzis
all a generator as a normal function, etc.) Do they have any examples of where this helps? Regards, -- Aristotle Pagaltzis // <http://plasmasturm.org/>

Re: How to push a hash on an array without flattening it to Pairs?

2015-09-26 Thread Aristotle Pagaltzis
XXX in the following to make it real? $ 6 'my %h = a => 42, b => 666; dd $_ for %h,XXX' Hash %h = {:a(42), :b(666)} :a(42) :b(666) Regards, -- Aristotle Pagaltzis // <http://plasmasturm.org/>

Re: How to push a hash on an array without flattening it to Pairs?

2015-09-26 Thread Aristotle Pagaltzis
ening? Even Perl 5 is nicer in that situation… -- Aristotle Pagaltzis // <http://plasmasturm.org/>

Re: Proposed new string methods: trim-rw, trim-leading-rw, trim-trailing-rw

2015-09-09 Thread Aristotle Pagaltzis
l operator is the generic solution, which obviates the endless writing of both a .trim and a .trim-rw, and so on, for every single method. (Or .sort vs .sort! etc etc ad nauseam…) Regards, -- Aristotle Pagaltzis // <http://plasmasturm.org/>

Re: bufs and utf8

2015-09-06 Thread Aristotle Pagaltzis
Someone who does in fact do Perl 6 will have to tell you whether I’ve just been running my mouth randomly here. Regards, -- Aristotle Pagaltzis // <http://plasmasturm.org/>

Re: perl6/book fonts: why Adobe commercial fonts?

2015-07-22 Thread Aristotle Pagaltzis
* Tom Browder tom.brow...@gmail.com [2015-07-23 01:05]: (There are plenty of free and handsome fonts to be had.) Some of the best of which, ironically, also from Adobe… -- Aristotle Pagaltzis // http://plasmasturm.org/

Re: The invocation operators .* and .+

2015-06-17 Thread Aristotle Pagaltzis
* yary not@gmail.com [2015-06-17 17:10]: Perl6's TEARDOWN Sorry for the confusion. It’s not in Perl 6. I invented .teardown for this example because I didn’t want to call it .destroy – that’s all. -- Aristotle Pagaltzis // http://plasmasturm.org/

Re: The invocation operators .* and .+

2015-06-16 Thread Aristotle Pagaltzis
* Michael Zedeler mich...@zedeler.dk [2015-06-16 13:10]: On 06/16/15 12:24, Aristotle Pagaltzis wrote: * Michael Zedeler mich...@zedeler.dk [2015-06-16 11:35]: This is working exactly as specified in the synopsis, but does Perl 6 NEED anything like this? Just because something is possible

Re: Language design

2015-06-16 Thread Aristotle Pagaltzis
* Michael Zedeler mich...@zedeler.dk [2015-06-16 18:55]: For instance, why have Complex and Rat numbers in the core? If you're not working in a very specialized field (which probably *isn't* numerical computation), those datatypes are just esoteric constructs that you'll never use.

Re: The invocation operators .* and .+

2015-06-16 Thread Aristotle Pagaltzis
think they need this in Perl, similar people will inevitably exist in any other language where this can be done). Regards, -- Aristotle Pagaltzis // http://plasmasturm.org/

Re: Definitions: compiler vs interpreter [was: Rationale for a VM + compiler approach instead of an interpreter?]

2014-12-10 Thread Aristotle Pagaltzis
) that itself interprets another program (the optree), which in turn was compiled from the user Perl program earlier on. Once you stop trying to artificially force everything into a single absolute distinction, the entire debate about which is which vanishes. Regards, -- Aristotle Pagaltzis // http

Definitions: compiler vs interpreter [was: Rationale for a VM + compiler approach instead of an interpreter?]

2014-12-06 Thread Aristotle Pagaltzis
, and that they are more or less the only real examples of such. Regards, -- Aristotle Pagaltzis // http://plasmasturm.org/

Good error messages: going the extra mile

2010-04-06 Thread Aristotle Pagaltzis
the speculative parse machinery in place. It seems like this should be implementable with reasonable effort? Regards, -- Aristotle Pagaltzis // http://plasmasturm.org/

Re: r30205 - docs/Perl6/Spec

2010-04-02 Thread Aristotle Pagaltzis
+    .doit(1,2,3): { $^a = $^b }       # okay Or how these two differ from each other: +    .doit(1,2,3):{ $^a = $^b }       # okay +    .doit(1,2,3):{ $^a = $^b }       # okay (Neither can I.) Regards, -- Aristotle Pagaltzis // http://plasmasturm.org/

Re: Re-thinking file test operations

2009-07-09 Thread Aristotle Pagaltzis
* Moritz Lenz mor...@faui2k3.org [2009-07-10 00:25]: stat($str, :e)# let multi dispatch handle it for us This gets my vote. -- Aristotle Pagaltzis // http://plasmasturm.org/

Re: .trim and 'gilding the lilly'

2009-01-26 Thread Aristotle Pagaltzis
for such a relatively rare thing.) Sticking to a single common use-case eliminates the need for configuration API, improving usability as a whole. Keep it simple. Regards, -- Aristotle Pagaltzis // http://plasmasturm.org/

Re: Converting a Perl 5 pseudo-continuation to Perl 6

2009-01-26 Thread Aristotle Pagaltzis
* Aristotle Pagaltzis pagalt...@gmx.de [2009-01-02 23:00]: That way, you get this combination: sub pid_file_handler ( $filename ) { # ... top half ... yield; # ... bottom half ... } sub init_server { # ... my $write_pid

Re: Trimming arrays

2009-01-13 Thread Aristotle Pagaltzis
be simply @array».values».=trim; Imagine writing this in another language. Regards, -- Aristotle Pagaltzis // http://plasmasturm.org/

Re: [PATCH] Add .trim method

2009-01-12 Thread Aristotle Pagaltzis
* Ovid publiustemp-perl6langua...@yahoo.com [2009-01-12 16:05]: Or all could be allowed and $string.trim(:leading0) could all $string.rtrim internally. ++ Regards, -- Aristotle Pagaltzis // http://plasmasturm.org/

Re: [PATCH] Add .trim method

2009-01-12 Thread Aristotle Pagaltzis
to type `.trim(:start)` when I could just do `.ltrim` though. Regards, -- Aristotle Pagaltzis // http://plasmasturm.org/

Re: [PATCH] Add .trim method

2009-01-12 Thread Aristotle Pagaltzis
* Aristotle Pagaltzis pagalt...@gmx.de [2009-01-12 20:55]: Also `:!start` to imply `:end` unless `:!end` (which in turn implies `:start` unless `:!end`)? Ugh, forget this, I was having a blank moment. Actually that makes me wonder now whether it’s actually a good idea at all to make

Re: [PATCH] Add .trim method

2009-01-12 Thread Aristotle Pagaltzis
, -- Aristotle Pagaltzis // http://plasmasturm.org/

Re: [PATCH] Add .trim method

2009-01-12 Thread Aristotle Pagaltzis
* Larry Wall la...@wall.org [2009-01-12 21:55]: * Aristotle Pagaltzis pagalt...@gmx.de [2009-01-12 21:20]: Plus if there are separate `.ltrim` and `.rtrim` functions it would be better to implement `.trim` by calling them rather than vice versa, so it wouldn’t even be less efficient two

Re: [PATCH] Add .trim method

2009-01-12 Thread Aristotle Pagaltzis
in that picture. But of course RTL reverses the relation of left/right in memory and left/right on screen. I think a week’s worth of wolf sleep is catching up to me, sorry. Regards, -- Aristotle Pagaltzis // http://plasmasturm.org/

Re: [PATCH] Add .trim method

2009-01-12 Thread Aristotle Pagaltzis
and right trimming are infrequent compared to the frequency of basic input editing. Good point, rings true. Regards, -- Aristotle Pagaltzis // http://plasmasturm.org/

Re: r24846 - docs/Perl6/Spec

2009-01-10 Thread Aristotle Pagaltzis
* jerry gay jerry@gmail.com [2009-01-09 22:45]: it's eager for the match to close Impatient, hasty? Regards, -- Aristotle Pagaltzis // http://plasmasturm.org/

Re: r24737 - docs/Perl6/Spec

2009-01-03 Thread Aristotle Pagaltzis
* jerry gay jerry@gmail.com [2009-01-02 21:30]: the most likely short names, C -d -o -c are all taken by either p5 or p6 command-line. Is `-q` taken? Regards, -- Aristotle Pagaltzis // http://plasmasturm.org/

Re: Converting a Perl 5 pseudo-continuation to Perl 6

2009-01-02 Thread Aristotle Pagaltzis
$write_pid = pid_file_handler( $optionspid_file ); become_daemon(); $write_pid(); # ... } Regards, -- Aristotle Pagaltzis // http://plasmasturm.org/

Re: Support for ensuring invariants from one loop iteration to the next?

2008-12-19 Thread Aristotle Pagaltzis
in the infinite loop the overall effect of certain points is depenent on other points. In Schwern’s terms, goto’ing into the middle of a terminating loop is more skimmable than last’ing out of the middle of an infinite loop. Regards, -- Aristotle Pagaltzis // http://plasmasturm.org/

Re: Support for ensuring invariants from one loop iteration to the next?

2008-12-18 Thread Aristotle Pagaltzis
to say in the absolutely most straightforward manner possible. The order of execution is crystal clear, the intent behind the loop completely explicit. -- *AUTOLOAD=*_;sub _{s/(.*)::(.*)/print$2,(,$\/, )[defined wantarray]/e;$1} Just-another-Perl-hack; #Aristotle Pagaltzis // http://plasmasturm.org/

Re: Support for ensuring invariants from one loop iteration to the next?

2008-12-17 Thread Aristotle Pagaltzis
, -- Aristotle Pagaltzis // http://plasmasturm.org/

Re: Files, Directories, Resources, Operating Systems

2008-12-10 Thread Aristotle Pagaltzis
to provide even a rudimentary abstract interface. Regards, -- Aristotle Pagaltzis // http://plasmasturm.org/

Re: Files, Directories, Resources, Operating Systems

2008-12-09 Thread Aristotle Pagaltzis
permissions between Win32 and Unix? I don’t see such a thing being possible at all: there are too many differences with pervasive consequences. The most you can reasonably do (AFAICT) is map Win32-style owner/access info to a Unix-style API for reading only. Regards, -- Aristotle Pagaltzis

Re: Files, Directories, Resources, Operating Systems

2008-12-09 Thread Aristotle Pagaltzis
* Aristotle Pagaltzis [EMAIL PROTECTED] [2008-12-10 01:10]: Well go on. Btw, I just realised that it can be read as sarcastic, which I didn’t intend. I am honestly curious, even if skeptical. I am biased, but I am open to be convinced. Regards, -- Aristotle Pagaltzis // http://plasmasturm.org/

Re: Files, Directories, Resources, Operating Systems

2008-12-08 Thread Aristotle Pagaltzis
/OsListdirProblem Regards, -- Aristotle Pagaltzis // http://plasmasturm.org/

Re: Files, Directories, Resources, Operating Systems

2008-12-07 Thread Aristotle Pagaltzis
their own second system. You want to invite a bunch of PHP kids? I’m game. :-) Regards, -- Aristotle Pagaltzis // http://plasmasturm.org/

Re: Support for ensuring invariants from one loop iteration to the next?

2008-12-06 Thread Aristotle Pagaltzis
, and then it breaks down visually, particularly if you throw an arrow in there. Regards, -- Aristotle Pagaltzis // http://plasmasturm.org/

Re: how to write literals of some Perl 6 types?

2008-12-05 Thread Aristotle Pagaltzis
. Regards, -- Aristotle Pagaltzis // http://plasmasturm.org/

Re: Files, Directories, Resources, Operating Systems

2008-12-04 Thread Aristotle Pagaltzis
in practice. All that’s necessary is to design the interface such that it won’t obstruct subsequent “userland” solution approaches. Regards, -- Aristotle Pagaltzis // http://plasmasturm.org/

Re: Support for ensuring invariants from one loop iteration to the next?

2008-12-04 Thread Aristotle Pagaltzis
:10]: Aristotle Pagaltzis wrote: * Bruce Gray [EMAIL PROTECTED] [2008-12-03 18:20]: In Perl 5 or Perl 6, why not move the grep() into the while()? Because it's only a figurative example and you're supposed to consider the general problem, not nitpick the specific example… But how

Re: Support for ensuring invariants from one loop iteration to the next?

2008-12-04 Thread Aristotle Pagaltzis
,(,$\/, )[defined wantarray]/e;$1} Just-another-Perl-hack; #Aristotle Pagaltzis // http://plasmasturm.org/

Re: Support for ensuring invariants from one loop iteration to the next?

2008-12-04 Thread Aristotle Pagaltzis
say IF NOT loop.last ; ... ; END ; to do something on all iterations but the ultimate. Regards, -- Aristotle Pagaltzis // http://plasmasturm.org/

Re: Files, Directories, Resources, Operating Systems

2008-12-04 Thread Aristotle Pagaltzis
* Mark Overmeer [EMAIL PROTECTED] [2008-12-04 16:50]: * Aristotle Pagaltzis ([EMAIL PROTECTED]) [081204 14:38]: Furthermore, from the point of view of the OS, even treating file names as opaque binary blobs is actually fine! Programs don’t care after all. In fact, no problem shows up until

Support for ensuring invariants from one loop iteration to the next?

2008-12-03 Thread Aristotle Pagaltzis
) { $_-do_something( ++$i ) for @stuff; } # plus some way of attaching this fix-up just once { @stuff = grep !$_-valid, @stuff } Regards, -- Aristotle Pagaltzis // http://plasmasturm.org/

Re: Support for ensuring invariants from one loop iteration to the next?

2008-12-03 Thread Aristotle Pagaltzis
* Bruce Gray [EMAIL PROTECTED] [2008-12-03 18:20]: In Perl 5 or Perl 6, why not move the grep() into the while()? Because it’s only a figurative example and you’re supposed to consider the general problem, not nitpick the specific example… Regards, -- Aristotle Pagaltzis // http

Re: S16: chown, chmod

2008-11-26 Thread Aristotle Pagaltzis
, which says TMTOWTDI yet tries to provide one good default way of doing any particular thing. Regards, -- Aristotle Pagaltzis // http://plasmasturm.org/

Re: S16: chown, chmod

2008-11-23 Thread Aristotle Pagaltzis
should be designed to encourage people to do things correctly and to make it hard to even think about the nearly certainly wrong way. Regards, -- Aristotle Pagaltzis // http://plasmasturm.org/

Re: S16: chown, chmod

2008-11-23 Thread Aristotle Pagaltzis
on NFS filesystems reported 3–6-fold speedups of these commands, without the local case being adversely affected. /offtopic-diversion Regards, -- Aristotle Pagaltzis // http://plasmasturm.org/

Re: S16: chown, chmod

2008-11-23 Thread Aristotle Pagaltzis
passes and the operation is attempted. Regards, -- Aristotle Pagaltzis // http://plasmasturm.org/

Re: Store captures and non-captures in source-string order

2008-10-13 Thread Aristotle Pagaltzis
* Larry Wall [EMAIL PROTECTED] [2008-10-13 19:00]: Maybe we're looking at a generalized tree query language That’s an intriguing observation. Another case for having some XPath-ish facility in the language? Regards, -- Aristotle Pagaltzis // http://plasmasturm.org/

Re: Stackoverflow.com Perl 6 threads of interest

2008-10-07 Thread Aristotle Pagaltzis
to bring up the right QA. The long human-readable path segment after that is merely for the benefit of humans. Regards, -- Aristotle Pagaltzis // http://plasmasturm.org/

Re: Should $.foo attributes without is rw be writable from within the class

2008-09-18 Thread Aristotle Pagaltzis
attempted at -e line 1. -- *AUTOLOAD=*_;sub _{s/(.*)::(.*)/print$2,(,$\/, )[defined wantarray]/e;$1} Just-another-Perl-hack; #Aristotle Pagaltzis // http://plasmasturm.org/

Re: Should $.foo attributes without is rw be writable from within the class

2008-09-18 Thread Aristotle Pagaltzis
likely for class- private ones. So Perl 6 defaults the right thing here, it would seem. Regards, -- Aristotle Pagaltzis // http://plasmasturm.org/

Re: Iterator semantics

2008-09-11 Thread Aristotle Pagaltzis
easier than `1..$n`. For the latter’s iterator the answer to “do you have another element” implies a conditional somewhere, whereas for the former’s it’s trivially “yes.” Regards, -- Aristotle Pagaltzis // http://plasmasturm.org/

The False Cognate problem and what Roles are still missing

2008-08-20 Thread Aristotle Pagaltzis
, of course, you explicitly stick your hands in), kind of like the safety that hygienic macros provide. Regards, -- Aristotle Pagaltzis // http://plasmasturm.org/

Re: Allowing '-' in identifiers: what's the motivation?

2008-08-19 Thread Aristotle Pagaltzis
, but I also don’t care at all about whether they are allowed. I’m not going to use them anyway. Regards, -- Aristotle Pagaltzis // http://plasmasturm.org/

Re: Allowing '-' in identifiers: what's the motivation?

2008-08-11 Thread Aristotle Pagaltzis
this (in particular, variables and functions in XPath), which is where I first encountered identifiers with dashes. I have been wishing I could have them in mainstream languages ever since. Regards, -- Aristotle Pagaltzis // http://plasmasturm.org/

Re: Allowing '-' in identifiers: what's the motivation?

2008-08-11 Thread Aristotle Pagaltzis
* Michael Mangelsdorf [EMAIL PROTECTED] [2008-08-11 20:25]: Unicode guillemets for hyper ops? Unicode? I don’t know about your ISO-8859-1, but mine has guillemets. :-) Regards, -- Aristotle Pagaltzis // http://plasmasturm.org/

Re: [svn:perl6-synopsis] r14574 - doc/trunk/design/syn

2008-08-09 Thread Aristotle Pagaltzis
* Larry Wall [EMAIL PROTECTED] [2008-08-08 19:45]: q'foo is now a valid identifier. Qa tlho', Larry. Regards, -- Aristotle Pagaltzis // http://plasmasturm.org/

Re: meta_postfix:*

2008-07-18 Thread Aristotle Pagaltzis
* Larry Wall [EMAIL PROTECTED] [2008-07-16 19:45]: Speaking on behalf of the mere mortal, My Eyes Glaze Over. Yeah, this proposal seems to be slipping into APL territory. Regards, -- Aristotle Pagaltzis // http://plasmasturm.org/

Re: Rakudo test miscellanea

2008-06-28 Thread Aristotle Pagaltzis
that deal in sub-$0.01 fractions: taxes, currency conversion, brokerage stuff... They use decimal fixed point math where necessary. Regards, -- Aristotle Pagaltzis // http://plasmasturm.org/

Re: Rakudo test miscellanea

2008-06-28 Thread Aristotle Pagaltzis
* Aristotle Pagaltzis [EMAIL PROTECTED] [2008-06-29 02:05]: [repeat of statements made days ago] Sorry, I was only just catching up and didn’t notice this orphan subthread had siblings, where the point was already covered. Regards, -- Aristotle Pagaltzis // http://plasmasturm.org/

Re: non blocking pipe

2008-03-23 Thread Aristotle Pagaltzis
. http://tinyurl.com/2uk5m5#head-20b1c1d3a92f0c61515cb88d15e06b686eba6cbc Regards, -- Aristotle Pagaltzis // http://plasmasturm.org/

Re: local $@ has an unwanted side effect

2008-03-22 Thread Aristotle Pagaltzis
 6 do in that respect? Maybe semantics could be borrowed from there? Regards, -- Aristotle Pagaltzis // http://plasmasturm.org/

Re: Musings on operator overloading

2008-03-21 Thread Aristotle Pagaltzis
* TSa [EMAIL PROTECTED] [2008-03-19 16:00]: Aristotle Pagaltzis wrote: Something like path { $app_base_dir / $conf_dir / $foo_cfg . $cfg_ext } where the operators in that scope are overloaded irrespective of the types of the variables (be they plain scalar strings, instances

Re: Musings on operator overloading

2008-03-21 Thread Aristotle Pagaltzis
in C++? That’s exactly what my proposal was all about: if you’re completely changing the meaning of an operator, the reader should have nearby indication of what is really going on. Regards, -- Aristotle Pagaltzis // http://plasmasturm.org/

Re: Musings on operator overloading

2008-03-21 Thread Aristotle Pagaltzis
* Mark J. Reed [EMAIL PROTECTED] [2008-03-21 21:35]: On Fri, Mar 21, 2008 at 4:25 PM, Aristotle Pagaltzis [EMAIL PROTECTED] wrote: It makes the meaning of the statement dependent on the types of any variables, which is information that a reader won't necessarily find in close vicinity

Re: Musings on operator overloading (was: File-Fu overloading)

2008-03-20 Thread Aristotle Pagaltzis
. And that’s exactly the point. I find that regular, type-based overloading is *very* exciting… but not in a good way. An approach that makes operator overloading an unexciting business therefore seems very useful to me. Regards, -- Aristotle Pagaltzis // http://plasmasturm.org/

Guido’ s library porting considerations

2008-03-18 Thread Aristotle Pagaltzis
that makes sense to encourage for 5-to-6 migrations of Perl code as well? Regards, -- Aristotle Pagaltzis // http://plasmasturm.org/

Musings on operator overloading (was: File-Fu overloading)

2008-02-24 Thread Aristotle Pagaltzis
.)] * Eric Wilhelm [EMAIL PROTECTED] [2008-02-24 02:05]: # from Aristotle Pagaltzis # on Saturday 23 February 2008 14:48: I find the basic File::Fu interface interesting… but operator overloading always makes me just ever so slightly queasy, and this example is no exception. Is that because

Re: Regexp: s/at($pos)/$str/ should replace or add?

2007-04-14 Thread A. Pagaltzis
, -- Aristotle Pagaltzis // http://plasmasturm.org/

Re: How to pass a ref from a language with no refs

2006-09-29 Thread A. Pagaltzis
I think you want $p5_dumper.(%h.kv); Regards, -- Aristotle Pagaltzis // http://plasmasturm.org/

Re: CGI Session management (was Re: the CGI.pm in Perl 6)

2006-09-21 Thread A. Pagaltzis
. The concept of core is getting a do-over for Perl 6 anyway. Regards, -- Aristotle Pagaltzis // http://plasmasturm.org/

Re: CGI Session management (was Re: the CGI.pm in Perl 6)

2006-09-20 Thread A. Pagaltzis
generation stuff. You can use HTML::Template, HTML::FillInFrom, HTML::Widget, CGI::FormBuilder… should I go on? C’mon merlyn, you’ve been around long enough to know about CPAN and realise that your statement is transparently fallacious. Regards, -- Aristotle Pagaltzis // http://plasmasturm.org/

Re: the CGI.pm in Perl 6

2006-09-20 Thread A. Pagaltzis
stating this as if it were true despite conclusive evidence to the opposite. I don’t know what you are trying to achieve. Regards, -- Aristotle Pagaltzis // http://plasmasturm.org/

Re: Perl6 style-guide

2006-09-20 Thread A. Pagaltzis
or two at least until the first proper best practices start to crystalise in the community. Any guide written now would be obsolete very soon. That said, a cheatsheet with broad tips for arrivals from Perl 5 could already be written and will age well. Regards, -- Aristotle Pagaltzis // http

Re: the CGI.pm in Perl 6

2006-09-20 Thread A. Pagaltzis
? If not, then no, let’s please stick with the `param` protocol. Regards, -- Aristotle Pagaltzis // http://plasmasturm.org/

Re: the CGI.pm in Perl 6

2006-09-20 Thread A. Pagaltzis
[EMAIL PROTECTED] = qw( Exporter );`. Regards, -- Aristotle Pagaltzis // http://plasmasturm.org/

Re: Perl6 style-guide

2006-09-20 Thread A. Pagaltzis
yet. Learning to use the new stuff is not the problem; learning how not to overuse will be. Good design is about restraint. There’s a bit of a road ahead. Regards, -- Aristotle Pagaltzis // http://plasmasturm.org/

Re: Web development I: Web::Toolkit

2006-09-20 Thread A. Pagaltzis
* Aankhen [EMAIL PROTECTED] [2006-09-21 03:15]: On 9/19/06, A. Pagaltzis [EMAIL PROTECTED] wrote: On top of this, roughly 80% (or so it sometimes feels) of the useful attributes defined in HTML do not have any tangible browser

Re: the CGI.pm in Perl 6

2006-09-19 Thread A. Pagaltzis
just fine. F.ex., you can pass CGI::Simple objects into HTML::Template for variable prepopuluation and it Just Works because they talk to each other using the CGI.pm `param` protocol. Form handling clearly requires no coupling. Regards, -- Aristotle Pagaltzis // http://plasmasturm.org/

Re: Web development I: Web::Toolkit

2006-09-19 Thread A. Pagaltzis
attributes defined in HTML do not have any tangible browser support (such as `cite` on `blockquote`/`q`, or `datetime` on `ins`/`del`). Regards, -- Aristotle Pagaltzis // http://plasmasturm.org/

Re: more on perl5 modules

2006-09-17 Thread A. Pagaltzis
* Richard Hainsworth [EMAIL PROTECTED] [2006-09-17 18:05]: The .can workaround doesnt seem to work for more complex modules. Err, the .can workaround is a way to get past missing sub exports. Methods are never exported. Why are you using the workaround for sub exports on methods. Here is a

Re: perl6 and a multi-interpreted-language example

2006-09-17 Thread A. Pagaltzis
* William Herrera [EMAIL PROTECTED] [2006-09-17 21:50]: perl 5 (9 lines, 353 bytes) use FreezeThaw qw(cmpStr); my @a1_9 = (1 .. 9); my @numbers = sort {rand(10) $a} @a1_9; for (my $steps = 0; cmpStr([EMAIL PROTECTED], [EMAIL PROTECTED]); ++$steps) { print join( , @numbers),

Re: CGI Session management (was Re: the CGI.pm in Perl 6)

2006-09-16 Thread A. Pagaltzis
, in all fairness.) Regards, -- Aristotle Pagaltzis // http://plasmasturm.org/

Charsets in HTTP (was: the CGI.pm in Perl 6)

2006-09-16 Thread A. Pagaltzis
it, which is no picnic at all. Regards, -- Aristotle Pagaltzis // http://plasmasturm.org/

Re: the CGI.pm in Perl 6

2006-09-16 Thread A. Pagaltzis
to drag old mistakes along for all eternity just for the sake of their familiarity. Regards, -- Aristotle Pagaltzis // http://plasmasturm.org/

Re: Charsets in HTTP (was: the CGI.pm in Perl 6)

2006-09-16 Thread A. Pagaltzis
plus charset in one value. We shouldn't be clever and separate these: they're one string. Sounds good to me. Regards, -- Aristotle Pagaltzis // http://plasmasturm.org/

Re: Stubborn coworkers

2006-08-31 Thread A. Pagaltzis
, -- Aristotle Pagaltzis // http://plasmasturm.org/

Re: Stubborn coworkers

2006-08-29 Thread A. Pagaltzis
you could straight-facedly call a syntax. Perl 6 is a polar opposite. YOU FORTH LOVE IF HONK THEN, -- Aristotle Pagaltzis // http://plasmasturm.org/

Re: Announcing the Perl 6 and Parrot wiki workspaces

2006-08-28 Thread A. Pagaltzis
to point to. Regards, -- Aristotle Pagaltzis // http://plasmasturm.org/

Re: Announcing the Perl 6 and Parrot wiki workspaces

2006-08-28 Thread A. Pagaltzis
* Andy Lester [EMAIL PROTECTED] [2006-08-28 21:05]: Try it again. That’s better. Regards, -- Aristotle Pagaltzis // http://plasmasturm.org/

Re: Lessons from the test function parameter placement quibbles?

2006-07-19 Thread A. Pagaltzis
* Michael G Schwern [EMAIL PROTECTED] [2006-07-19 02:10]: On 7/17/06, A. Pagaltzis [EMAIL PROTECTED] wrote: Had they been named parameters, we wouldn't be having this discussion. is got = 'foo', expected = 'bar', description = 'foo is bar'; is 'foo', 'bar', 'foo is bar'; When you

Re: Kwalitee metric: Broken Installer

2006-07-18 Thread A. Pagaltzis
* Randy W. Sims [EMAIL PROTECTED] [2006-07-19 00:20]: For example, who's to say what constitutes a bad version of an installer How about the installer maintainer himself? As in the case of M::I… Regards, -- Aristotle Pagaltzis // http://plasmasturm.org/

Lessons from the test function parameter placement quibbles?

2006-07-17 Thread A. Pagaltzis
parameters and the named parameters could live outside a hashref, thereby avoiding the visual clutter. Regards, -- Aristotle Pagaltzis // http://plasmasturm.org/

Re: use Tests; # ?

2006-07-17 Thread A. Pagaltzis
* Fergal Daly [EMAIL PROTECTED] [2006-07-17 15:45]: The standard way to do this is to put local $Test::Builder::Level = $Test::Builder::Level + 1; at the top of every function in your library that does not actually call -ok() use Attribute::Handlers; sub UNIVERSAL::TestHelper :

Re: fetching module version from the command line

2006-07-16 Thread A. Pagaltzis
* Graham Barr [EMAIL PROTECTED] [2006-07-17 02:00]: perl -MDBI\ 999 DBI version 999 required--this is only version 1.50. BEGIN failed--compilation aborted. You can use an equals sign instead of a space, there, which makes it a little easier to type: perl -MDBI=666 -e1 Regards, --

Re: TAP diagnostic syntax proposal

2006-07-15 Thread A. Pagaltzis
” and some 20-odd for “want”. Regards, -- Aristotle Pagaltzis // http://plasmasturm.org/

Re: Fw: Fixing SKIP:

2006-07-15 Thread A. Pagaltzis
* Jonathan Rockway [EMAIL PROTECTED] [2006-07-16 00:45]: can_ok cannot accept a description because it accepts a list. This could be repaired by re-prototyping can_ok as ([EMAIL PROTECTED]). I do not think that prototype means what you think it means. Regards, -- Aristotle Pagaltzis

Re: CPANDB - was: Module::Dependency 1.84

2006-07-14 Thread A. Pagaltzis
* Tels [EMAIL PROTECTED] [2006-07-14 02:40]: announced to early - now everybody tells me how I have to implement it and why my way wont work You were saying Adam’s way is inferior to your way. I disagreed. That’s about the size of it. Regards, -- Aristotle Pagaltzis // http://plasmasturm.org/

  1   2   3   >