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

Subroutine freeware
Filter: All | Freeware | Demo
 

Subroutine

< 1 2 3 4 5 > 
Added: October 01, 2010 | Visits: 1.188

Filter::Macro Filter::Macro is a Perl module to make macro modules that are expanded inline. SYNOPSIS In MyHandyModules.pm: package MyHandyModules; use Filter::Macro; # lines below will be expanded into callers code use strict; use warnings; use Switch; use IO::All; use Quantum::Superpositions;...



Platforms: *nix

License: Freeware Size: 13.31 KB Download (104): Filter::Macro Download

Added: February 04, 2010 | Visits: 1.065

Devel::RingBuffer Devel::RingBuffer is a Perl module with shared memory ring buffers for Perl scripts diagnosis/debug. SYNOPSIS # # create ringbuffer # use Devel::RingBuffer; use Devel::RingBuffer::TieInt; my $ringbuf = Devel::RingBuffer->new( File => somefile.trace, Rings => 20, Slots => 20,...





Platforms: *nix

License: Freeware Size: 37.89 KB Download (103): Devel::RingBuffer Download

Added: May 14, 2010 | Visits: 763

Text::WagnerFischer Text::WagnerFischer is an implementation of the Wagner-Fischer edit distance. SYNOPSIS use Text::WagnerFischer qw(distance); print distance("foo","four");# prints "2" print distance([0,1,2],"foo","four");# prints "3" my @words=("four","foo","bar"); my...


Platforms: *nix

License: Freeware Size: 4.1 KB Download (103): Text::WagnerFischer Download

Added: July 13, 2010 | Visits: 809

File::PM2File File::PM2File - obsolete. User File::Where SYNOPSIS file_in_include() # obsolete. Replace with File::Where::where() pm2file() # obsolete. Replace with File::Where::where_pm() pm2require() # obsolete. Replace with File::Where::pm2require() $File::PM2File::warn_obsolete = 1; # turns on...


Platforms: *nix

License: Freeware Size: 33.79 KB Download (103): File::PM2File Download

Added: September 04, 2010 | Visits: 1.188

File::Maker File::Maker is a Perl module that mimics a make by loading a database and calling targets methods. SYNOPSIS ##### # Subroutine interface # use File::Maker qw(load_db); %data = load_db($pm); ###### # Object interface # require File::Maker; $maker = $maker->load_db($pm);...


Platforms: *nix

License: Freeware Size: 77.82 KB Download (102): File::Maker Download

Added: April 02, 2010 | Visits: 1.077

File::DirCompare File::DirCompare is a Perl module to compare two directories using callbacks. SYNOPSIS use File::DirCompare; # Simple diff -r --brief replacement use File::Basename; File::DirCompare->compare($dir1, $dir2, sub { my ($a, $b) = @_; if (! $b) { printf "Only in %s: %sn", dirname($a),...


Platforms: *nix

License: Freeware Size: 8.19 KB Download (102): File::DirCompare Download

Added: January 13, 2010 | Visits: 932

Class::Observable Class::Observable is a Perl module that allows other classes and objects to respond to events in yours. SYNOPSIS # Define an observable class package My::Object; use base qw( Class::Observable ); # Tell all classes/objects observing this object that a state-change # has occurred sub...


Platforms: *nix

License: Freeware Size: 10.24 KB Download (102): Class::Observable Download

Added: August 07, 2010 | Visits: 1.349

AppleII::Disk AppleII::Disk is a Perl module for block-level access to Apple II disk image files. SYNOPSIS use AppleII::Disk; my $disk = AppleII::Disk->new(image.dsk); my $data = $disk->read_block(1); # Read block 1 $disk->write_block(1, $data); # And write it back :-) AppleII::Disk provides...


Platforms: *nix

License: Freeware Size: 37.89 KB Download (102): AppleII::Disk Download

Added: May 01, 2010 | Visits: 911

Text::Reform Text::Reform is a Perl module for manual text wrapping and reformatting. SYNOPSIS use Text::Reform; print form $template, $data, $to, $fill, $it, $with; use Text::Reform qw( tag ); print tag B, $enboldened_text; The form sub The form() subroutine may be exported from the module....


Platforms: *nix

License: Freeware Size: 20.48 KB Download (102): Text::Reform 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: September 15, 2010 | Visits: 1.035

