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

Sub freeware
Filter: All | Freeware | Demo
 

Sub

< 1 2 3 4 5 > 
Added: January 18, 2010 | Visits: 1.143

Test::Stochastic Test::Stochastic is a Perl module to check probabilities of randomized methods. SYNOPSIS use Test::Stochastic qw(stochastic_ok); stochastic_ok sub { ...random sub...}, {a => 0.4, b => 0.6}; stochastic_ok {a => 0.4, b => 0.6}, sub { ...random sub...}; Test::Stochastic::setup(times => 100,...



Platforms: *nix

License: Freeware Size: 4.1 KB Download (105): Test::Stochastic Download

Added: January 08, 2010 | Visits: 1.124

Async::Group Async::Group is a Perl class to deal with simultaneous asynchronous calls. SYNOPSIS use Async::Group ; use strict ; sub sub1 { print "Dummy subroutine n"; my $dummy = shift ; my $cb = shift ; &$cb(1); } sub allDone { print "All done, result is ", shift ,"n" ; } my $a =...





Platforms: *nix

License: Freeware Size: 4.1 KB Download (105): Async::Group Download

Added: August 16, 2010 | Visits: 1.356

Yet Another antiVirus Recipe Yet Another antiVirus Recipe is a procmail that helps to filter out a lot of the most common e-mail worms. For some of the above (plain iframe, clsid, xml, macro) e-mail is delivered normally but gets a WARNING in subject plus its old subject ($SUB). Some of the warnings are:...


Platforms: *nix

License: Freeware Size: 55.3 KB Download (104): Yet Another antiVirus Recipe Download

Added: March 03, 2010 | Visits: 1.516

MP3 Report Generator MP3 Report Generator is a customizable program to scan a list of (sub)directories, creating a report from an HTML template. Also calculates various statistics and each songs playing time. Supports ID3 and ID3v2 tags. All options can be configured through the command line, see mp3report.pl...


Platforms: *nix

License: Freeware Size: 36.86 KB Download (103): MP3 Report Generator Download

Added: August 15, 2008 | Visits: 932

ShellSearch Constantly searching for misplaced shortcuts on your Desktop, Desktop sub-folders, Start Menu, Internet Favorites menu, etc.? This program helps you find misplaced shortcuts or any other types of files quickly and easily in any combination of Windows most commonly used shell locations such as...


Platforms: Windows

License: Freeware Size: 1.17 MB Download (103): ShellSearch Download

Added: March 07, 2010 | Visits: 1.035

Sendmail::Milter Sendmail::Milter is a Perl interface to sendmails Mail Filter API. SYNOPSIS use Sendmail::Milter; my %my_milter_callbacks = ( connect => &my_connect_callback, helo => &my_helo_callback, envfrom => &my_envfrom_callback, envrcpt => &my_envrcpt_callback, header => &my_header_callback,...


Platforms: *nix

License: Freeware Size: 20.48 KB Download (103): Sendmail::Milter Download

Added: November 23, 2010 | Visits: 1.355

Thread::Pool Thread::Pool contains group of threads for performing similar jobs. SYNOPSIS use Thread::Pool; $pool = Thread::Pool->new( { optimize => cpu, # default: memory pre => sub {shift; print "starting worker with @_n", do => sub {shift; print "doing job for @_n"; reverse @_}, post => sub...


Platforms: *nix

License: Freeware Size: 26.62 KB Download (103): Thread::Pool 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: 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: 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 10, 2010 | Visits: 921

File::FilterFuncs File::FilterFuncs is a Perl module that specify filter functions for files. SYNOPSIS use File::FilterFuncs qw(filters); filters(source.txt, sub { $_ = uc $_; 1 }, dest.txt ); INTRODUCTION File::FilterFuncs makes it easy to perform transformations on files. When you use this module,...


Platforms: *nix

License: Freeware Size: 12.29 KB Download (100): File::FilterFuncs Download

Added: September 15, 2010 | Visits: 1.233

FSA::Rules FSA::Rules is a Perl module to build simple rules-based state machines in Perl. Synopsis my $fsa = FSA::Rules->new( ping => { do => sub { print "ping!n"; my $state = shift; $state->result(pong); $state->machine->{count}++; }, rules => [ game_over => sub { shift->machine->{count} >=...


Platforms: *nix

License: Freeware Size: 30.72 KB Download (99): FSA::Rules Download

Added: July 14, 2010 | Visits: 903

Java::Build::GenericBuild Java::Build::GenericBuild is a high level driver to control Java builds. SYNOPSIS There are two (or more) code files needed to effectively use this module. First, create a subclass of this class: package Java::Build::MyBuild; use Carp; # Do the following in a BEGIN block before the use...


Platforms: *nix

License: Freeware Size: 30.72 KB Download (99): Java::Build::GenericBuild Download

Added: May 18, 2010 | Visits: 1.273

Sub::Slice::Manual Sub::Slice::Manual is a Perl module with user guide for Sub::Slice. USING Sub::Slice Sub::Slice is a way of breaking down a long-running process and maintaining state across a stateless protocol. This allows the client to draw a progress bar or abort the process part-way through. The...


Platforms: *nix

License: Freeware Size: 27.65 KB Download (98): Sub::Slice::Manual Download

Added: January 18, 2010 | Visits: 984

Benchmark::Forking Benchmark::Forking is a Perl module to run benchmarks in separate processes. SYNOPSIS use Benchmark::Forking qw( timethis timethese cmpthese ); timethis ($count, "code"); timethese($count, { Name1 => sub { ...code1... }, Name2 => sub { ...code2... }, }); cmpthese($count, { Name1 =>...


Platforms: *nix

License: Freeware Size: 6.14 KB Download (98): Benchmark::Forking Download

Added: August 11, 2010 | Visits: 949

FUSE::Server FUSE::Server is a Perl-FUSE server. SYNOPSIS use FUSE::Server; my $s = FUSE::Server->new({ Port=>35008, MaxClients=>5000, Quiet=>1, }); my $status = $s->bind(); print "Server started: $status"; $s->addCallback(BROADCASTALL,&msg_broadcast);...


Platforms: *nix

License: Freeware Size: 4.1 KB Download (98): FUSE::Server Download

Added: February 24, 2010 | Visits: 854

List::RewriteElements List::RewriteElements is a Perl module that can create a new list by rewriting elements of a first list. SYNOPSIS use List::RewriteElements; Constructor Simplest case: Input from array, output to STDOUT. $lre = List::RewriteElements->new( { list => @source, body_rule => sub { my...


Platforms: *nix

License: Freeware Size: 26.62 KB Download (98): List::RewriteElements Download

Added: April 03, 2010 | Visits: 897

Gtk2::Ex::MindMapView Gtk2::Ex::MindMapView is a Perl module to display mind map or outline on a Gnome2::Canvas. HEIRARCHY Glib::Object +----Gtk2::Object +----Gtk2::Widget +----Gtk2::Container +----Gtk2::Layout +----Gnome2::Canvas +----Gtk2::Ex::MindMapView SYNOPSIS #!/usr/bin/perl -w use strict; use...


Platforms: *nix

License: Freeware Size: 50.18 KB Download (98): Gtk2::Ex::MindMapView Download

Added: September 18, 2010 | Visits: 1.376

Code::Splice Code::Splice injects the contents of one subroutine at a specified point elsewhere. SYNOPSIS use Code::Splice; Code::Splice::inject( code => sub { print "fredn"; }, package => main, method => foo, precondition => sub { my $op = shift; my $line = shift; $line =~ m/print/ and $line =~...


Platforms: *nix

License: Freeware Size: 10.24 KB Download (98): Code::Splice Download

Added: November 27, 2010 | Visits: 730

Class::Driver EXAMPLE # This is a really long synopsis, but hopefully it will give you an idea... package MyPackage; use Class::Driver; use base q(Class::Driver); our %drivers; return 1; sub new { my($class, %args) = @_; die "mime_type is required" unless($args{mime_type}); die "no driver to...


Platforms: *nix

License: Freeware Size: 11.26 KB Download (98): Class::Driver Download

< 1 2 3 4 5 >