view release on metacpan or search on metacpan
CramCode.pm view on Meta::CPAN
do {$code=~s/^$birthmark//;eval decode $code; exit} if bm $code;
open 0, ">$0" or print "Cannot encode '$0'\n" and exit;
print {0} "use Acme::CramCode;\n", encode $code and exit;
1;
__END__
# Below is stub documentation for your module. You better edit it!
=head1 NAME
Acme::CramCode - Compress your code
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Acme/CreatingCPANModules.pm view on Meta::CPAN
Note that the order of the changes is chronologically inversed. Why?
Because the purporse of a changes file is (among others) to let the
user know what you changed from the last version, so that he can
decide if he wants to install your module.
Hence, and since browsers and editors usually open files in their
beginning, it's only reasonable that you put the most recent changes
on the top of the file.
As for what you put in here, it's kind of up to you, but you don't
need to be too technical. If you added some tests, just say "added
view all matches for this distribution
view release on metacpan or search on metacpan
0.0.3 2007-05-15
Add Moose dependancy
Some minor changes and additions
0.0.2 2007-05-14
Clean up placeholder POD, and give Bjoern proper credit for the Regexp.
0.0.1 Fri Apr 6 12:13:10 2007
Initial release.
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Acme/DependOnEverything.pm view on Meta::CPAN
use Business::CPI;
use Business::CPI::Gateway::MercadoPago::targ;
use Business::CPI::Gateway::Moip;
use Business::CPI::Gateway::PagSeguro;
use Business::CPI::Gateway::PayPal;
use Business::CreditCard;
use Business::CreditCard::Object;
use Business::CUSIP;
use Business::CUSIP::Random;
use Business::cXML::v;
use Business::CyberSource;
use Business::CyberSource::Report::v;
lib/Acme/DependOnEverything.pm view on Meta::CPAN
use CGI::ExtDirect;
use CGI::Ex::Template::XS;
use CGI::EZForm;
use CGI::Fast;
use CGI::FastTemplate;
use CGI::FCKeditor;
use CGI::FileManager;
use CGI::FileUpload;
use CGI::FormBuilder;
use CGI::FormBuilder::Config::Simple;
use CGI::FormBuilder::Mail::FormatMultiPart::t;
lib/Acme/DependOnEverything.pm view on Meta::CPAN
use CGI::FormXML;
use CGI::Framework;
use CGI::Getopt;
use CGI::Github::Webhook;
use CGIGraph;
use CGI::GuruMeditation;
use CGI::Header;
use CGI::Header::PSGI;
use CGI::HTMLError;
use CGI::IDS;
use CGI::Imagemap::tgz;
lib/Acme/DependOnEverything.pm view on Meta::CPAN
use CGI::Untaint::boolean;
use CGI::Untaint::country;
use CGI::Untaint::CountyStateProvince;
use CGI::Untaint::CountyStateProvince::GB::tar;
use CGI::Untaint::CountyStateProvince::US::tar;
use CGI::Untaint::creditcard;
use CGI::Untaint::date;
use CGI::Untaint::datetime;
use CGI::Untaint::email;
use CGI::Untaint::Facebook;
use CGI::Untaint::Filenames;
lib/Acme/DependOnEverything.pm view on Meta::CPAN
use Data::Formatter::Text;
use Data::Format::Validate;
use Data::Form::Elements;
use Data::Formula;
use Data::FormValidator;
use Data::FormValidator::Constraints::CreditCard;
use Data::FormValidator::Constraints::DateTime;
use Data::FormValidator::Constraints::HTTP::tar;
use Data::FormValidator::Constraints::Japanese;
use Data::FormValidator::Constraints::MethodsFactor;
use Data::FormValidator::Constraints::Words::ta;
lib/Acme/DependOnEverything.pm view on Meta::CPAN
use Finance::Bank::Bundesschatz;
use Finance::Bank::Cahoot;
use Finance::Bank::Commerzbank;
use Finance::Bank::CooperativeUKPersonal::tar;
use Finance::Bank::CreateCard;
use Finance::Bank::CreditMut;
use Finance::Bank::DE::DeutscheBank;
use Finance::Bank::DE::DTA::Create;
use Finance::Bank::DE::NetBank;
use Finance::Bank::easybank;
use Finance::Bank::ES::Cajamadrid::zip;
lib/Acme/DependOnEverything.pm view on Meta::CPAN
use MooseX::Types::Buf;
use MooseX::Types::CIDR;
use MooseX::Types::CNPJ;
use MooseX::Types::Common;
use MooseX::Types::CPF;
use MooseX::Types::CreditCard;
use MooseX::Types::Data::GUID;
use MooseX::Types::Data::Serializer;
use MooseX::Types::DateTime;
use MooseX::Types::DateTime::ButMaintained::tar;
use MooseX::Types::DateTime::MoreCoercions::tar;
view all matches for this distribution
view release on metacpan or search on metacpan
CONTRIBUTING.mkdn view on Meta::CPAN
Much of the documentation Pod is generated at release time. Some is
generated boilerplate; other documentation is built from pseudo-POD
directives in the source like C<=method> or C<=func>.
If you would like to submit a documentation edit, please limit yourself to
the documentation you see.
If you see typos or documentation issues in the generated docs, please
email or open a bug ticket instead of patching.
view all matches for this distribution
view release on metacpan or search on metacpan
- Rewrite the source file on the first pass, instead of
printing it to STDOUT (to be more conformant with
Acme Best Practices).
- Fixed cross-platform line-endings bug (a program with
Unix line-endings wouldn't work on Windows -- and no
doubt vice versa). Credit goes to Georg Moritz for
spotting this bug.
- The test suite now uses Test::Cmd and Test::File::Contents
which should improve portability.
- Minor improvements to code readability, deployed a
superiour variable naming convention.
view all matches for this distribution
view release on metacpan or search on metacpan
DoubleHelix.pm view on Meta::CPAN
print {0} "use Acme::DoubleHelix;\n", encode $sequence and exit;
1;
__END__
# Below is stub documentation for your module. You better edit it!
=head1 NAME
Acme::DoubleHelix - Double-helix programming
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Acme/ELLEDNERA/Utils.pm view on Meta::CPAN
Shuffle a list of anything :) This subroutine uses the Fisher Yates Shuffle algorithm.
I just copied and pasted (most of) them from L<https://perldoc.perl.org/perlfaq4#How-do-I-shuffle-an-array-randomly?>
Unlike the original implementation, this subroutine takes in an actual array
and returns a new shuffled one. It is the same one as in the of Intermediate
Perl (2nd edition)
=head1 SEE ALSO
List::Util
view all matches for this distribution
view release on metacpan or search on metacpan
t/14_gulp.t view on Meta::CPAN
Regex => 1 } );
test_one('hellotest SourceFile string',
"hello test 0\nhello test 1\nhello test 2\nhello test 3\n",
$yanick4str x 3);
# For different ways to pass a handle, see Perl Cookbook, 2nd edition,
# Recipe 7.5:
# 1) *FH typeglob
# 2) \*FH ref to typeglob
# 3) *FH{IO} I/O object
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Acme/Free/Advice/Unsolicited.pm view on Meta::CPAN
say advice( 224 )->{advice};
=head1 DESCRIPTION
Acme::Free::Advice::Unsolicited provides wisdom from author and leading technology observer, L<Kevin
Kelly|https://en.wikipedia.org/wiki/Kevin_Kelly_(editor)>.
=head1 METHODS
These functions may be imported by name or with the C<:all> tag.
view all matches for this distribution
view release on metacpan or search on metacpan
# Autoload methods go after =cut, and are processed by the autosplit program.
1;
__END__
# Below is stub documentation for your module. You'd better edit it!
=head1 NAME
Acme::Goto::Line - Perl extension for extending goto with line number goto
view all matches for this distribution
view release on metacpan or search on metacpan
script/gen-generic-ind-company-names view on Meta::CPAN
# This script is generated by Perinci::CmdLine::Inline version 0.551 on Fri May 7 20:03:14 2021.
# Rinci metadata taken from these modules: Acme::ID::CompanyName (no version)
# You probably should not manually edit this file.
our $DATE = '2021-05-07'; # DATE
our $VERSION = '0.007'; # VERSION
# PODNAME: gen-generic-ind-company-names
# ABSTRACT: Generate nice-sounding, generic Indonesian company names
view all matches for this distribution
view release on metacpan or search on metacpan
# This Makefile is for the Acme::Intraweb extension to perl.
#
# It was generated automatically by MakeMaker version
# 5.45 (Revision: 1.222) from the contents of
# Makefile.PL. Don't edit this file, edit Makefile.PL instead.
#
# ANY CHANGES MADE HERE WILL BE LOST!
#
# MakeMaker ARGV: ()
#
view all matches for this distribution
view release on metacpan or search on metacpan
CODE_OF_CONDUCT.md view on Meta::CPAN
Project maintainers are responsible for clarifying the standards of acceptable
behavior and are expected to take appropriate and fair corrective action in
response to any instances of unacceptable behavior.
Project maintainers have the right and responsibility to remove, edit, or
reject comments, commits, code, wiki edits, issues, and other contributions
that are not aligned to this Code of Conduct, or to ban temporarily or
permanently any contributor for other behaviors that they deem inappropriate,
threatening, offensive, or harmful.
## Scope
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Acme/Jungle/CrawlerExample.pm view on Meta::CPAN
#################### main pod documentation begin ###################
## Below is the stub of documentation for your module.
## You better edit it!
=head1 NAME
CrawlerTest - crawler test using Jungle
lib/Acme/Jungle/CrawlerExample.pm view on Meta::CPAN
=head1 DESCRIPTION
Stub documentation for this module was created by ExtUtils::ModuleMaker.
It looks like the author of the extension was negligent enough
to leave the stub unedited.
Blah blah blah.
=head1 USAGE
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Acme/KeyboardMarathon.pm view on Meta::CPAN
and horizontal motion of the finger. The motion traversed is actually an
arc, and while that calculation would be more accurate, this is an
Acme module, after all. Send me a patch with the right math if you're bored.
* I assume there are no gaps between your keys. This means all those stylish
Mac keyboard folks are actually doing more work than they're credited for.
But I'm ok with that.
* I assume you actually use standard home row position. Just like Mavis Beacon
told you to.
view all matches for this distribution
view release on metacpan or search on metacpan
1;
__END__
# Below is stub documentation for your module. You better edit it!
=head1 NAME
Acme::Lingua::Strine::Perl - make Perl more like Damian
view all matches for this distribution
view release on metacpan or search on metacpan
author/en2kana.csv view on Meta::CPAN
east,ã¤ã¼ã¹ã
easy,ã¤ã¼ã¸ã¼
eat,ã¤ã¼ã
echo,ã¨ã³ã¼
edge,ã¨ãã¸
edition,ã¨ãã£ã·ã§ã³
editor,ã¨ãã£ã¿ã¼
educate,ã¨ãã¥ã±ã¼ã
education,ã¨ãã¥ã±ã¼ã·ã§ã³
effect,ã¨ãã§ã¯ã
effort,ã¨ãã©ã¼ã
egg,ã¨ãã°
view all matches for this distribution
view release on metacpan or search on metacpan
Alberta Research Council
stan@arc.ab.ca
http://www.arc.ab.ca/~stan
Please feel free to give
me acknowledgement/credit/money/honorable-mention/job-offers/research-funding
wherever or whenever appropriate :-)
Permission to copy, modify is granted provided that you
include the above copyright notice with it.
This software is provided as is, and comes with no promises
or guarantees. You may only use it if you promise not to
Brian Paul
Karl Glazebrook http://www.ast.cam.ac.uk/~kgb
The Alberta Research Council
Feel free to email me your name so I can add it to the above list.
Acknowledgement and credit for those where acknowledgement
and credit is warrented ... yadda , yadda .... bla ... bla ...
Some of these examples in the "examples" subdirectory
are adapted from the OpenGL Programming Guide.
Here's the copyright that was attached to the examples
view all matches for this distribution
view release on metacpan or search on metacpan
Makefile.PL view on Meta::CPAN
# This Makefile.PL for Acme-MITHALDU-XSGrabBag was generated by
# Dist::Zilla::Plugin::InlineModule 0.07
# and Dist::Zilla::Plugin::MakeMaker::Awesome 0.38.
# Don't edit it but the dist.ini and plugins used to construct it.
use strict;
use warnings;
use 5.006;
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Acme/Math/Google.pm view on Meta::CPAN
return $ans;
}
1;
__END__
# Below is stub documentation for your module. You'd better edit it!
=head1 NAME
Acme::Math::Google - Let Google do the math
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Acme/MetaSyntactic/candyland.pm view on Meta::CPAN
=head1 DESCRIPTION
This C<< Acme::MetaSyntactic >> theme lists the characters from
the classical game of I<< Candyland >>. Althought the game itself
dates from the 1940s, characters were first introduced in the 1984
edition. Updates to the character names where made in 2002 and 2010.
Hence, three subthemes:
=over 1
=item C<< edition_1984 >>
The default sub theme. This was the year the characters were first
introduced.
=item C<< edition_2002 >>
This edition saw the first change in the set of characters.
=item C<< edition_2010 >>
The edition saw the second change in the set of characters.
=back
I<< Candyland >> is published by I<< Hasbro >>.
lib/Acme/MetaSyntactic/candyland.pm view on Meta::CPAN
=cut
__DATA__
# default
edition_1984
# names edition_1984
The_Kids The_Gingerbread_People Mr_Mint Gramma_Nutt King_Kandy Jolly
Plumpy Princess_Lolly Queen_Frostine Lord_Licorice
Gloppy_the_Molasses_Monster
# names edition_2002
The_Kids The_Gingerbread_People Mr_Mint Gramma_Nutt King_Kandy Jolly
Mama_Ginger_Tree Lolly Princess_Frostine Lord_Licorice
Gloppy_the_Molasses_Monster
# names edition_2002
The_Kids The_Gingerbread_People Duke_of_Swirl Gramma_Gooey King_Kandy
Cupcakes Princess_Lolly Princess_Frostine Lord_Licorice
Gloppy_the_Chocolate_Monster
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Acme/MetaSyntactic/barbarella.pm view on Meta::CPAN
design consultant.
This theme lists the main characters from the 1968 movie, I<Barbarella>,
starring Jane Fonda.
The list is taken from L<http://www.imdb.com/title/tt0062711/fullcredits>.
=head1 CONTRIBUTOR
Abigail
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Acme/MetaSyntactic/id_names.pm view on Meta::CPAN
"Dalam hal ini, sampel 56.719 nama diambil dari data Pelamar Lulus Seleksi
Administrasi CPNS KEMENKEU tahun anggaran 2010. Para Pelamar berumur antara 20
s/d 30 tahun."
Some editing has been done:
=over
=item * "M." removed from the list
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Acme/MetaSyntactic/nethack.pm view on Meta::CPAN
ice_box
bag
# names objects/unknown/tools/lock_opening
key
lock_pick
credit_card
# names objects/unknown/tools/light_sources
candle
brass_lantern
lamp
# names objects/unknown/tools/other
lib/Acme/MetaSyntactic/nethack.pm view on Meta::CPAN
bag_of_holding
bag_of_tricks
# names objects/known/tools/lock_opening
skeleton_key
lock_pick
credit_card
# names objects/known/tools/light_sources
tallow_candle
wax_candle
brass_lantern
oil_lamp
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Acme/MetaSyntactic/vim.pm view on Meta::CPAN
aboveleft
all
argadd
argdelete
argdo
argedit
argglobal
arglocal
args
argument
ascii
lib/Acme/MetaSyntactic/vim.pm view on Meta::CPAN
dsplit
earlier
echoerr
echomsg
echon
edit
else
elseif
emenu
endfor
endfunction
lib/Acme/MetaSyntactic/vim.pm view on Meta::CPAN
only
open
options
ounmap
pclose
pedit
perl
perldo
pop
popu
popup
lib/Acme/MetaSyntactic/vim.pm view on Meta::CPAN
syncbind
t
tab
tabclose
tabdo
tabedit
tabfind
tabfirst
tablast
tabmove
tabnew
lib/Acme/MetaSyntactic/vim.pm view on Meta::CPAN
bufhidden
buflisted
buftype
casemap
cdpath
cedit
charconvert
cindent
cinkeys
cinoptions
cinwords
lib/Acme/MetaSyntactic/vim.pm view on Meta::CPAN
verbose
verbosefile
viewdir
viewoptions
viminfo
virtualedit
visualbell
warn
weirdinvert
whichwrap
wildchar
view all matches for this distribution
view release on metacpan or search on metacpan
script/metafy view on Meta::CPAN
use Getopt::Long;
my $usage = << 'EOT';
Usage: metafy [options] [from:]to [file]
Available options:
--in-place : force in-place edit (clobbers the old files)
--force-random : force target words randomisation
--help : print this message and exit
--version : print version information and exit
--themes : print the list of themes and exit
--verbose : print the translations list afterwards
script/metafy view on Meta::CPAN
Compute the replacement for each word every time it's needed.
B<This will definitely break any program!>
=item I<--in-place>
Force in-place edition
=back
=head2 Informative options
view all matches for this distribution
view release on metacpan or search on metacpan
# This Makefile is for the Acme::MotorcycleGang extension to perl.
#
# It was generated automatically by MakeMaker version
# 6.62 (Revision: 66200) from the contents of
# Makefile.PL. Don't edit this file, edit Makefile.PL instead.
#
# ANY CHANGES MADE HERE WILL BE LOST!
#
# MakeMaker ARGV: ()
#
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Acme/MyFirstModule/APIERRE.pm view on Meta::CPAN
# Preloaded methods go here.
1;
__END__
# Below is stub documentation for your module. You'd better edit it!
=head1 NAME
Acme::MyFirstModule::APIERRE - Perl extension for blah blah blah
lib/Acme/MyFirstModule/APIERRE.pm view on Meta::CPAN
=head1 DESCRIPTION
Stub documentation for Acme::MyFirstModule::APIERRE, created by h2xs. It looks like the
author of the extension was negligent enough to leave the stub
unedited.
Blah blah blah.
=head2 EXPORT
view all matches for this distribution
view release on metacpan or search on metacpan
lib/Acme/MyFirstModule/RAYMONDJM.pm view on Meta::CPAN
# Preloaded methods go here.
1;
__END__
# Below is stub documentation for your module. You'd better edit it!
=head1 NAME
Acme::MyFirstModule::RAYMONDJM - Perl extension for blah blah blah
lib/Acme/MyFirstModule/RAYMONDJM.pm view on Meta::CPAN
=head1 DESCRIPTION
Stub documentation for Acme::MyFirstModule::RAYMONDJM, created by h2xs. It looks like the
author of the extension was negligent enough to leave the stub
unedited.
Blah blah blah.
=head2 EXPORT
view all matches for this distribution