Booking.com, cPanel, MaxMind, FastMail, ZipRecruiter, Cogendo, Elastic, OpenCage Data,
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
The following report has been written by the PAUSE namespace indexer. | |
Please contact [email protected] if there are any open questions. | |
User: PERLANCAR (perlancar) | |
Distribution file: TableDataRoles-Standard-0.025.tar.gz | |
Number of files: 62 | |
*.pm files: 33 | |
README: TableDataRoles-Standard-0.025/README | |
META-File: TableDataRoles-Standard-0.025/META.json | |
META-Parser: Parse::CPAN::Meta 2.150010 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!./perl -T | |
BEGIN { | |
chdir 't' if -d 't'; | |
@INC = '../lib'; | |
require Config; | |
if (($Config::Config{'extensions'} !~ m!\bList/Util\b!) ){ | |
print "1..0 # Skip -- Perl configured without List::Util module\n"; | |
exit 0; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package optionally; | |
# don't use this | |
# | |
# this was an experiment in loading modules optionally, so you can write: | |
# | |
# use optionally; | |
# optionally use Module::Foo 1.23 qw/ function1 function2 /; | |
# |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package optionally; | |
# optionally load a module and import functions | |
# | |
# Syntax: | |
# | |
# use optionally; | |
# optionally use Module::Foo 1.37 function1 function2; | |
# | |
# This was an experiment, and is not at all ready for real use. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package optionally; | |
# optionally load a module and import functions | |
# | |
# use optionally 'Some::Module', '1.23', qw/ fnA fnB /; | |
# | |
use 5.010; | |
use strict; | |
use warnings; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# losing-first-come.t | |
# | |
# This test was written to demonstrate a bug that is causing authors | |
# to lose a first-come permission, in a particular setup and release scenario. | |
# | |
# Setup: | |
# user FORD has first-come on package Guide (but an entry in `primeur` only) | |
# user ARTHUR has co-maint on package Guide (an entry in `perms`) | |
# |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/local/bin/perl | |
# | |
# solve-wordsearch - search for words (from a word list) in a wordsearch grid | |
# | |
use strict; | |
use warnings; | |
use v5.20; | |
use feature qw/ signatures /; | |
no warnings qw/ experimental::signatures /; | |
use File::Slurper qw/ read_lines /; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"AL": { "name": "Alabama", "initials": "a", "adjacent": ["FL", "GA", "TN", "MS"] }, | |
"AK": { "name": "Alaska", "initials": "a", "adjacent": [] }, | |
"AZ": { "name": "Arizona", "initials": "a", "adjacent": [ "NM", "UT", "NV", "CA"] }, | |
"AR": { "name": "Arkansas", "initials": "a", "adjacent": [ "LA", "MS", "TN", "MO", "OK", "TX"] }, | |
"CA": { "name": "California", "initials": "c", "adjacent": [ "AZ", "NV", "OR"] }, | |
"CO": { "name": "Colorado", "initials": "c", "adjacent": [ "NM", "OK", "KS", "NE", "WY", "UT"] }, | |
"CT": { "name": "Connecticut", "initials": "c", "adjacent": [ "RI", "MA", "NY"] }, | |
"DE": { "name": "Delaware", "initials": "d", "adjacent": [ "NJ", "PA", "MD"] }, | |
"FL": { "name": "Florida", "initials": "f", "adjacent": [ "GA", "AL"] }, |
NewerOlder