Download Shareware and Freeware Software for Windows, Linux, Macintosh, PDA

line Home  |  About Us  |  Link To Us  |  FAQ  |  Contact

Serving Software Downloads in 956 Categories, Downloaded 50.281.385 Times

Sample Perl Code software
Filter: All | Freeware | Demo
 

Sample Perl Code

1 2 3 4 5 > 
Released: August 30, 2008  |  Added: October 31, 2008 | Visits: 2.869

Perl Code Library Perl Code Library is a powerful source code Library shipped with 1000+ lines of code, quick and powerful search engine, powerful printing capability, password protection, user notes & attachments handeling, favorites & rating support and more! Perl Code Library is a powerful multi-language...



Platforms: Windows

License: Shareware Cost: $79.99 USD Size: 7.48 MB Download (206): Perl Code Library Download

Added: January 08, 2010 | Visits: 1.596

Code::Perl Code::Perl is a Perl module to produce Perl code from a tree. SYNOPSIS use Code::Perl::Expr qw( :easy ); my $c = derefh(scal(hash), calls(getkey)); print $c->perl; # ($hash)->{getkey()} Code::Perl allows you to build chunks of Perl code as a tree and then when youre finished building,...





Platforms: *nix

License: Freeware Size: 17.41 KB Download (175): Code::Perl Download

Added: September 03, 2010 | Visits: 1.240

Perl Doxygen Filter Doxygen Filter project is an input filter for Doxygen enabling support for Perl code documentation. Of course, Perl developers are used to use POD rather than some other code documentation tools. However, most developers actually are not restricted to using one single language. Instead of...


Platforms: *nix

License: Freeware Size: 23.55 KB Download (114): Perl Doxygen Filter Download

Added: November 10, 2010 | Visits: 1.331

Module::Crypt Module::Crypt is a Perl module to encrypt your Perl code and compile it into XS. SYNOPSIS use Module::Crypt; #Êfor a single file: CryptModule( file => Bar.pm, install_base => /path/to/my/lib ); # for multiple files: CryptModule( files => [Foo.pm, Bar.pm], install_base =>...


Platforms: *nix

License: Freeware Size: 7.17 KB Download (97): Module::Crypt Download

Added: September 15, 2010 | Visits: 818

Devel::DProf Devel::DProf is a Perl code profiler. SYNOPSIS perl5 -d:DProf test.pl The Devel::DProf package is a Perl code profiler. This will collect information on the execution time of a Perl script and of the subs in that script. This information can be used to determine which subroutines are using...


Platforms: *nix

License: Freeware Size: 20.48 KB Download (93): Devel::DProf Download

Added: June 19, 2010 | Visits: 1.071

Tclperl Tclperl project allows the execution of Perl code from within a TCL interpreter using one or several embedded Perl interpreters. This package allows the execution of Perl code from a Tcl interpreter, as in: package require tclperl set interpreter [perl::interp new] $interpreter eval {print...


Platforms: *nix

License: Freeware Download (104): Tclperl Download

Added: February 17, 2010 | Visits: 1.429

Bloom::Filter Bloom::Filter is a sample Perl Bloom filter implementation. A Bloom filter is a probabilistic algorithm for doing existence tests in less memory than a full list of keys would require. The tradeoff to using Bloom filters is a certain configurable risk of false positives. This module implements...


Platforms: *nix

License: Freeware Size: 4.1 KB Download (130): Bloom::Filter Download

Added: November 05, 2010 | Visits: 788

Opcode Opcode is a Perl module created to disable named opcodes when compiling perl code. SYNOPSIS use Opcode; Perl code is always compiled into an internal format before execution. Evaluating perl code (e.g. via "eval" or "do file") causes the code to be compiled into an internal format and...


Platforms: *nix

License: Freeware Size: 12.29 KB Download (227): Opcode Download

Added: January 25, 2010 | Visits: 826

Devel::Graph Devel::Graph module can turn Perl code into a graphical flowchart. SYNOPSIS use Devel::Graph; my $grapher = Devel::Graph->new(); my $graph = $grapher->decompose( if ($b == 1) { $a = 9; } ); print $graph->as_ascii(); # Will result in something like this: ################ # start #...


Platforms: *nix

License: Freeware Size: 36.86 KB Download (110): Devel::Graph Download

Added: July 08, 2010 | Visits: 847

Benchmark Benchmark is a Perl module with benchmark running times of Perl code. SYNOPSIS use Benchmark qw(:all) ; timethis ($count, "code"); # Use Perl code in strings... timethese($count, { Name1 => ...code1..., Name2 => ...code2..., }); # ... or use subroutine references. timethese($count,...


Platforms: *nix

License: Freeware Size: 12.2 MB Download (102): Benchmark Download

Added: June 02, 2010 | Visits: 1.207

Archive::SelfExtract Archive::SelfExtract is a Perl module to bundle compressed archives with Perl code. SYNOPSIS use Archive::SelfExtract; # writes output script to STDOUT Archive::SelfExtract::createExtractor( "perlcode.pl", "somefiles.zip" ); # with various options: Archive::SelfExtract::createExtractor(...


Platforms: *nix

License: Freeware Size: 6.14 KB Download (97): Archive::SelfExtract Download

Added: April 12, 2010 | Visits: 1.167

Apache::ASP Apache::ASP provides an Active Server Pages port to the Apache Web Server with Perl scripting only, and enables developing of dynamic web applications with session management and embedded Perl code. There are also many powerful extensions, including XML taglibs, XSLT rendering, and new events...


Platforms: *nix

License: Freeware Size: 512 KB Download (99): Apache::ASP Download

Added: February 27, 2010 | Visits: 985

B::Fathom B::Fathom a Perl module to evaluate the readability of Perl code. SYNOPSIS perl -MO=Fathom < script > or perl -MO=Fathom,-v < script > where