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.478.105 Times

Sample Perl Code freeware
Filter: All | Freeware | Demo
 

Sample Perl Code

< 1 2 3 4 5 > 
Added: July 09, 2010 | Visits: 995

Apache2::Ajax Apache2::Ajax is a mod_perl interface to CGI::Ajax. SYNOPSIS ###################################################### # in httpd.conf PerlLoadModule Apache2::MyAjaxApp < Location /ajax > SetHandler perl-script PerlResponseHandler Apache2::MyAjaxApp PJX_fn js_function_name... Platforms: *nix

License: Freeware Size: 10.24 KB Download (107): Apache2::Ajax Download

Added: March 20, 2010 | Visits: 1.077

Crypt::SSLeay Crypt::SSLeay is a Perl module for OpenSSL glue that provides LWP https support. SYNOPSIS lwp-request https://www.nodeworks.com use LWP::UserAgent; my $ua = new LWP::UserAgent; my $req = new HTTP::Request(GET, https://www.nodeworks.com); my $res = $ua->request($req); print... Platforms: *nix

License: Freeware Download (106): Crypt::SSLeay Download

Added: November 06, 2010 | Visits: 1.312

Java::Import::Examples Java::Import::Examples is an example of how to use Java::Import to call into Java classes. Making RMI calls from Perl One nice thing about Java is the extremely straight forward manner in which it allows you to make calls to remote objects residing on distant servers. Many people use this... Platforms: *nix

License: Freeware Size: 28.67 KB Download (106): Java::Import::Examples Download

Added: November 14, 2010 | Visits: 906

VCS VCS project is a Perl library for generic Version Control System access in Perl. SYNOPSIS use VCS; $file = VCS::File->new($ARGV[0]); print $file->url, ":n"; for $version ($file->versions) { print $version->version, was checked in by , $version->author, "n"; } VCS is an API for... Platforms: *nix

License: Freeware Size: 21.5 KB Download (105): VCS Download

Added: April 05, 2010 | Visits: 842

mod_speedycgi mod_speedycgi speeds up perl scripts by running them persistently. SpeedyCGI is a way to run perl scripts persistently, which can make them run much more quickly. A script can be made to to run persistently by changing the interpreter line at the top of the script from: #!/usr/bin/perl to... Platforms: *nix

License: Freeware Size: 153.6 KB Download (105): mod_speedycgi Download

Added: June 19, 2010 | Visits: 1.077

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: April 13, 2010 | Visits: 1.056

Devel::Profile Devel::Profile is a Perl module to tell me why my perl program runs so slowly. SYNOPSIS perl -d:Profile program.pl less prof.out The Devel::Profile 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... Platforms: *nix

License: Freeware Size: 7.17 KB Download (104): Devel::Profile Download

Added: September 24, 2010 | Visits: 935

PDL::Fit::Levmar PDL::Fit::Levmar is a Perl module with Levenberg-Marquardt fit/optimization routines. Levenberg-Marquardt routines for least-squares fit to functions non-linear in fit parameters. This module provides a PDL ( PDL::PDL ) interface to the non-linear fitting library levmar (written in C). Levmar... Platforms: *nix

License: Freeware Size: 122.88 KB Download (104): PDL::Fit::Levmar Download

Added: February 27, 2010 | Visits: 994

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