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

Perl Module freeware
Filter: All | Freeware | Demo
 

Perl Module

< 1 2 3 4 5 
Added: May 18, 2010 | Visits: 1.666

File::Format::RIFF File::Format::RIFF is a Perl module to Resource Interchange File Format/RIFF files. SYNOPSIS use File::Format::RIFF; open( IN, file ) or die "Could not open file: $!"; my ( $riff1 ) = File::Format::RIFF->read( *IN ); close( IN ); $riff1->dump; my ( $riff2 ) = new File::Format::RIFF(...



Platforms: *nix

License: Freeware Size: 9.22 KB Download (151): File::Format::RIFF Download

Added: April 18, 2010 | Visits: 1.258

Barcode::Code128 Barcode::Code128 is a Perl module that can generate CODE 128 bar codes. SYNOPSIS use Barcode::Code128; $code = new Barcode::Code128; EXPORTS By default, nothing. However there are a number of constants that represent special characters used in the CODE 128 symbology that you may wish to...





Platforms: *nix

License: Freeware Size: 14.34 KB Download (151): Barcode::Code128 Download

Added: April 23, 2010 | Visits: 1.178

Template::Magic Template::Magic is a Perl module for magic merger of runtime values with templates. SYNOPSIS Just add these 2 magic lines to your code... use Template::Magic; Template::Magic->new->print( /path/to/template ); to have all your variable and subroutines merged with the template file, or set...


Platforms: *nix

License: Freeware Size: 46.08 KB Download (149): Template::Magic Download

Added: September 03, 2010 | Visits: 2.273

Spreadsheet::WriteExcelXML Spreadsheet::WriteExcelXML is a Perl module that can create an Excel file in XML format. SYNOPSIS To write a string, a formatted string, a number and a formula to the first worksheet in an Excel XML spreadsheet called perl.xls: use Spreadsheet::WriteExcelXML; # Create a new Excel workbook...


Platforms: *nix

License: Freeware Size: 143.36 KB Download (147): Spreadsheet::WriteExcelXML Download

Added: January 13, 2010 | Visits: 982

Image::ExifTool Image::ExifTool is a Perl module that can read and write meta information. SYNOPSIS use Image::ExifTool ImageInfo; # ---- Simple procedural usage ---- # Get hash of meta information tag names/values from an image $info = ImageInfo(a.jpg); # ---- Object-oriented usage ---- # Create a...


Platforms: *nix

License: Freeware Size: 1024 KB Download (147): Image::ExifTool Download

Added: January 11, 2010 | Visits: 1.199

Resource::Loader Resource::Loader is a Perl module to load different resources depending. SYNOPSIS use Resource::Loader; $loader = Resource::Loader->new( testing => 0, verbose => 0, cont => 0, resources => [ { name => never, when => sub { 0 }, what => sub { die "this will never be loaded" }, }, {...


Platforms: *nix

License: Freeware Size: 8.19 KB Download (146): Resource::Loader Download

Added: June 06, 2010 | Visits: 1.225

SVG::Parser SVG::Parser is a Perl module with XML Parser for SVG documents. SYNOPSIS #!/usr/bin/perl -w use strict; use SVG::Parser; die "Usage: $0 n" unless @ARGV; my $xml; { local $/=undef; $xml=<>; } my $parser=new SVG::Parser(-debug => 1); my $svg=$parser->parse($xml); print...


Platforms: *nix

License: Freeware Size: 14.34 KB Download (146): SVG::Parser Download

Added: March 06, 2010 | Visits: 1.531

Audio::Beep Audio::Beep is a Perl module to use your computer beeper in fancy ways. SYNOPSIS #functional simple way use Audio::Beep; beep($freq, $milliseconds); #OO more musical way use Audio::Beep; my $beeper = Audio::Beep->new(); # lilypond subset syntax accepted # relative notation is the...


Platforms: *nix

License: Freeware Size: 33.79 KB Download (144): Audio::Beep Download

Added: September 05, 2010 | Visits: 1.277

NetPacket::UDP NetPacket::UDP is a Perl module to assemble and disassemble UDP (User Datagram Protocol) packets. SYNOPSIS use NetPacket::UDP; $udp_obj = NetPacket::UDP->decode($raw_pkt); $udp_pkt = NetPacket::UDP->encode($ip_obj); $udp_data = NetPacket::UDP::strip($raw_pkt); NetPacket::UDP provides a...


Platforms: *nix

License: Freeware Size: 11.26 KB Download (144): NetPacket::UDP Download

Added: March 20, 2010 | Visits: 1.779

GD::Dashboard GD::Dashboard is a Perl module to create JPEG graphics of meters and dials. SYNOPSIS my $dash = new GD::Dashboard(); my $g1 = new GD::Dashboard::Gauge( MIN=>0, MAX=>$empcnt, VAL=>$nopwp_cnt, NA1=>3.14/2+0.85, NA2=>3.14/2-0.85, NX=>51,NY=>77,NLEN=>50 ); $dash->add_meter(RPM, $g1);...


Platforms: *nix

License: Freeware Size: 23.55 KB Download (143): GD::Dashboard Download

Added: August 24, 2010 | Visits: 964

Apache::MyConfig Apache::MyConfig is a Perl module created to build options access. SYNOPSIS use Apache::MyConfig; die unless $Apache::MyConfig::Setup{PERL_FILE_API}; Apache::MyConfig module provides access to the various hooks and features set when mod_perl is built. This circumvents the need to set up a...


Platforms: *nix

License: Freeware Size: 389.12 KB Download (142): Apache::MyConfig Download

Added: April 01, 2010 | Visits: 1.291

DFA::Simple DFA::Simple is a Perl module to implement simple Discrete Finite Automata. SYNOPSIS my $Obj = new DFA::Simple or my $Obj = new DFA::Simple $Transitions; or my $Obj = new DFA::Simple $Actions, $StateRules; $Obj->Actions = [...]; my $Trans = $LP->Actions; $Obj->StateRules = [...]; my...


Platforms: *nix

License: Freeware Size: 11.26 KB Download (142): DFA::Simple Download

Added: May 25, 2010 | Visits: 738

Net:IPMessenger::ToStdoutEventHandler Net:IPMessenger::ToStdoutEventHandler is a Perl module for event handler for standard output. SYNOPSIS use Net::IPMessenger::ToStdoutEventHandler; ... $ipmsg->add_event_handler( new Net::IPMessenger::ToStdoutEventHandler ); IP Messenger receive event handler for standard output....


Platforms: *nix

License: Freeware Size: 12.29 KB Download (141): Net:IPMessenger::ToStdoutEventHandler Download

Added: March 10, 2010 | Visits: 1.224

Geo::Spline Geo::Spline is a Perl module to calculate geographic locations between GPS fixes. SYNOPSIS use Geo::Spline; my $p0={time=>1160449100.67, #seconds lat=>39.197807, #degrees lon=>-77.263510, #degrees speed=>31.124, #m/s heading=>144.8300}; #degrees clockwise from North my...


Platforms: *nix

License: Freeware Size: 20.48 KB Download (141): Geo::Spline Download

Added: November 24, 2010 | Visits: 1.133

Config::FreeForm Config::FreeForm is a Perl module that provides in-memory configuration data. SYNOPSIS use Config::FreeForm %options; Config::FreeForm provides in-memory configuration data in a free-form manner. Many existing configuration modules attempt to provide some structure to your configuration...


Platforms: *nix

License: Freeware Size: 5.12 KB Download (140): Config::FreeForm Download

Added: August 10, 2010 | Visits: 1.074

SOAP::XML::Client::Generic SOAP::XML::Client::Generic is a Perl module to talk with generic webservices, e.g. not .net. This package helps in talking with SOAP webservers, it just needs a bit of XML thrown at it and you get some XML back. Its designed to be REALLY simple to use, it doesnt try to be cleaver in any way...


Platforms: *nix

License: Freeware Size: 9.22 KB Download (140): SOAP::XML::Client::Generic Download

Added: July 07, 2010 | Visits: 1.322

Algorithm::Line::Bresenham Algorithm::Line::Bresenham is a Perl module that contains a simple pixellated line-drawing algorithm. SYNOPSIS use Algorithm::Line::Bresenham qw/line/; my @points = line(3,3 => 5,0); # returns the list: [3,3], [4,2], [4,1], [5,0] line(3,3 => 5,0, &draw_line); # calls draw_line on each...


Platforms: *nix

License: Freeware Size: 3.07 KB Download (140): Algorithm::Line::Bresenham Download

Added: May 13, 2010 | Visits: 1.341

GPS::Lowrance GPS::Lowrance is a Perl module connect to Lowrance and Eagle GPS devices. REQUIREMENTS The following modules are required to use this module: Carp::Assert GPS::Lowrance::LSI 0.23 Parse::Binary::FixedFormat Win32::SerialPort or Device::SerialPort If you will be using the...


Platforms: *nix

License: Freeware Size: 22.53 KB Download (139): GPS::Lowrance Download

Added: August 11, 2010 | Visits: 1.345

ASNMTAP::Asnmtap::Plugins::SOAP ASNMTAP::Asnmtap::Plugins::SOAP is a Perl module that provides SOAP functions used by ASNMTAP-based plugins. SYNOPSIS use ASNMTAP::Asnmtap::Plugins v3.000.010; use ASNMTAP::Asnmtap::Plugins qw(:PLUGINS); my $objectPlugins = ASNMTAP::Asnmtap::Plugins->new ( _programName =>...


Platforms: *nix

License: Freeware Size: 1.6 MB Download (138): ASNMTAP::Asnmtap::Plugins::SOAP Download

Added: June 14, 2010 | Visits: 916

Audio::MFCC Audio::MFCC is a Perl module for computing mel-frequency cepstral coefficients. SYNOPSIS use Audio::MFCC; my $fe = Audio::MFCC->init(%params) $fe->start_utt; my @ceps = $fe->process_utt($rawdata, $nsamps); my $leftover = $fe->end_utt; This module provides an interface to the Sphinx-II...


Platforms: *nix

License: Freeware Size: 91.14 KB Download (138): Audio::MFCC Download

< 1 2 3 4 5