Re: The speed (improvement) of Rakudo

2017-06-17 Thread H.Merijn Brand
. It would be nice to have a graph of some hand-picked operations > measured at different points in time of the development of Rakudo and > then graphed in a nice way. Is there anything like that? > > Gabor -- H.Merijn Brand http://tux.nl Perl Monger http://amsterdam.pm.org/ using perl5

Re: list named argument in MAIN

2017-06-01 Thread H.Merijn Brand
d2 > d3 took me a bit as it needs both .List *and* flat. Got help on IRC $ perl6 -e 'sub MAIN (List :$dirs=[]) { .say for flat @$dirs.List».split: /","/ }' --dirs=d1 --dirs=d2 --dirs=d3,d4,d5 d1 d2 d3 d4 d5 -- H.Merijn Brand http://tux.nl Perl Monger http://amsterdam.pm.org/ using p

Re: maintainability and "or"

2017-03-21 Thread H.Merijn Brand
e > Which to me reads: > > Create the file unless it already exists. To me it reads "Create the file". Oh shit I shouldn't have as some idiot told me too late not to if it rains. Program minds differ :) > Liz -- H.Merijn Brand http://tux.nl Perl Monger http://ams

Re: Is there a list out there of all the \n characters?

2017-03-07 Thread H.Merijn Brand
coding(utf-8)"; say "\x{23ce}"' ⏎ That means that if your IO contains non-utf8, like JPG images, you'll need that extra stretch in perl6. As working with text is more common than working with images (raw binary data), I think poerl6 made the best options default. -- H.Merijn Brand http://

Re: Is there a list out there of all the \n characters?

2017-03-07 Thread H.Merijn Brand
On Tue, 7 Mar 2017 00:13:49 -0800, ToddAndMargo <toddandma...@zoho.com> wrote: > On 03/06/2017 09:35 AM, H.Merijn Brand wrote: > > > 0aLINE FEED > > 0cFORM FEED > > 0dCARRIAGE RETURN > > 1eRECORD SEPARA

Re: Is there a list out there of all the \n characters?

2017-03-06 Thread H.Merijn Brand
URN Other than that, I am not aware of other default combinations than \n \r\n \r But don't be surprised to see \r\r\n On files written by perl5 on Windows with "\r\n" as $/ (for safety reasons, so people on Windows can read the text too HaHa), as the default ":crlf"

Re: serial communication over usb on linux

2017-01-02 Thread H.Merijn Brand
5.new; $p5.use ("DBI"); my $dbh = $p5.invoke ("DBI", "connect", "dbi:Pg:"); my $sth = $dbh.prepare ("select count (*) from url"); $sth.execute; $sth.bind_columns (\my $count); my @count = $sth.fetchrow_array; @count[0].say; -->8--- -- H.Mer

Re: Killer Features of Perl 6

2016-08-21 Thread H.Merijn Brand
ned, if you fuck up, the error is HELPing you. Really > Tony -- H.Merijn Brand http://tux.nl Perl Monger http://amsterdam.pm.org/ using perl5.00307 .. 5.25 porting perl5 on HP-UX, AIX, and openSUSE http://mirrors.develooper.com/hpux/http://www.test-smoke.org/ http://qa.perl.org ht

Re: Any way to change rakudobrew's default installation location?

2016-04-13 Thread H.Merijn Brand
prefix = catdir($RealBin, updir()); +my $prefix = "/my/path/to/rakudobrew"; -- H.Merijn Brand http://tux.nl Perl Monger http://amsterdam.pm.org/ using perl5.00307 .. 5.23 porting perl5 on HP-UX, AIX, and openSUSE http://mirrors.develooper.com/hpux/http://www.test-smok

Re: Nice-to-have class methods

2016-01-27 Thread H.Merijn Brand
> > he would call "yearly.report.txt". Over the years after that, I > > stumbled into many other people who do that - not a majority, certainly, > > but, well, many people indeed. > > > > So a function that would remove *any* filename extensions, that is,

Re: CPAN and LWP::UserAgent question?

2016-01-13 Thread H.Merijn Brand
PAN and Perl 6. Just wait a > while for them to catch up? > > Is there a separate Perl6 repository for CPAN? http://modules.perl6.org Maybe this one will do for you: http://modules.perl6.org/#q=LWP > Many thanks, > -T > -- H.Merijn Brand http://tux.nl Perl Monger http:

Re: Can I use my Perl5 .pm modules in Perl6?

2016-01-13 Thread H.Merijn Brand
quot;Text::CSV_XS", "new") or die "Cannot use CSV: ", $p5.invoke("Text::CSV_XS", "error_diag"); $csv.binary(1); $csv.auto_diag(1); my Int $sum = 0; for lines() { $csv.parse($_); $sum += $csv.fields.elems; } $sum.say; -->

Re: [perl #123980] * does not allow // in map

2015-08-30 Thread H.Merijn Brand
-- H.Merijn Brand http://tux.nl Perl Monger http://amsterdam.pm.org/ using perl5.00307 .. 5.21 porting perl5 on HP-UX, AIX, and openSUSE http://mirrors.develooper.com/hpux/http://www.test-smoke.org/ http://qa.perl.org http://www.goldmark.org/jeff/stupid-disclaimers/ pgpHB9DXZKr1m.pgp

Re: What are Perl 6's killer advantages over Perl 5?

2015-08-26 Thread H.Merijn Brand
), but the individual problems aren't the point. My main point is that large parts of Perl 5 are still stuck in the past, with no good way forward. -- H.Merijn Brand http://tux.nl Perl Monger http://amsterdam.pm.org/ using perl5.00307 .. 5.21 porting perl5 on HP-UX, AIX, and openSUSE http

