H.Merijn Brand

Results 90 comments of H.Merijn Brand

Same here: Opera-developer on openSUSE Leap 15.0

Is Text::CSV_XS still in those 1.3m ? ``` $ perl -MMetaCPAN::Client -MDP -wE'my$m=MetaCPAN::Client->new (version => "v1")->release({distribution=>"Text-CSV_XS"});while (my $r = $m->next){ DDumper [ $r->name, $r->tests ] if $r->name =~ /1\.2[345]/ }'...

May I draw your attention to this issue again? I really don't want to use version strings, but whatever format I use in `use` this warning keeps bugging me.

Is this related? ``` #!perl use strict; use warnings; our $VERSION = "0.00"; my @b = ({ k => 1 }, { k => 2}); foreach my $i (0 .....

I have some identification number system formatted 3.4.3 `123_4567_890` and another formatted 4.2.3 `1234_56_789`. I bet that social security numbers and such have similar logic.

I think they **are** good arguments. Not for specifying a single social security number, ID or bank account, but for validation ``` if ($id < 1100_01_001 || $id > 9888_88_99)...

Correct. Now continue ... ``` $ tree t t ├── internal │   ├── criteria.t │   ├── inc_filter │   │   ├── cwd │   │   │   └── lib │   │   └── cwd_lib...