H.Merijn Brand
H.Merijn Brand
So, I do have access to a z/os os390 in native ebcdic which comes with some additional drawbacks: - only basic POSIX sh, no bash (I failed building bash-4.4.18) -...
I am all in favor of forbidding version-strings, but ``` perl use 5.18.2; ``` is too common (and useful) to forbid. rewriting that to 'use 5.018002;' seems just stupid (in...
Or false positive, I never know, but this: ``` #!/usr/bin/perl use 5.14.2; use warnings; our $VERSION = "0.01 - 20210818"; our $CMD = $0 =~ s{.*/}{}r; my @foo = ("",...
``` perl #!/usr/bin/perl use strict; use warnings; our $VERSION = "0.00"; format STDOUT = number(s) description --------- ---------------- @
``` $ cat test.pl #!/usr/bin/perl use strict; use warnings; our $VERSION = "1.00"; write; format STDOUT = @>>>> @
``` perl #!perl use strict; use warnings; our $VERSION = "0.00"; @_{qw( a b )} = (0, 1); ``` ``` $ perlcritic -1 test.pl test.pl#8.15: [4 - Variables::RequireLocalizedPunctuationVars] Magic variable...
If I look at http://cpancover.com/latest/Text-CSV_XS-1.32/index.html I see it includes a core file in the coverage, which is pulling down overall coverage  I don't think CORE files should be included...
I'd like to have means to tag XS lines as uncoverable. Currently neither /* uncovered */ nor /* uncoverable statement */ achieve that goal. I prefer /* uncovered */, as...
other than me not wanting to install deprecated modules, I have a global red flag on modules from PERLANCAR, because it might drag in half of CPAN or useless duplications...
This perl script is much shorter and • generates correct `CSV` • Allows short names: `adb-export.pl -e contacts` • Gathers exports in a single `exports` folder ``` #!/usr/bin/perl use 5.14.2;...