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

Undef software
Filter: All | Freeware | Demo
 

Undef

< 1 2 3 4 5 
Added: June 24, 2010 | Visits: 1.302

Audio::TagLib::Ogg::FLAC::File Audio::TagLib::Ogg::FLAC::File is an implementation of Audio::TagLib::File with Ogg/FLAC specific methods. SYNOPSIS use Audio::TagLib::Ogg::FLAC::File; my $i = Audio::TagLib::Ogg::FLAC::File->new("sample file.flac"); print $i->tag()->album()->toCString(), "n"; # got album This implements... Platforms: *nix

License: Freeware Size: 1.4 MB Download (107): Audio::TagLib::Ogg::FLAC::File Download

Added: June 02, 2010 | Visits: 1.066

PDL::Bad PDL::Bad - PDL does not process bad values. PDL has been compiled with WITH_BADVAL either 0 or undef, so it does not contain any bad-value support code. Actually, a number of methods are defined, but they are only placeholders to make writing other code, that has to handle WITH_BADVAL being... Platforms: *nix

License: Freeware Size: 2.1 MB Download (101): PDL::Bad Download

Added: January 01, 2010 | Visits: 1.474

Games::Tournament::RoundRobin Games::Tournament::RoundRobin is a Perl module for Round-Robin Tournament Schedule Pairings. SYNOPSIS $schedule = Games::Tournament::RoundRobin->new; $pairings = $schedule->indexesInRound($roundm); $round = $schedule->meeting($member1, [$member2, $member3]); ... Every member of a league... Platforms: *nix

License: Freeware Size: 10.24 KB Download (116): Games::Tournament::RoundRobin Download

Added: April 02, 2010 | Visits: 1.021

