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

Scalar software
Filter: All | Freeware | Demo
 

Scalar

< 1 2 3 4 5 > 
Added: April 09, 2010 | Visits: 1.215

PIX::Walker PIX::Walker is a Perl module to process Cisco PIX configs and walk access-lists. SYNOPSIS PIX::Walker is an object that allows you to process PIX firewall configs and walk an access-list for matches. PIX OS versions 6 and 7 are supported. ** This module is still in very early development **...



Platforms: *nix

License: Freeware Size: 13.31 KB Download (111): PIX::Walker Download

Added: January 18, 2010 | Visits: 1.441

Test::Smoke::Patcher Test::Smoke::Patcher is a OO interface to help patching the source-tree. SYNOPSIS use Test::Smoke::Patcher; my $patcher = Test::Smoke::Patcher->new( single => { ddir => $build_dir, pfile => $patch, popts => -p1, v => 1, # 0..2 }); $patcher->patch; or my $patcher =...





Platforms: *nix

License: Freeware Size: 153.6 KB Download (110): Test::Smoke::Patcher Download

Added: May 11, 2010 | Visits: 1.134

Doc::Perlish::Writer Doc::Perlish::Writer is a base class for stream output functions. SYNOPSIS # using - generally use a subclass my $writer = Doc::Perlish::Writer::XML->new(); $doc->receiver($writer); $doc->send_all(); my $output = $writer->output; # an IO::All object # or, you can pass an object or...


Platforms: *nix

License: Freeware Size: 56.32 KB Download (110): Doc::Perlish::Writer Download

Added: January 18, 2010 | Visits: 1.194

Geography::States Geography::States is a Perl module with map states and provinces to their codes, and vice versa. SYNOPSIS use Geography::States; my $obj = Geography::States -> new (COUNTRY [, STRICT]); EXAMPLES my $canada = Geography::States -> new (Canada); my $name = $canada -> state (NF); #...


Platforms: *nix

License: Freeware Size: 6.14 KB Download (109): Geography::States Download

Added: March 26, 2010 | Visits: 1.495

String::RexxParse String::RexxParse is a Perl implementation of REXX parse command. SYNOPSIS use String::RexxParse qw(parse); parse $source, q! $var1 $var2 ( $var3 ) $var4 ($var5) $var6 !; or use String::PexxParse; $parse = String::RexxParse->new(q! $var1 $var2 ( $var3 ) $var4 ($var5) $var6 !);...


Platforms: *nix

License: Freeware Size: 9.22 KB Download (109): String::RexxParse Download

Added: January 04, 2010 | Visits: 839

Params::Validate Params::Validate is a Perl module to validate method/function parameters. SYNOPSIS use Params::Validate qw(:all); # takes named params (hash or hashref) sub foo { validate( @_, { foo => 1, # mandatory bar => 0, # optional } ); } # takes positional params sub bar { # first two...


Platforms: *nix

License: Freeware Size: 79.87 KB Download (109): Params::Validate Download

Added: September 23, 2010 | Visits: 1.303

Class::InsideOut::Manual::About Class::InsideOut::Manual::About is a guide to this and other implementations of the inside-out technique. This manual provides an overview of the inside-out technique and its application within Class::InsideOut and other modules. It also provides a list of references for further study....


Platforms: *nix

License: Freeware Size: 48.13 KB Download (109): Class::InsideOut::Manual::About Download

Added: March 23, 2010 | Visits: 1.258

SDL::Video SDL::Video is a SDL perl extension. SYNOPSIS $video = new SDL::Video ( -name => pr0n.mpg ); SDL::Video adds support for MPEG video to your SDL Perl application. Videos are objects bound to surfaces, whose playback is controled through the objects interface. METHODS SDL::Video::error()...


Platforms: *nix

License: Freeware Size: 778.24 KB Download (109): SDL::Video Download

Added: July 16, 2010 | Visits: 945

File::Util File::Util is an easy, versatile, portable file handling module. File::Util provides a comprehensive toolbox of utilities to automate all kinds of common tasks on file / directories. Its purpose is to do so in the most portable manner possible so that users of this module wont have to worry...


Platforms: *nix

License: Freeware Size: 41.98 KB Download (109): File::Util Download

Added: April 05, 2010 | Visits: 777

File::Slurp File::Slurp is a Perl module for efficient reading/writing of complete files. SYNOPSIS use File::Slurp; my $text = read_file( filename ) ; my @lines = read_file( filename ) ; write_file( filename, @lines ) ; use File::Slurp qw( slurp ) ; my $text = slurp( filename ) ; This module...


Platforms: *nix

License: Freeware Size: 26.62 KB Download (108): File::Slurp Download

Added: October 04, 2010 | Visits: 1.780

Stream::Reader Stream::Reader is a stream reader Perl class. SYNOPSIS # Input stream can be reference to TYPEGLOB or SCALAR, output stream # can be the same types or undefined # Constructor $stream = Stream::Reader->new( *IN, { Limit => $limit, BuffSize => $buffsize, Mode => UB } ); # Reading all...


Platforms: *nix

License: Freeware Size: 6.14 KB Download (107): Stream::Reader Download

Added: June 21, 2010 | Visits: 1.384

Archive::Ar Archive::Ar is a Perl interface for manipulating ar archives. SYNOPSIS use Archive::Ar; my $ar = new Archive::Ar("./foo.ar"); $ar->add_data("newfile.txt","Some contents", $properties); $ar->add_files("./bar.tar.gz", "bat.pl") $ar->add_files(["./again.gz"]); $ar->remove("file1",...


Platforms: *nix

License: Freeware Size: 6.14 KB Download (107): Archive::Ar Download

Added: September 06, 2010 | Visits: 946

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 (107): B::Lint Download

Added: February 05, 2010 | Visits: 965

Hardware::Vhdl::Lexer Hardware::Vhdl::Lexer is a Perl module that can split VHDL code into lexical tokens. SYNOPSIS use Hardware::Vhdl::Lexer; # Open the file to get the VHDL code from my $fh; open $fh, <, device_behav.vhd || die $! # Create the Lexer object my $lexer = Hardware::Vhdl::Lexer->new({...


Platforms: *nix

License: Freeware Size: 11.26 KB Download (107): Hardware::Vhdl::Lexer Download

Added: October 16, 2010 | Visits: 910

Net::FreeDB2::Connection Net::FreeDB2::Connection is a FreeDB/CDDB abstract connection class. Net::FreeDB2::Connection is an abstract class to represent connections to FreeDB/CDDB servers. After a successfull connection, FreeDB/CDDB queries, reads etc can be made to obtain/provide information from/to FreeDB/CDDB...


Platforms: *nix

License: Freeware Size: 30.72 KB Download (107): Net::FreeDB2::Connection Download

Added: March 27, 2010 | Visits: 1.269

CGI::Portable CGI::Portable is a framework for server-generic web apps. SYNOPSIS Content of thin shell "startup_cgi.pl" for CGI or Apache::Registry env: #!/usr/bin/perl use strict; use warnings; require CGI::Portable; my $globals = CGI::Portable->new(); use Cwd; $globals->file_path_root( cwd() );...


Platforms: *nix

License: Freeware Size: 95.23 KB Download (106): CGI::Portable Download

Added: March 21, 2010 | Visits: 897

Filesys::Ext2 Filesys::Ext2 is a Perl interface to ext2 and ext3 filesystem attributes. SYNOPSIS use Filesys::Ext2 qw(:all); eval { $mode = lsattr("/etc/passwd"); } eval { chattr("+aud", "/etc/passwd"); } #or equivalently #chattr($mode|0x0062, "/etc/passwd"); You may specify the path of the e2fsprogs...


Platforms: *nix

License: Freeware Size: 24.58 KB Download (106): Filesys::Ext2 Download

Added: November 08, 2010 | Visits: 1.118

Audio::Mad::Stream Audio::Mad::Stream is a Perl interface to mad_stream structure. SYPNOSIS my $stream = new Audio::Mad::Stream ($options); $stream->buffer($scalar); my $remain = substr($scalar, $stream->next_frame); my $position = $stream->this_frame; $stream->skip($position + 400); $stream->sync();...


Platforms: *nix

License: Freeware Size: 122.88 KB Download (106): Audio::Mad::Stream Download

Added: April 25, 2010 | Visits: 1.049

Db::Documentum Db::Documentum is a Documentum API interface for Perl. SYNOPSIS use Db::Documentum qw(:all); scalar = dmAPIGet( ); $sessionID = dmAPIGet("connect,docbase,username,password"); scalar = dmAPIExec( ); $rv = dmAPIExec("next,c,$collection_id"); scalar = dmAPISet( , ); $api_stat =...


Platforms: *nix

License: Freeware Size: 296.96 KB Download (105): Db::Documentum Download

Added: March 12, 2010 | Visits: 1.347

Template::Magic::HTML Template::Magic::HTML Perl module contains HTML handlers for Template::Magic used in a HTML environment. SYNOPSIS $tm = new Template::Magic::HTML ; # that means $tm = new Template::Magic markers => HTML , value_handlers => HTML ; # that explicitly means $tm = new Template::Magic...


Platforms: *nix

License: Freeware Size: 46.08 KB Download (105): Template::Magic::HTML Download

< 1 2 3 4 5 >