Re: What are Perl 6's killer advantages over Perl 5?

2015-08-12 Thread H.Merijn Brand
it, that is still under discussion. $ perl6 -e'use v6; my Int $this = 1; $thıs++; say $this;' ===SORRY!=== Error while compiling -e Variable '$thıs' is not declared. Did you mean '$this'? at -e:1 -- use v6; my Int $this = 1; ⏏$thıs++; say $this; -- H.Merijn Brand http://tux.nl Perl Monger http

Regex vs Grammar

2015-05-23 Thread H.Merijn Brand
://github.com/Tux/CSV Documentation is https://github.com/Tux/CSV/blob/master/Text-CSV.pod The csv *function* is still work in progress. The style used is not a point of discussion. -- H.Merijn Brand http://tux.nl Perl Monger http://amsterdam.pm.org/ using perl5.00307 .. 5.21 porting perl5 on HP-UX

Re: [perl #124082] Conflicting Range values cannot be used

2015-03-20 Thread H.Merijn Brand
, IMO. That, at the moment, is beyond my current level of understanding the core :) So, mind if I change the name of this ticket to Num doesn't have a Range coercer? :) Is ok. -- H.Merijn Brand http://tux.nl Perl Monger http://amsterdam.pm.org/ using perl5.00307 .. 5.21 porting perl5

Re: [PATCH] Avoid //-style comments.