slackget10::Package slackget10::Package this class is the internal representation of a package for slack-get 1.0. SYNOPSIS This module is used to represent a package for slack-get use slackget10::Package; my $package = slackget10::Package->new(package-1.0.0-noarch-1); $package->setValue(description,"This is... Platforms: *nix

License: Freeware Size: 163.84 KB Download (102): slackget10::Package Download

Added: March 05, 2010 | Visits: 762

Iterator::IO Iterator::IO is a Perl module with filesystem and stream iterators. SYNOPSIS use Iterator::IO; # Return the names of files in a directory (except . and ..) $iter = idir_listing ($path); # Return all the files in a directory tree, one at a time. # Like File::Find, in slow motion. $iter... Platforms: *nix

License: Freeware Size: 14.34 KB Download (88): Iterator::IO Download

Added: January 27, 2010 | Visits: 1.356

CAD::Drawing::IO::Split CAD::Drawing::IO::Split is a Perl module that allows fast distributed text file methods. Requisite Plug-in Functions See CAD::Drawing::IO for a description of the plug-in architecture. check_type Returns true if $type is "split" or $filename is a directory (need a tag?) $fact =... Platforms: *nix

License: Freeware Size: 39.94 KB Download (100): CAD::Drawing::IO::Split Download

Added: April 21, 2010 | Visits: 751

dtRdr::Traits::Class dtRdr::Traits::Class is a Perl module with shared OO stuff. Methods to Break Things NOT_IMPLEMENTED Imported into base class. Gives a nicer message than the standard "Cant locate method...", indicating that you did not typo the method name, but instead forgot to override it. sub... Platforms: *nix

License: Freeware Size: 2.8 MB Download (92): dtRdr::Traits::Class Download

Added: January 27, 2010 | Visits: 947

Search::Binary Search::Binary is a Perl module for generic binary search. SYNOPSIS use Seach::Binary; $pos = binary_search($min, $max, $val, $read, $handle, [$size]); binary_search implements a generic binary search algorithm returning the position of the first record whose index value is greater than or... Platforms: *nix

License: Freeware Size: 2.05 KB Download (105): Search::Binary Download

Added: July 09, 2010 | Visits: 649

Text::Refer Text::Refer can parse Unix "refer" files. SYNOPSIS Pull in the module: use Text::Refer; Parse a refer stream from a filehandle: while ($ref = input Text::Refer *FH) { # ...do stuff with $ref... } defined($ref) or die "error parsing input"; Same, but using a parser object for more... Platforms: *nix

License: Freeware Size: 31.74 KB Download (92): Text::Refer Download

Added: July 18, 2010 | Visits: 1.155

DateTime::Format::Epoch DateTime::Format::Epoch is a Perl module that can convert DateTimes to/from epoch seconds. SYNOPSIS use DateTime::Format::Epoch; my $dt = DateTime->new( year => 1970, month => 1, day => 1 ); my $formatter = DateTime::Format::Epoch->new( epoch => $dt, unit => seconds, type => int, # or... Platforms: *nix

License: Freeware Size: 17.41 KB Download (96): DateTime::Format::Epoch Download

Added: February 18, 2010 | Visits: 1.012

DateTime::Calendar::Pataphysical DateTime::Calendar::Pataphysical is a Perl module with dates in the pataphysical calendar. SYNOPSIS use DateTime::Calendar::Pataphysical; $dt = DateTime::Calendar::Pataphysical->new( year => 1752, month => 10, day => 4 ); DateTime::Calendar::Pataphysical is the implementation of the... Platforms: *nix

License: Freeware Size: 23.55 KB Download (97): DateTime::Calendar::Pataphysical Download

Added: May 19, 2010 | Visits: 930

IPChains::PortFW IPChains::PortFW is a Perl module to manipulate portfw masquerading table. SYNOPSIS my $masq = new IPChains::PortFW( option => value, ... ); $masq->append(); IPChains::PortFW is an perl interface to the linux kernel port forwarding facility. You must have ipmasqadm and the portfw module... Platforms: *nix

License: Freeware Size: 79.87 KB Download (117): IPChains::PortFW Download

Added: February 21, 2010 | Visits: 765

IPTables::IPv4::IPQueue IPTables::IPv4::IPQueue is a Perl extension for libipq. SYNOPSIS use IPTables::IPv4::IPQueue qw(:constants); $queue = new IPTables::IPv4::IPQueue(); $msg = $queue->get_message(); $queue->set_verdict($msg->packet_id(), NF_ACCEPT) $queue->set_mode(IPQ_COPY_PACKET, 2048);... Platforms: *nix

License: Freeware Size: 14.34 KB Download (119): IPTables::IPv4::IPQueue Download

Added: May 25, 2010 | Visits: 879

Tie::Scalar::Sticky Tie::Scalar::Sticky is a Perl module with block assignments to scalars. SYNOPSIS use strict; use Tie::Scalar::Sticky; tie my $sticky, Tie::Scalar::Sticky; $sticky = 42; $sticky = ; # still 42 $sticky = undef; # still 42 $sticky = 0; # now its zero tie my $sticky, Tie::Scalar::Sticky... Platforms: *nix

License: Freeware Size: 3.07 KB Download (88): Tie::Scalar::Sticky Download

Added: March 13, 2010 | Visits: 1.605

GCJ::Cni::Examples GCJ::Cni::Examples is a Perl module with examples of how to use GCJs CNI interface to write Perl Modules in Java. EXAMPLES Writing Treaded modules in Java One benefit of using GCJ is that it takes advantage of POSIX threading. This is nice since Perls threading model is, shall we say, less... Platforms: *nix

License: Freeware Size: 20.48 KB Download (105): GCJ::Cni::Examples Download

Added: January 09, 2010 | Visits: 1.047

Convert::Translit Convert::Translit, transliterate, build_substitutes is a Perl module for string conversion among numerous character sets. SYNOPSIS use Convert::Translit; $translator = new Convert::Translit($result_chset); $translator = new Convert::Translit($orig_chset, $result_chset); $translator = new... Platforms: *nix

License: Freeware Size: 79.87 KB Download (103): Convert::Translit Download

Added: October 18, 2010 | Visits: 1.126

text-vimcolor text-vimcolor is a command-line program to syntax color a file in HTML, XML or PDF. SYNOPSIS $ text-vimcolor --format html --full-page FILENAME > OUTPUT.html $ text-vimcolor --format xml FILENAME > OUTPUT.xml $ text-vimcolor --format pdf FILENAME --output OUTPUT.pdf This program uses the... Platforms: *nix

License: Freeware Size: 20.48 KB Download (96): text-vimcolor Download

Added: November 12, 2010 | Visits: 1.173

HTTP::Webdav HTTP::Webdav is a Perl interface to Neon HTTP and WebDAV client library. SYNOPSIS use HTTP::Webdav ; $sess = HTTP::Webdav -> new ; $sess -> server ("www.ecos.de", 80) ; $sess -> get ("/", STDOUT) ; $sess -> put ("/dav/foo.htm", STDIN) ; # remove property test3 # set value of property... Platforms: *nix

License: Freeware Size: 32.77 KB Download (116): HTTP::Webdav Download

Added: February 06, 2010 | Visits: 1.001

GFL::Image GFL::Image is an OO interface to P-e Gougelets Graphic File Library. SYNOPSIS use GFL::Image; my $im = GFL::Image-> new; $im -> load("test.png"); $im -> set( output => "jpeg", undolevel => 5 ); $im -> resize (320, 200); $im -> filter( maximum => 3, mediancross => 7 ); $im -> undo;... Platforms: *nix

License: Freeware Size: 122.88 KB Download (108): GFL::Image Download

Added: March 06, 2010 | Visits: 1.023

Unicode::Map8 Unicode::Map8 is a mapping table between 8-bit chars and Unicode. SYNOPSIS require Unicode::Map8; my $no_map = Unicode::Map8->new("ISO646-NO") || die; my $l1_map = Unicode::Map8->new("latin1") || die; my $ustr = $no_map->to16("V}re norske tegn b|r {resn"); my $lstr = $l1_map->to8($ustr);... Platforms: *nix

License: Freeware Size: 102.4 KB Download (114): Unicode::Map8 Download

< 1 2 3 4 5