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

Val freeware
Filter: All | Freeware | Demo
 

Val

< 1 2 3 4 > 
Added: May 01, 2010 | Visits: 1.110

Cache::Memcached::XS Cache::Memcached::XS is a client library for memcached (memory cache daemon) using libmemcache. SYNOPSIS use Cache::Memcached::XS; $memd = new Cache::Memcached { servers => [ "10.0.0.15:11211", "10.0.0.15:11212", "10.0.0.17:11211", [ "10.0.0.17:11211", 3 ] ], compress_threshold =>... Platforms: *nix

License: Freeware Size: 34.82 KB Download (97): Cache::Memcached::XS Download

Added: January 22, 2010 | Visits: 875

Scalar::Properties Scalar::Properties is a Perl module package that contains run-time properties on scalar variables. SYNOPSIS use Scalar::Properties; my $val = 0->true; if ($val && $val == 0) { print "yup, its true alright...n"; } my @text = ( hello world->greeting(1), forget it, hi... Platforms: *nix

License: Freeware Size: 10.24 KB Download (94): Scalar::Properties Download

Added: October 04, 2010 | Visits: 1.211

Bio::Genex::Software Bio::Genex::Software is Perl module with methods for processing data from the GeneX DB table: Software. SYNOPSIS use Bio::Genex::Software; # instantiating an instance my $Software = Bio::Genex::Software->new(id=>47); # retrieve data from the DB for all columns $Software->fetch(); #... Platforms: *nix

License: Freeware Size: 552.96 KB Download (107): Bio::Genex::Software Download

Added: April 03, 2010 | Visits: 962

Rose::Object::MakeMethods::Generic Rose::Object::MakeMethods::Generic is a Perl module that can create simple object methods. SYNOPSIS package MyObject; use Rose::Object::MakeMethods::Generic ( scalar => [ power, error, ], scalar --get_set_init => name, boolean --get_set_init => is_tall, boolean => [ is_red,... Platforms: *nix

License: Freeware Size: 28.67 KB Download (97): Rose::Object::MakeMethods::Generic Download

Added: May 12, 2010 | Visits: 668

VTKRendering VTKRendering is a Perl interface to VTKRendering library. Graphics::VTK::OpenGLRenderWindow Inherits from RenderWindow Functions Supported for this class by the PerlVTK module: (To find more about their use check the VTK documentation at http://www.kitware.com.) const char *GetClassName... Platforms: *nix

License: Freeware Size: 675.84 KB Download (95): VTKRendering Download

Added: January 23, 2010 | Visits: 850

RasmusDSP 0.1 RasmusDSP is an embeddable Audio/MIDI processor. Has a script interpreter which is used to describe instruments, route Audio/MIDI signal between processor units. List of available units: Math Operators (audio and number domain) +, -, *, /, %, >, <, >=, <=, !=, =, ? Math Functions (audio... Platforms: *nix

License: Freeware Size: 901.12 KB Download (91): RasmusDSP 0.1 Download

Added: September 23, 2010 | Visits: 785

Variable::Strongly::Typed Variable::Strongly::Typed is a Perl module to let some variables be strongly typed. SYNOPSIS use Variable::Strongly::Typed; my $int :TYPE(int); # must have an int value my $float :TYPE(float); # must have a float value my $string :TYPE(string); # must not be a reference my $file... Platforms: *nix

License: Freeware Size: 10.24 KB Download (94): Variable::Strongly::Typed Download

Added: October 26, 2010 | Visits: 764

Variable::Strongly::Typed::Array Variable::Strongly::Typed::Array is a Perl module for strongly typed array. SYNOPSIS This class is utilized by Variable::Strongly::Typed - you dont access this directly my @array_of_ints :TYPE(int); # Each slot must contain an int my @array_of_rgb :TYPE(&red_green_blue); # my enumerated... Platforms: *nix

License: Freeware Size: 10.24 KB Download (92): Variable::Strongly::Typed::Array Download

Added: April 03, 2010 | Visits: 853

Class::DBI::Query Class::DBI::Query is a Perl module with deprecated SQL manager for Class::DBI. SYNOPSIS my $sth = Class::DBI::Query ->new({ owner => $class, sqlname => $type, essential => @columns, where_columns => @where_cols, }) ->run($val); This abstracts away many of the details of the... Platforms: *nix

License: Freeware Size: 102.4 KB Download (93): Class::DBI::Query Download

Added: January 26, 2010 | Visits: 724

DJabberd::Plugin::JabberIqVersion DJabberd::Plugin::JabberIqVersion is a Perl module that adds support for "XEP 0092, Software version" to DJabberd. SYNOPSIS < Vhost example.com > ... < Plugin DJabberd::Plugin::JabberIqVersion > OS Gnu/Windows Name PerlJabberServer Professional Version Gold < /Plugin > ... < /VHost >... Platforms: *nix

License: Freeware Size: 8.19 KB Download (99): DJabberd::Plugin::JabberIqVersion Download

Added: June 03, 2010 | Visits: 707

Object::AutoAccessor Object::AutoAccessor is an accessor class by using AUTOLOAD. SYNOPSIS use Object::AutoAccessor; my $struct = { foo => { bar => { baz => BUILD OK, }, }, }; # Now lets easily accomplish it. my $obj = Object::AutoAccessor->build($struct); print $obj->foo->bar->baz; # prints BUILD OK... Platforms: *nix

License: Freeware Size: 6.14 KB Download (90): Object::AutoAccessor Download

Added: September 02, 2010 | Visits: 777

Apache2::RequestRec Apache2::RequestRec is a Perl API for Apache request record accessors. Synopsis use Apache2::RequestRec (); # set supported by the handler HTTP methods $allowed = $r->allowed(); # auth type $auth_type = $r->ap_auth_type(); # QUERY_STRING $args = $r->args(); # non-parsed-headers... Platforms: *nix

License: Freeware Size: 3.5 MB Download (94): Apache2::RequestRec Download

Added: May 03, 2010 | Visits: 887

Mon::Client Mon::Client is a Perl module with methods for interaction with Mon client. SYNOPSIS use Mon::Client; Mon::Client is used to interact with "mon" clients. It supports a protocol-independent API for retrieving the status of the mon server, and performing certain operations, such as disableing... Platforms: *nix

License: Freeware Size: 23.55 KB Download (94): Mon::Client Download

Added: August 12, 2010 | Visits: 762

IO::Pty IO::Pty is a pseudo TTY object class. SYNOPSIS use IO::Pty; $pty = new IO::Pty; $slave = $pty->slave; foreach $val (1..10) { print $pty "$valn"; $_ = <$slave>; print "$_"; } close($slave); IO::Pty provides an interface to allow the creation of a pseudo tty. IO::Pty inherits... Platforms: *nix

License: Freeware Size: 21.5 KB Download (112): IO::Pty Download

Added: September 13, 2010 | Visits: 740

AppConfig::Std AppConfig::Std is a Perl subclass of AppConfig that provides standard options. SYNOPSIS use AppConfig::Std; $config = AppConfig::Std->new(); # all AppConfig methods supported $config->define(foo); # define variable foo $config->set(foo, 25); # setting a variable $val =... Platforms: *nix

License: Freeware Size: 6.14 KB Download (87): AppConfig::Std Download

Added: February 13, 2010 | Visits: 965

mod_form mod_form is a utility to decode data submitted from Web forms. It deals with both GET and POST methods where the data are encoded using the default content type application/x-www-form-urlencoded. mod_form does not decode multipart/form-data (file upload) forms: for those you should use... Platforms: *nix

License: Freeware Size: 9.22 KB Download (93): mod_form Download

Added: August 23, 2010 | Visits: 713

mod_tee mod_tee serves to "clone" an document as it is served. mod_tee was hacked up as a quick-and-dirty fix when a Site Valet user complained of problems saving a Valet report: mod_tee now serves to enable registered users to request email copies of any report generated. The current status is "works... Platforms: *nix

License: Freeware Size: 12.29 KB Download (89): mod_tee Download

Added: July 10, 2010 | Visits: 657

CORBA::IDLtreev CORBA::IDLtree is a Perl module that builds abstract syntax trees from CORBA IDL. The main export is sub Parse_File which takes an IDL input file name as the parameter, and returns a reference to an array of references to the root nodes constructed (or 0 if there were syntax errors.)... Platforms: *nix

License: Freeware Size: 36.86 KB Download (87): CORBA::IDLtreev Download

Added: June 21, 2010 | Visits: 860

CGI::Ex::Conf CGI::Ex::Conf is a Perl module with Conf Reader/Writer for many different data format types. SYNOPSIS use CGI::Ex::Conf qw(conf_read conf_write); my $hash = conf_read("/tmp/foo.yaml"); conf_write("/tmp/foo.yaml", {key1 => $val1, key2 => $val2}); ### OOP interface my $cob =... Platforms: *nix

License: Freeware Size: 215.04 KB Download (89): CGI::Ex::Conf Download

Added: November 27, 2010 | Visits: 931

File::Data File::Data is a Perl module as a interface to file data. Wraps all the accessing of a file into a convenient set of calls for reading and writing data, including a simple regex interface. Note that the file needs to exist prior to using this module! See new() SYNOPSIS use strict; use... Platforms: *nix

License: Freeware Size: 13.31 KB Download (91): File::Data Download

< 1 2 3 4 >