2007-03-22 Thread H.Merijn Brand
; */ if (! caller_ctx) { /* there is no point calling real_exception here, because PDB_backtrace can't deal with a missing to_ctx either. */ -- H.Merijn Brand Amsterdam Perl Mongers (http://amsterdam.pm.org/) using porting perl 5.6.2, 5.8.x, 5.9.x

Re: Time for a Revolution

2006-07-14 Thread H.Merijn Brand
to be possible or not. That is not how our target audience perceives it. I hope I have expressed the conclusion of that chat correctly. But it *does* make sense to me. -- H.Merijn BrandAmsterdam Perl Mongers (http://amsterdam.pm.org/) using porting perl 5.6.2, 5.8.x, 5.9.x on HP-UX 10.20

Re: Time for a Revolution

2006-07-14 Thread H.Merijn Brand
On Thu, 13 Jul 2006 23:52:02 -0700, chromatic [EMAIL PROTECTED] wrote: On Thursday 13 July 2006 23:37, H.Merijn Brand wrote: If I got it right, the wish that was expressed is more like the wish for an installer with a GUI. Nope, just for a nice, easily-installable bundle of modules

Re: Time for a Revolution

2006-07-14 Thread H.Merijn Brand
On Fri, 14 Jul 2006 07:45:55 -0400, Clayton O'Neill [EMAIL PROTECTED] wrote: Why off-list? this is a good reaction. On 7/14/06, H.Merijn Brand [EMAIL PROTECTED] wrote: Look at the list of modules I include in my perl distributions for HP-UX at http://mirrors.develooper.com/hpux/#Perl

Re: fetching module version from the command line

2006-07-13 Thread H.Merijn Brand
, as far as I'm concerned, if MakeMaker can figure out my version then my job is done, So the only thing that would be correct is to search @INC for the .pm file and then grep it with the same regex MakeMaker uses. Which is essentially waht bot V and MakeMaker do -- H.Merijn Brand

Re: fetching module version from the command line

2006-07-12 Thread H.Merijn Brand
practice in the genric case. Is there a Test module that test just the above? Is the a CPANST score one can get if all the modules in a distro provide the correct version information and if they don't print anything else to STDOUT or STDERR. -- H.Merijn BrandAmsterdam Perl Mongers

Re: fetching module version from the command line

2006-07-12 Thread H.Merijn Brand
://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/2006-03/msg01038.html I never use -m. I should :) # perl -mV -le'print V::get_version(DBI)' 1.51 -- H.Merijn BrandAmsterdam Perl Mongers (http://amsterdam.pm.org/) using porting perl 5.6.2, 5.8.x, 5.9.x on HP-UX 10.20, 11.00, 11.11, 11.23, SuSE 10.0

Re: CPANTS is not a game.

2006-05-23 Thread H.Merijn Brand
a price worth paying -- at least until we rewrite the metric to actually test POD coverage (which is a decent proxy for POD quality) instead of just checking for the presence of a t/ pod_coverage.t file (which is a weak proxy for POD quality, but dramatically easier to measure). -- H.Merijn

Re: Test me please: P/PE/PETDANCE/Test-Harness-2.57_06.tar.gz

2006-04-23 Thread H.Merijn Brand
! :-) Not something I feel /that/ strongly about - but I don't see the utility of the change myself (beyond code simplification in T::H). (probably just me :-) I did not follow the rest of the conversation, but I strongly agree to the above statement. -- H.Merijn BrandAmsterdam Perl Mongers

Re: Module requirements (was: Module::Build and installing in non-standardlocations)

2006-04-05 Thread H.Merijn Brand
On Tue, 4 Apr 2006 19:27:57 -0400, Ricardo SIGNES [EMAIL PROTECTED] wrote: * H.Merijn Brand [EMAIL PROTECTED] [2006-04-04T10:40:39] And then still people make more of the same. Take Getopt::Long. A perfect and very functional module. Full of features, matured, and actively maintained

Re: Module requirements (was: Module::Build and installing in non-standardlocations)

2006-04-05 Thread H.Merijn Brand
, but fun in working with AIX is a pre, which rules the current maintainer (me) out. -- H.Merijn BrandAmsterdam Perl Mongers (http://amsterdam.pm.org/) using porting perl 5.6.2, 5.8.x, 5.9.x on HP-UX 10.20, 11.00, 11.11, 11.23, SuSE 10.0, AIX 4.3 5.2, and Cygwin. http://qa.perl.org

Re: Module requirements (was: Module::Build and installing in non-standardlocations)

2006-04-05 Thread H.Merijn Brand
checked is now 5.005.something So I aim there. I wont :) me neither best wishes, -- H.Merijn BrandAmsterdam Perl Mongers (http://amsterdam.pm.org/) using porting perl 5.6.2, 5.8.x, 5.9.x on HP-UX 10.20, 11.00, 11.11, 11.23, SuSE 10.0, AIX 4.3 5.2, and Cygwin. http

Re: Module requirements (was: Module::Build and installing in non-standardlocations)

2006-04-04 Thread H.Merijn Brand
a while, see what floats to the top. -- H.Merijn BrandAmsterdam Perl Mongers (http://amsterdam.pm.org/) using porting perl 5.6.2, 5.8.x, 5.9.x on HP-UX 10.20, 11.00, 11.11, 11.23, SuSE 10.0, AIX 4.3 5.2, and Cygwin. http://qa.perl.org http://mirrors.develooper.com/hpux

Re: Proposed kwalitee metric: installer_not_executable

2006-03-18 Thread H.Merijn Brand
/perl-5.8.x-dor (maint smokes) some systems might have more. HP-UX 10.20 doesn't have the 64bit versions. -- H.Merijn BrandAmsterdam Perl Mongers (http://amsterdam.pm.org/) using porting perl 5.6.2, 5.8.x, 5.9.x on HP-UX 10.20, 11.00, 11.11, 11.23, SuSE 10.0, AIX 4.3 5.2, and Cygwin

Re: New kwalitee metric - eg/ directory

2006-03-14 Thread H.Merijn Brand
to do in the eg/ directory. I think its a good adjunct to POD, which tends to be more (or should be) more theoretical. /eg scripts are a nice hands-on way of finding out how a module works in real life. No distribution should be without one! /me mumbles Acme -- H.Merijn Brand

Re: [PATCH] HP-UX shared libparrot support

2006-01-06 Thread H.Merijn Brand
: perl5 (and probably a lot more) does not support the combo gcc + GNU ld in 32bit bode, and prefers GNU ld with gcc in 64bit mode. This is due to issues in binutils, and cannot be blamed on either HP ld or gcc -- H.Merijn BrandAmsterdam Perl Mongers (http://amsterdam.pm.org/) using Perl 5.6.2

Re: Proposed Kwalitee tests: has_license and/or has_meta_yml_license

2005-11-02 Thread H.Merijn Brand
is claimed, just that there is a license present. -- H.Merijn BrandAmsterdam Perl Mongers (http://amsterdam.pm.org/) using Perl 5.6.2, 5.8.0, 5.8.5, 5.9.2 on HP-UX 10.20, 11.00 11.11, AIX 4.3 5.2, SuSE 9.2 9.3, and Cygwin. http://www.cmve.net/~merijn Smoking perl: http://www.test

Re: Perl 6 fears

2005-10-25 Thread H.Merijn Brand
'format', but I'm aware of the plan to make that `obsolete' as in: the perl526 translator will dump core on those) -- H.Merijn BrandAmsterdam Perl Mongers (http://amsterdam.pm.org/) using Perl 5.6.2, 5.8.0, 5.8.5, 5.9.2 on HP-UX 10.20, 11.00 11.11, AIX 4.3 5.2, SuSE 9.2 9.3, and Cygwin

Re: CPANTS: has_license ?

2005-09-20 Thread H.Merijn Brand
an appreciation of what a thankless job the maintenance of EU::MM is, though. -- H.Merijn BrandAmsterdam Perl Mongers (http://amsterdam.pm.org/) using Perl 5.6.2, 5.8.0, 5.8.5, 5.9.2 on HP-UX 10.20, 11.00 11.11, AIX 4.3 5.2, SuSE 9.2 9.3, and Cygwin. http://www.cmve.net/~merijn

Re: New kwalitee test, has_changes

2005-09-15 Thread H.Merijn Brand
/^chang(es?|log)|history$/i -s $_ }, * */* ; # Like that ? whether it's worth upgrading, or more importantly which version to add dependencies for. -- H.Merijn BrandAmsterdam Perl Mongers (http://amsterdam.pm.org/) using Perl 5.6.2, 5.8.0, 5.8.5, 5.9.2 on HP-UX 10.20, 11.00 11.11, AIX

Re: Whitespace (Was: [RELEASE] Pugs 6.2.9 released!)

2005-08-04 Thread H.Merijn Brand
still work: open('file.txt'); open ('file.txt'); open 'file.txt'; Thanks, /Autrijus/ -- H.Merijn BrandAmsterdam Perl Mongers (http://amsterdam.pm.org/) using Perl 5.6.2, 5.8.0, 5.8.5, 5.9.2 on HP-UX 10.20, 11.00 11.11, AIX 4.3 5.2, SuSE 9.2 9.3, and Cygwin. http

Re: Need to talk to an EU patent attorney

2005-07-13 Thread H.Merijn Brand
for non-file based testing but JUnit and the Smalltalk testing frameworks handle tests in software objects (claim 13). The rest of the claims appear to repeat 1-13 in legalese. -- H.Merijn BrandAmsterdam Perl Mongers (http://amsterdam.pm.org/) using Perl 5.6.2, 5.8.0, 5.8.5, 5.9.2

Re: Parrot on HP-UX

2005-06-05 Thread H.Merijn Brand
) for dynclasses to work. If no one sees any big misunderstands here, I'll press on with my tweaks over the next few days, -- H.Merijn BrandAmsterdam Perl Mongers (http://amsterdam.pm.org/) using Perl 5.6.2, 5.8.0, 5.8.5, 5.9.2 on HP-UX 10.20, 11.00 11.11, AIX 4.3 5.2, SuSE 9.2

Re: Parrot 0.2.1 APW Released!

2005-06-04 Thread H.Merijn Brand
from SVN by following the directions at http://www.parrotcode.org/source.html Turn your web browser towards http://www.parrotcode.org/ for more information about Parrot, get involved, and: Have fun! leo -- H.Merijn BrandAmsterdam Perl Mongers (http://amsterdam.pm.org/) using

Re: Building nci/dynclasses on HP-UX

2005-06-03 Thread H.Merijn Brand
working on getting dynclasses working. Although compiled, the libraries are failing to mmap in the backend of dlopen (probably unresolved symbols, pic or something else). -- H.Merijn BrandAmsterdam Perl Mongers (http://amsterdam.pm.org/) using Perl 5.6.2, 5.8.0, 5.8.5, 5.9.2 on HP-UX

Re: Building nci/dynclasses on HP-UX

2005-06-03 Thread H.Merijn Brand
On Fri, 03 Jun 2005 16:20:53 +0100, Nick Glencross [EMAIL PROTECTED] wrote: H.Merijn Brand wrote: On Fri, 03 Jun 2005 13:11:57 +0100, Nick Glencross [EMAIL PROTECTED] wrote: Guys, I'm currently investigating the build process for nci and dynclasses on HP-UX. As you may have

Re: HP-UX build notes

2005-06-01 Thread H.Merijn Brand
in the Configure script? (Perhaps as a side effect of this?) I'm also seeing 'l != left' assertions in mmd.c. If there's any other information I can provide, feel free to ask! Cheers, Nick -- H.Merijn BrandAmsterdam Perl Mongers (http://amsterdam.pm.org/) using Perl 5.6.2, 5.8.0

T::M + T::H recent make module test suites fail

2005-03-02 Thread H.Merijn Brand
};} ok 1 - use Overload; ok 2 - $VERSION ok 3 - The object isa Overload ok 4 - The object isa Overload ok 5 - Overload ok 6 - Overload 1..6 ok All tests successful. Files=1, Tests=6, 0 wallclock secs ( 0.18 cusr + 0.00 csys = 0.18 CPU) lt09:/pro/3gl/CPAN/Lexical-Attributes-1.1 123 -- H.Merijn

Re: Anomalous Difference in Output between HTML Files Created by

2005-01-31 Thread H.Merijn Brand
tool to Devel::Cover? Does Python have customizable test suites *at all*? -- H.Merijn BrandAmsterdam Perl Mongers (http://amsterdam.pm.org/) using Perl 5.6.2, 5.8.0, 5.8.3, 5.9.2 on HP-UX 10.20, 11.00 11.11, AIX 4.3, SuSE 9.0 pro 2.4.21 Win2k. http://www.cmve.net/~merijn

Re: Test::Legacy warnock'd

2004-12-21 Thread H.Merijn Brand
scratch thereafter. I never (knowingly) used Test.pm for my own tests. -- H.Merijn BrandAmsterdam Perl Mongers (http://amsterdam.pm.org/) using perl-5.6.1, 5.8.5, 5.9.x, and 809 on HP-UX 10.20 11.00, 11i, AIX 4.3, AIX 5.2, SuSE 9.1, and Win2k. http://www.cmve.net/~merijn/ http:[EMAIL

Re: Uncle Bob on Coding Standards

2004-12-14 Thread H.Merijn Brand
to spaces. I /think/ that is what Nik meant. But we're adrift here. This was not the subject of the original post. [ If you're using notepad, you're not a real coder. vim/elvis is also available on winblows ] Kane has a sig that sais: real coders use cat a.out -- H.Merijn Brand

Re: Uncle Bob on Coding Standards

2004-12-14 Thread H.Merijn Brand
On Tue 14 Dec 2004 18:21, Ricardo SIGNES [EMAIL PROTECTED] wrote: * H.Merijn Brand [EMAIL PROTECTED] [2004-12-14T11:28:19] About spaces, another thing springs to mind, for which I would gladly kill the responsible people to allow it (I bet M$ was the first to push it): Spaces

Re: Uncle Bob on Coding Standards

2004-12-14 Thread H.Merijn Brand
adapt to our style. Not vise versa. Period. I've also learned that over time, you can get used to (almost) any style, given there is some logic about it. I've had to change a lot of my habits in all the compromises we made, but got used to it. -- H.Merijn BrandAmsterdam Perl Mongers (http

Re: Uncle Bob on Coding Standards

2004-12-14 Thread H.Merijn Brand
On Tue 14 Dec 2004 17:10, Adam Turoff [EMAIL PROTECTED] wrote: On Tue, 14 Dec 2004 16:14:32 +0100, H.Merijn Brand [EMAIL PROTECTED] wrote: On Tue 14 Dec 2004 16:04, Clayton, Nik [EMAIL PROTECTED] wrote: I've normally got enough going on in my head when writing code, worrying about

Re: Uncle Bob on Coding Standards

2004-12-13 Thread H.Merijn Brand
of disagreement, I decide :) I'm a little ray of sunshine today. It's not that I think Agile methods don't work, but for a methodology that has so much to say about project Scope, I think some discussion of the scope of applicability of the methods might be worthwhile. -- H.Merijn Brand

Re: Uncle Bob on Coding Standards

2004-12-13 Thread H.Merijn Brand
we started. The biggest argue was about the length of the variable names to use. -- H.Merijn BrandAmsterdam Perl Mongers (http://amsterdam.pm.org/) using perl-5.6.1, 5.8.5, 5.9.x, and 809 on HP-UX 10.20 11.00, 11i, AIX 4.3, AIX 5.2, SuSE 9.1, and Win2k. http://www.cmve.net

Re: Uncle Bob on Coding Standards

2004-12-13 Thread H.Merijn Brand
, and that will probably not be *you* who decides so. If /I/ was the one to decide, and /you/ were the one to refuse, you are out. So it's also a good way to keep friends with your co-workers and lessen the chance to be fired first. -- H.Merijn BrandAmsterdam Perl Mongers (http

Re: Test labels

2004-12-07 Thread H.Merijn Brand
also talked about description, but description is just s overloaded. -- H.Merijn BrandAmsterdam Perl Mongers (http://amsterdam.pm.org/) using perl-5.6.1, 5.8.5, 5.9.x, and 809 on HP-UX 10.20 11.00, 11i, AIX 4.3, AIX 5.2, SuSE 9.1, and Win2k. http://www.cmve.net/~merijn/ http

Re: Test::Simple 0.51 prerelease

2004-11-25 Thread H.Merijn Brand
, I am very much lacking in Windows tuits at the moment. I also got no failures on the mosts recent cygwin with homebrew perl-5.9.2 (very recent with weakened err keyword) and with activeperl 809 and nmake. -- H.Merijn BrandAmsterdam Perl Mongers (http://amsterdam.pm.org/) using perl

Re: dor and backwards compat (was Re: [ANNOUNCE] Test::Simple 0.49)

2004-10-22 Thread H.Merijn Brand
On Mon 18 Oct 2004 19:05, Michael G Schwern [EMAIL PROTECTED] wrote: On Mon, Oct 18, 2004 at 04:43:12PM +0200, H.Merijn Brand wrote: Please consider 0.50 very soon, in which you fix 'err' calls that are an obvious mistake given defined-or functionality in blead and 5.8.x-dor

Re: [ANNOUNCE] Test::Simple 0.49

2004-10-18 Thread H.Merijn Brand
/harness_active.t line 63, near err syntax error at t/harness_active.t line 73, near err Execution of t/harness_active.t aborted due to compilation errors. t/harness_active..dubious Test returned status 255 (wstat 65280, 0xff00) t/has_planok -- H.Merijn BrandAmsterdam

Re: [ANNOUNCE] Test::Simple 0.49

2004-10-18 Thread H.Merijn Brand
On Mon 18 Oct 2004 16:34, H.Merijn Brand [EMAIL PROTECTED] wrote: On Fri 15 Oct 2004 05:20, Michael G Schwern [EMAIL PROTECTED] wrote: Its about freakin' time. Has it really been two years since the last stable release? Yes it has. This is 0.48_02 plus a minor test and MANIFEST fix

Re: Memory leak

2004-10-16 Thread H.Merijn Brand
or there is a smart way to handle this. Please help. -- H.Merijn BrandAmsterdam Perl Mongers (http://amsterdam.pm.org/) using Perl 5.6.1, 5.8.0, 5.8.3, 5.9.1 on HP-UX 10.20, 11.00 11.11, AIX 4.3, SuSE 9.0 pro 2.4.21 Win2k. http://www.cmve.net/~merijn Smoking perl: [EMAIL PROTECTED

Re: misc remarks WRT YAPC::EU

2004-09-21 Thread H.Merijn Brand
of the conference, leo -- H.Merijn BrandAmsterdam Perl Mongers (http://amsterdam.pm.org/) using perl-5.6.1, 5.8.3, 5.9.x, and 809 on HP-UX 10.20 11.00, 11i, AIX 4.3, SuSE 9.0, and Win2k. http://www.cmve.net/~merijn/ http://archives.develooper.com/[EMAIL PROTECTED]/ [EMAIL

Re: enhanced open-funktion

2004-07-15 Thread H.Merijn Brand
is particularly important, I guess, but just to stress the fact that it is by large a subjective matter... -- H.Merijn BrandAmsterdam Perl Mongers (http://amsterdam.pm.org/) using perl-5.6.1, 5.8.3, 5.9.x, and 809 on HP-UX 10.20 11.00, 11i, AIX 4.3, SuSE 9.0, and Win2k. http

Re: Notes on the piethon converter

2004-07-15 Thread H.Merijn Brand
be a different issue, but I'll deal with that later. -- H.Merijn BrandAmsterdam Perl Mongers (http://amsterdam.pm.org/) using perl-5.6.1, 5.8.3, 5.9.x, and 809 on HP-UX 10.20 11.00, 11i, AIX 4.3, SuSE 9.0, and Win2k. http://www.cmve.net/~merijn/ http

DB_File

2004-07-01 Thread H.Merijn Brand
on their mirrors, and the link (underscored) made me read that as gdbm-1.8.12 , instead of qdbm-1.8.12 and I thought that the most recent version of gdbm available was 1.8.3 (so close it triggers my attention) http://qdbm.sourceforge.net/ Enjoy -- H.Merijn BrandAmsterdam Perl Mongers (http

Re: Periodic Table of the Operators

2004-06-08 Thread H.Merijn Brand
that allows moving text regions between windows. When screen is called, it creates a single window with a shell in it (or the specified command) and then gets out : : --8--- -- H.Merijn BrandAmsterdam Perl Mongers (http://amsterdam.pm.org/) using perl-5.6.1, 5.8.3

Re: Mapping test cases to bug databases

2004-05-24 Thread H.Merijn Brand
in where they found the bug fixed, but this was no guarantee that the bug was fixed by that patch. -- H.Merijn BrandAmsterdam Perl Mongers (http://amsterdam.pm.org/) using perl-5.6.1, 5.8.3, 5.9.x, and 809 on HP-UX 10.20 11.00, 11i, AIX 4.3, SuSE 9.0, and Win2k. http

Re: hoplite report for DBI

2004-05-11 Thread H.Merijn Brand
of confusion of ideas that could provoke such a question. -- Charles Babbage, 1792-1871 -- H.Merijn BrandAmsterdam Perl Mongers (http://amsterdam.pm.org/) using perl-5.6.1, 5.8.3, 5.9.x, and 809 on HP-UX 10.20 11.00, 11i, AIX 4.3, SuSE 9.0, and Win2k

Test::More SKIP block

2004-04-29 Thread H.Merijn Brand
I change the plan halfway $state or plan skip_all = No use in testing the rest; : : : -- H.Merijn BrandAmsterdam Perl Mongers (http://amsterdam.pm.org/) using perl-5.6.1, 5.8.3, 5.9.x, and 809 on HP-UX 10.20 11.00, 11i, AIX 4.3, SuSE 9.0, and Win2k. http://www.cmve.net

Re: Load paths

2004-03-25 Thread H.Merijn Brand
if=/dev/zero of=$i done it will stop somewhere -- H.Merijn BrandAmsterdam Perl Mongers (http://amsterdam.pm.org/) using perl-5.6.1, 5.8.0, 5.9.x, and 806 on HP-UX 10.20 11.00, 11i, AIX 4.3, SuSE 8.2, and Win2k. http://www.cmve.net/~merijn/ http://archives.develooper.com

Re: Configure.pl and the history of the world

2004-03-17 Thread H.Merijn Brand
still like it) Larry -- H.Merijn BrandAmsterdam Perl Mongers (http://amsterdam.pm.org/) using perl-5.6.1, 5.8.0, 5.9.x, and 806 on HP-UX 10.20 11.00, 11i, AIX 4.3, SuSE 8.2, and Win2k. http://www.cmve.net/~merijn/ http://archives.develooper.com/[EMAIL PROTECTED]/ [EMAIL

Re: Current PLATFORMS

2004-02-27 Thread H.Merijn Brand
of a SIGINT (program termination) signal Remarks: *1 ~90% test failures with the CGP core, also 00ff-dos.t tests are failing *2 need s/inet_pton/inet_aton/ in io_unix.c:623 -- H.Merijn BrandAmsterdam Perl Mongers (http://amsterdam.pm.org/) using perl-5.6.1, 5.8.0, 5.9.x, and 806 on HP-UX

Re: Testing complex web site

2004-01-19 Thread H.Merijn Brand
] Which will have to mean these accesses overlap and at some point I'd like to know how many such visits can I serve in a minute. -- H.Merijn BrandAmsterdam Perl Mongers (http://amsterdam.pm.org/) using perl-5.6.1, 5.8.0, 5.9.x, and 806 on HP-UX 10.20 11.00, 11i, AIX 4.3, SuSE 8.2

Re: -lpthread

2003-12-17 Thread H.Merijn Brand
on commercial OS's have no choice Arthur -- H.Merijn BrandAmsterdam Perl Mongers (http://amsterdam.pm.org/) using perl-5.6.1, 5.8.0, 5.9.x, and 806 on HP-UX 10.20 11.00, 11i, AIX 4.3, SuSE 8.2, and Win2k. http://www.cmve.net/~merijn/ http://archives.develooper.com

Re: -lpthread

2003-12-17 Thread H.Merijn Brand
build parrot without linking in pthread. Arthur -- H.Merijn BrandAmsterdam Perl Mongers (http://amsterdam.pm.org/) using perl-5.6.1, 5.8.0, 5.9.x, and 806 on HP-UX 10.20 11.00, 11i, AIX 4.3, SuSE 8.2, and Win2k. http://www.cmve.net/~merijn/ http

T::H 2.38

2003-12-01 Thread H.Merijn Brand
--- t/prove-switches.t3 768 33 100.00% 1-3 1 test and 62 subtests skipped. Failed 1/12 test scripts, 91.67% okay. 3/536 subtests failed, 99.44% okay. -- H.Merijn Brand

Re: PATCH: (unofficial) Make Devel::Cover use Storable

2003-10-28 Thread H.Merijn Brand
...] Google gave Results 1 - 50 of about 278,000,000. Search took 0.26 seconds. on time :) finding is not the trouble. Asigning it to what we want to do with it is causing the trouble. Bosses always take the biggest part. -- H.Merijn BrandAmsterdam Perl Mongers (http://amsterdam.pm.org/) using

Re: Phalanx site updates

2003-09-30 Thread H.Merijn Brand
please let me know what's going on and I'll updated fairly often. -- H.Merijn BrandAmsterdam Perl Mongers (http://amsterdam.pm.org/) using perl-5.6.1, 5.8.0, 5.9.x, and 806 on HP-UX 10.20 11.00, 11i, AIX 4.3, SuSE 8.2, and Win2k. http://www.cmve.net/~merijn/ http

Re: HP-UX test failures

2003-09-19 Thread H.Merijn Brand
' cmcompiler='2.96-hppa-010528' Gcc-3.3.1 for 11.00 available on https://www.beepz.com/personal/merijn/ or http://www.cmve.net/~merijn/ or from http://hpux.connect.org.uk/hppd/hpux/Gnu/gcc-3.3.1/ If the water calms down, I promise to retry the whole park here! Sorry for my silence Leo. -- H.Merijn

Re: Phalanx has started, and I need perl-qa's help

2003-08-22 Thread H.Merijn Brand
Spreadsheet-WriteExcel-0.41 DBD-Excel-0.06 DBD-ODBC-1.06 Win32-Sound-0.45_001 ); } else { push @defmod, qw( Proc-ProcessTable-0.38 User-Utmp-1.6.1.1 Inline-0.44 X11-Protocol-0.51 ); -- H.Merijn BrandAmsterdam Perl

Re: parrot on HP-UX etc

2003-07-29 Thread H.Merijn Brand
. AFAIK is Robert Spier doing this kind of stuff. Thanks, leo -- H.Merijn BrandAmsterdam Perl Mongers (http://amsterdam.pm.org/) using perl-5.6.1, 5.8.0 633 on HP-UX 10.20 11.00, AIX 4.2, AIX 4.3, WinNT 4, Win2K pro WinCE 2.11. Smoking perl CORE: [EMAIL PROTECTED] http

Re: Test-Smoke questions

2003-06-27 Thread H.Merijn Brand
for it :) FWIW Abe's laters internal build is here: http://www.xs4all.nl/~ztreet/perl/ THIS IS NOT A PRODUCTION VERSION! Use at own risk. John -- H.Merijn BrandAmsterdam Perl Mongers (http://amsterdam.pm.org/) using perl-5.6.1, 5.8.0 633 on HP-UX 10.20 11.00, AIX 4.2, AIX 4.3, WinNT 4

Re: Perl 6 JAPH ...

2002-10-01 Thread H.Merijn Brand
/ For reference: http://husk.org/perl/yapc/DSCF0118.jpg I'm in the middle. Merijn is the fellow on the left who looks like he's just seen his grandmother naked. And http://mark.overmeer.net/200209fotos/yapc2002/medium/dscf0046.html reveals the *real* Leon :) [ temporary available ] -- H.Merijn Brand

Re: Perl 6 JAPH ...

2002-09-30 Thread H.Merijn Brand
/ For reference: http://husk.org/perl/yapc/DSCF0118.jpg I'm in the middle. Merijn is the fellow on the left who looks like he's just seen his grandmother naked. That would have been *very* dirty! Both are dead for far over ten years now. I never saw that picture before -- H.Merijn Brand

Re: [perl #17615] [PATCH] perl6: make --test

2002-09-27 Thread H.Merijn Brand
in TestCompiler.pm Thanks to Tanton to tracking this down to that point, that made my brain work again. Please apply, leo -- attachment 1 -- url: http://rt.perl.org/rt2/attach/38723/31452/e35eb2/perltest.patch -- H.Merijn Brand

Re: perl6 on HP-UX 11.00

2002-09-27 Thread H.Merijn Brand
On Thu 26 Sep 2002 20:53, Andy Dougherty [EMAIL PROTECTED] wrote: On Thu, 26 Sep 2002, Dan Sugalski wrote: At 5:05 PM +0200 9/26/02, H.Merijn Brand wrote: perl t/harness t/builtins/array.Can't bless non-reference value at ../../assemble.pl line 163. Hrm. What version

perl6 on HP-UX 11.00

2002-09-26 Thread H.Merijn Brand
2 512 22 100.00% 1-2 2 subtests skipped. make: *** [test] Error 2 -- H.Merijn BrandAmsterdam Perl Mongers (http://amsterdam.pm.org/) using perl-5.6.1, 5.8.0 633 on HP-UX 10.20 11.00, AIX 4.2, AIX 4.3, WinNT 4, Win2K pro WinCE 2.11. Smoking perl CORE: [EMAIL

Re: perl6 on HP-UX 11.00

2002-09-26 Thread H.Merijn Brand
On Thu 26 Sep 2002 18:14, Dan Sugalski [EMAIL PROTECTED] wrote: At 5:05 PM +0200 9/26/02, H.Merijn Brand wrote: perl t/harness t/builtins/array.Can't bless non-reference value at ../../assemble.pl line 163. Hrm. What version of perl are you running? You should know that! We've

Re: Goal call for 0.0.9

2002-09-23 Thread H.Merijn Brand
On Mon 09 Sep 2002 22:22, Andy Dougherty [EMAIL PROTECTED] wrote: On Mon, 9 Sep 2002, H.Merijn Brand wrote: [HP-UX 11.00, GNU gcc-3.2] cd languages/perl6 make For gcc (which was the last I used) I got :( /usr/bin/ld -o imcc imcparser.o imclexer.o imc.o stacks.o symreg.o

Re: Goal call for 0.0.9

2002-09-09 Thread H.Merijn Brand
On Mon 09 Sep 2002 17:39, Andy Dougherty [EMAIL PROTECTED] wrote: On Mon, 9 Sep 2002, H.Merijn Brand wrote: On Mon 02 Sep 2002 22:25, Andy Dougherty [EMAIL PROTECTED] wrote: Similarly, it may be a good time to revisit our core platforms and see if they all work. A lot

Re: vi modelines for the boilerplate (was Re: [PATCH] COW for ithreads (was Re: what copies scalars in ithreads?))

2002-09-09 Thread H.Merijn Brand
) vi's have disabled this feature by default. e.g. elvis has it disabled by default, but you can enable with :se ml or :se modeline -- H.Merijn BrandAmsterdam Perl Mongers (http://amsterdam.pm.org/) using perl-5.6.1, 5.8.0 633 on HP-UX 10.20 11.00, AIX 4.2, AIX 4.3, WinNT 4, Win2K pro

Web info for perl6

2002-06-21 Thread H.Merijn Brand
http://www.perl.org/perl6 is a bit behind. Anyone care to update and include apo-5? And Damian's tour info. -- H.Merijn BrandAmsterdam Perl Mongers (http://amsterdam.pm.org/) using perl-5.6.1, 5.8.0 632 on HP-UX 10.20 11.00, AIX 4.2, AIX 4.3, WinNT 4, Win2K pro WinCE 2.11. Smoking

Re: gcc3 issues?

2002-04-14 Thread H.Merijn Brand
with 3.0.4/64 on hppa-2.0w (64bit), but croacks on 3.1/64 (2002-04-08 snapshot). GNU developers are looking at it themselves -- H.Merijn BrandAmsterdam Perl Mongers (http://amsterdam.pm.org/) using perl-5.6.1, 5.7.3 631 on HP-UX 10.20 11.00, AIX 4.2, AIX 4.3, WinNT 4, Win2K pro WinCE

Re: [OT] Parrot Logo

2002-03-19 Thread H.Merijn Brand
to have bright red, And some bugs (mosquito's and such) :) solid green, and lovely blues. But then, I like primary colors... maybe others don't... -- H.Merijn BrandAmsterdam Perl Mongers (http://amsterdam.pm.org/) using perl-5.6.1, 5.7.3 631 on HP-UX 10.20 11.00, AIX 4.2, AIX 4.3

Re: cvs snapshots

2001-09-17 Thread H.Merijn Brand
perl for each parrot smoke. Which in fact would be fun to integrate into the bleadperl smoke :) that is, test parrot for every bleadperl conf tested. H, think, think, think ... -- H.Merijn BrandAmsterdam Perl Mongers (http://www.amsterdam.pm.org/) using perl-5.6.1, 5.7.1 623 on HP-UX

Re:perl5 to perl6

2001-05-12 Thread H.Merijn Brand
:-) for $something (qw( debugging configuring coding fun sun children perl5 perl6 )) { ... } I'm realy looking forward to the perl6 configuration issues, because we now can assume we have perl5 by hand to do the tricks we want. -- H.Merijn BrandAmsterdam Perl Mongers (http

Re: Tolkein (was Re: PDD for code comments ????)

2001-02-20 Thread H.Merijn Brand
On Tue, 20 Feb 2001 19:17:25 + Simon Cozens [EMAIL PROTECTED] wrote: On Tue, Feb 20, 2001 at 07:43:11PM +0100, H.Merijn Brand wrote: My name (Merijn) is *from* Tolkien's dutch translation, so I'm a little biases if I state: "Stick with Tolkien". Well, I'm of to Mordor now .

Re: Tolkein (was Re: PDD for code comments ????)

2001-02-20 Thread H.Merijn Brand
Well, I'm of to Mordor now ... -- H.Merijn Brand using perl5.005.03 on HP-UX 10.20, HP-UX 11.00, AIX 4.2, AIX 4.3, DEC OSF/1 4.0 and WinNT 4.0 SP-6a, often with Tk800.020 and/or DBD-Unify ftp://ftp.funet.fi/pub/languages/perl/CPAN/authors/id/H/HM/HMBRAND/ Member of Amsterdam Perl Mongers (http://www.amsterdam.pm.org/)

Re: RFC 57 (v1) Subroutine prototypes and parameters

2000-08-26 Thread H.Merijn Brand
alongside eachother. It has it's charmes, though John Porter will disagree. -- H.Merijn Brand Amsterdam Perl Mongers (http://www.amsterdam.pm.org/) using perl5.005.03, 5.6.0 516 on HP-UX 10.20, HP-UX 11.00, AIX 4.2, AIX 4.3, DEC OSF/1 4.0 and WinNT 4.0 SP-6a, often with Tk800.022

Re: RFC 45 (v1) || should propagate result context to bo

2000-08-26 Thread H.Merijn Brand
want (RFC 21) -- H.Merijn Brand Amsterdam Perl Mongers (http://www.amsterdam.pm.org/) using perl5.005.03, 5.6.0 516 on HP-UX 10.20, HP-UX 11.00, AIX 4.2, AIX 4.3, DEC OSF/1 4.0 and WinNT 4.0 SP-6a, often with Tk800.022 and/or DBD-Unify ftp://ftp.funet.fi/pub/languages/perl/CPAN/au