Ace::Browser::AceSubs Ace::Browser::AceSubs Perl module contains subroutines for AceBrowser. SYNOPSIS use Ace; use Ace::Browser::AceSubs; use CGI qw(:standard); use CGI::Cookie; my $obj = GetAceObject() || AceNotFound(); PrintTop($obj); print $obj->asHTML; PrintBottom(); Ace::Browser::AceSubs exports a...


Platforms: *nix

License: Freeware Size: 296.96 KB Download (102): Ace::Browser::AceSubs Download

Added: August 10, 2010 | Visits: 1.754

Javascript::Menu Javascript::Menu is a NumberedTree that generates HTML and Javascript code for a menu. SYNOPSIS use Javascript::Menu; # Give it something to do (example changes the menus caption): my $action = sub { my $self = shift; my ($level, $unique) = @_; my $value = $self->getValue; return...


Platforms: *nix

License: Freeware Size: 25.6 KB Download (102): Javascript::Menu Download

Added: February 27, 2010 | Visits: 724

Sub::Regex Sub::Regex is a Perl module to create synonymous subroutines. SYNOPSIS use Sub::Regex; sub /look(s|ing)?_for/ ($){ foobar blah blah } look_for(Amanda); looks_for(Amanda); looking_for(Amanda); lOoKiNg_fOr(Amanda); Sub::Regex is a small tool for users to create a subroutine with...


Platforms: *nix

License: Freeware Size: 2.05 KB Download (102): Sub::Regex Download

Added: March 03, 2010 | Visits: 1.309

IO::Pipe::Producer IO::Pipe::Producer is a Perl module that provides two modules getSubroutineProducer and getSystemProducer. SYNOPSIS # Module which provides 2 methods: getSubroutineProducer # and getSystemProducer. They take a subroutine reference # (with associated arguments) and a system call #...


Platforms: *nix

License: Freeware Size: 6.14 KB Download (101): IO::Pipe::Producer Download

Added: January 14, 2010 | Visits: 942

Data::Startup SYNOPSIS ###### # Subroutine interface # use Data::Startup qw(config override); $options = override(%default_options, @option_list ); $options = override(%default_options, @option_list ); $options = override(%default_options, %option_list ); @options_list = config(%options ); ($key,...


Platforms: *nix

License: Freeware Size: 74.75 KB Download (101): Data::Startup Download

Added: September 06, 2010 | Visits: 941

B::Lint B::Lint module contains Perl lint. SYNOPSIS perl -MO=Lint[,OPTIONS] foo.pl The B::Lint module is equivalent to an extended version of the -w option of perl. It is named after the program lint which carries out a similar process for C programs. OPTIONS AND LINT CHECKS Option words are...


Platforms: *nix

License: Freeware Size: 17.41 KB Download (101): B::Lint Download

Added: February 14, 2010 | Visits: 733

Data::Secs2 Data::Secs2 is a Perl module to pack, unpack, format, transform from Perl data SEMI E5-94 nested data. SYNOPSIS ##### # Subroutine interface # use Data::Secs2 qw(arrayify config listify neuterify numberify perlify perl_typify secsify secs_elementify stringify textify transify); @array =...


Platforms: *nix

License: Freeware Size: 98.3 KB Download (101): Data::Secs2 Download

Added: January 11, 2010 | Visits: 994

Time::Skew Time::Skew is a Perl module that computes local clock skew with respect to a remote clock. SYNOPISI use Time::Skew # Init Convex Hull and timing data my $hull=[]; my $result={}; # Iterate data point introduction Time::Skew::convexhull($result,$datapoint,$hull); This module supports...


Platforms: *nix

License: Freeware Size: 45.06 KB Download (100): Time::Skew Download

Added: May 25, 2010 | Visits: 951

List::MRU List::MRU is a Perl module that implements a simple fixed-size MRU-ordered list. SYNOPSIS use List::MRU; # Constructor $lm = List::MRU->new(max => 20); # Constructor with explicit eq subroutine for obj equality tests $lm = List::MRU->new(max => 20, eq => sub { $_[0]->stringify eq...


Platforms: *nix

License: Freeware Size: 4.1 KB Download (100): List::MRU Download

Released: December 22, 2012  |  Added: December 22, 2012 | Visits: 2.278

sqlpp sqlpp Perl package is a SQL preprocessor. sqlpp is a conventional cpp-alike preprocessor taught to understand SQL ( PgSQL, in particular) syntax specificities. In addition to the standard #define/#ifdef/#else/#endif cohort, provides also #perldef for calling arbitrary perl code. SYNOPSIS...


Platforms: *nix

License: Freeware Size: 10.24 KB Download (100): sqlpp Download

< 1 2 3 4 5 >