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

Undef freeware
Filter: All | Freeware | Demo
 

Undef

< 1 2 3 4 5 > 
Added: July 07, 2013 | Visits: 473

LEGO::Colors This is a simple accessor class, used to store information about various different colors that LEGO pieces can have. Generally, you won't be creating these yourself -- they're just convenient ways to pass information back from the LEGO::Colors module. METHODS new Constructs a new Color... Platforms: *nix

License: Freeware Size: 20.48 KB Download (33): LEGO::Colors Download

Added: June 27, 2013 | Visits: 403

Hey::Cache Hey::Cache is a Perl module to cache data multiple data structures. SYNOPSIS use Hey::Cache; my $cache = Hey::Cache->new( Namespace => 'WeatherApp2000', # string (optional, default='default') CacheFile => 'fun_cache_file.xml', # file path and name (optional, default='cache.xml') AutoSync... Platforms: *nix

License: Freeware Size: 10.24 KB Download (33): Hey::Cache Download

Added: January 18, 2010 | Visits: 2.272

Chart::Graph::Gnuplot Chart::Graph::Gnuplot is a function in module Chart::Graph that lets you generate graphs on the fly in perl. SYNOPSIS use Chart::Graph::Gnuplot qw(&gnuplot); gnuplot(%global_options, [%data_set_options, @matrix], [%data_set_options, @x_column, @y_column], [%data_set_options, < filename... Platforms: *nix

License: Freeware Size: 8.19 KB Download (173): Chart::Graph::Gnuplot Download

Added: January 18, 2010 | Visits: 748

Params-Util Params-Util is a simple, compact and correct param-checking functions. SYNOPSIS # Import some functions use Params::Util qw{_SCALAR _HASH _INSTANCE}; # If you are lazy, or need a lot of them... use Params::Util :ALL; sub foo { my $object = _INSTANCE(shift, Foo) or return undef; my... Platforms: *nix

License: Freeware Size: 33.79 KB Download (95): Params-Util Download

Added: January 18, 2010 | Visits: 1.104

Filesys::SmbClientParser Filesys::SmbClientParser is a Perl client to reach Samba ressources with smbclient. SYNOPSIS use Filesys::SmbClientParser; my $smb = new Filesys::SmbClientParser (undef, ( user => Administrateur, password => password )); # Or like -A parameters: $smb->Auth("/home/alian/.smbpasswd");... Platforms: *nix

License: Freeware Size: 13.31 KB Download (103): Filesys::SmbClientParser Download

Added: January 18, 2010 | Visits: 1.083

Filesys::DiskFree Filesys::DiskFree is a Perl module to perform the Unix command df in a portable fashion. SYNOPSIS use Filesys::DiskFree; $handle = new Filesys::DiskFree; $handle->df(); print "The root device is ".$handle->device("/")."n"; print "It has ".$handle->avail("/")." bytes availablen"; print... Platforms: *nix

License: Freeware Size: 5.12 KB Download (98): Filesys::DiskFree Download

Added: January 18, 2010 | Visits: 903

Astro::Aladin::LowLevel Astro::Aladin::LowLevel is a Perl class designed to drive CDS Aladin Application. SYNOPSIS my $aladin = new Astro::Aladin::LowLevel( ); Drives the CDS Aladin Application through a anonymous pipe, expects the a copy of the standalone Aladin application to be installed locally and pointed to... Platforms: *nix

License: Freeware Size: 20.48 KB Download (111): Astro::Aladin::LowLevel Download

Added: June 25, 2010 | Visits: 927

DBIx::SQL::Abstract DBIx::SQL::Abstract is a Perl module that provides a convenient abstraction layer to a database. SYNOPSIS use DBIx::SQL::Abstract; my $dbh = DBIx::SQL::Abstract->new( %dbcfg ); Building SQL Abstractions. my($query, @bind) = $dbh->select($table, @fields, %where, @order); my($query,... Platforms: *nix

License: Freeware Size: 4.1 KB Download (88): DBIx::SQL::Abstract Download

Added: August 11, 2010 | Visits: 1.350

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 12, 2010 | Visits: 752

FrameNet::WordNet::Detour FrameNet::WordNet::Detour is a WordNet to FrameNet Detour. SYNOPSIS use FrameNet::WordNet::Detour; # Creation without parameters, $WNHOME and $FNHOME will be used my $detour = FrameNet::WordNet::Detour->new; # Creation with some parameters my $detour2 =... Platforms: *nix

License: Freeware Size: 15.36 KB Download (109): FrameNet::WordNet::Detour Download

Added: January 26, 2010 | Visits: 1.100

POE::Component::Client::Traceroute POE::Component::Client::Traceroute is a non-blocking traceroute client. SYNOPSIS use POE qw(Component::Client::Traceroute); POE::Component::Client::Traceroute->spawn( Alias => tracer, # Defaults to tracer FirstHop => 1, # Defaults to 1 MaxTTL => 16, # Defaults to 32 hops Timeout => 0, #... Platforms: *nix

License: Freeware Size: 15.36 KB Download (90): POE::Component::Client::Traceroute Download

Added: January 03, 2010 | Visits: 1.135

Mail::ListDetector::Detector::Onelist Mail::ListDetector::Detector::Onelist is a ONElist message detector. SYNOPSIS use Mail::ListDetector::Detector::Onelist; An implementation of a mailing list detector, for ONElist mailing lists. ONElist was eaten by eGroups which became Yahoo! Groups so this detector is really only useful... Platforms: *nix

License: Freeware Size: 39.94 KB Download (143): Mail::ListDetector::Detector::Onelist Download

Added: January 07, 2010 | Visits: 1.543

File::Find::Parallel File::Find::Parallel allows you to traverse a number of similar directories in parallel. SYNOPSIS use File::Find::Parallel; my $ffp = File::Find::Parallel->new( qw( /foo /bar ) ); print "Union:n"; my $union = $ffp->any_iterator print " $_n" while $_ = $union->(); print... Platforms: *nix

License: Freeware Size: 9.22 KB Download (92): File::Find::Parallel Download

Added: January 09, 2010 | Visits: 1.144

Geo::Lookup::ByTime Geo::Lookup::ByTime is a Perl module to lookup location by time. SYNOPSIS use Geo::Lookup::ByTime; $lookup = Geo::Lookup::ByTime->new( @points ); my $pt = $lookup->nearest( $tm ); Given a set of timestamped locations guess the location at a particular time. This is a useful operation... Platforms: *nix

License: Freeware Size: 15.36 KB Download (94): Geo::Lookup::ByTime Download

Added: February 27, 2010 | Visits: 1.155

Data::Validator::Item Data::Validator::Item is a Factory Class to validate data items. This is an attempt to create an object which will permit semi-automatic verification of a data value. SYNOPSIS use Data::Validator::Item; my $item = Data::Validator::Item->new(); #Create a new Data::Validator::Item, called... Platforms: *nix

License: Freeware Size: 11.26 KB Download (95): Data::Validator::Item Download

Added: January 03, 2010 | Visits: 1.452

Linux::Joystick Linux::Joystick is an object-oriented, pure Perl API for accessing joystick devices under Linux-based operating systems. Linux::Joystick module is capable of using either blocking or non-blocking I/O, and represents each axis change or button press as a Linux::Joystick::Event object. USAGE If... Platforms: *nix

License: Freeware Size: 22.53 KB Download (140): Linux::Joystick Download

Added: May 05, 2010 | Visits: 871

HyperWave::CSP SYNOPSIS use HyperWave::CSP; $server = HyperWave::CSP->New("my.hyperwave.server"); $server->quit; HyperWave is a class implementing a simple HyperWave client in Perl. CONSTRUCTOR new ( [ HOST [, PORT [, USERNAME [, PASSWORD [, ENCRYPT [, LANGUAGE ] ] ] ] ] ] ) This is the constructor... Platforms: *nix

License: Freeware Size: 17.41 KB Download (96): HyperWave::CSP Download

Added: April 02, 2010 | Visits: 1.082

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: November 27, 2010 | Visits: 1.350

Bio::NEXUS::Node Bio::NEXUS::Node is a Perl module that provides functions for manipulating nodes in trees. SYNOPSIS new Bio::NEXUS::Node; METHODS new Title : new Usage : $node = new Bio::NEXUS::Node(); Function: Creates a new Bio::NEXUS::Node object Returns : Bio::NEXUS::Node object Args : none... Platforms: *nix

License: Freeware Size: 153.6 KB Download (98): Bio::NEXUS::Node Download

Added: October 11, 2010 | Visits: 880

Bio::NEXUS::TaxaBlock Bio::NEXUS::TaxaBlock is a Perl module that represents TAXA block of a NEXUS file. SYNOPSIS if ( $type =~ /taxa/i ) { $block_object = new Bio::NEXUS::TaxaBlock($type, $block, $verbose); } If a NEXUS block is a taxa block, this module parses the block and stores the taxonomic data.... Platforms: *nix

License: Freeware Size: 153.6 KB Download (93): Bio::NEXUS::TaxaBlock Download

< 1 2 3 4 5 >