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

A Z Lyrics Universe Genre freeware
Filter: All | Freeware | Demo
 

A Z Lyrics Universe Genre

< 1 2 3 4 5 > 
Added: September 23, 2010 | Visits: 777

Perl6::Gather Perl6::Gather is a Perl module that implements the Perl 6 gather/take control structure in Perl 5. SYNOPSIS use Perl6::Gather; @list = gather { # Try to extract odd numbers and odd number names... for (@data) { if (/(one|three|five|nine)$/) { take qq{$_}; } elsif (/^d+$/ && $_ %2) {...



Platforms: *nix

License: Freeware Size: 5.12 KB Download (89): Perl6::Gather Download

Added: July 05, 2010 | Visits: 835

Test::MultiFork Test::MultiFork is a test suite that has support for multi-process programs. SYNOPSIS use Test::MultiFork; ($name, $letter, $number) = procname([new name]) lockcommon() @oldvalues = getcommon() setcommon(@newvalues) unlockcommon() use Test::MultiFork qw(groupwait setgroup dofork...





Platforms: *nix

License: Freeware Size: 10.24 KB Download (90): Test::MultiFork Download

Added: August 13, 2010 | Visits: 1.494

Test::File::Find::Rule Test::File::Find::Rule is a Perl module to test files and directories with File::Find::Rule. SYNOPSIS use Test::File::Find::Rule; # Check that all files in $dir have sensible names my $rule = File::Find::Rule ->file ->relative ->not_name(qr/^[w]{1,8}.[a-z]{3,4}$/);...


Platforms: *nix

License: Freeware Size: 3.07 KB Download (103): Test::File::Find::Rule Download

Added: May 01, 2010 | Visits: 1.951

FreeOrion FreeOrion is a turn-based game of epic space strategy game witch is inspired by Master of Orion. It builds on the classic 4X model by incorporating the nation-building elements of games such as Europa Universalis 2 and a versatile tactical combat engine. While its modular design allows for a...


Platforms: *nix

License: Freeware Size: 696.32 KB Download (147): FreeOrion Download

Added: April 24, 2010 | Visits: 769

Math::BaseCalc Math::BaseCalc is a Perl module that can convert numbers between various bases. SYNOPSIS use Math::BaseCalc; my $calc = new Math::BaseCalc(digits => [0,1]); #Binary my $bin_string = $calc->to_base(465); # Convert 465 to binary $calc->digits(oct); # Octal my $number =...


Platforms: *nix

License: Freeware Size: 4.1 KB Download (93): Math::BaseCalc Download

Added: July 18, 2010 | Visits: 1.658

URI::Escape URI::Escape is a Perl module to escape and unescape unsafe characters. SYNOPSIS use URI::Escape; $safe = uri_escape("10% is enoughn"); $verysafe = uri_escape("foo", " -377"); $str = uri_unescape($safe); This module provides functions to escape and unescape URI strings as defined by RFC...


Platforms: *nix

License: Freeware Size: 96.26 KB Download (99): URI::Escape Download

Added: September 11, 2010 | Visits: 965

List::Util List::Util Perl module contains a selection of general-utility list subroutines. SYNOPSIS use List::Util qw(first max maxstr min minstr reduce shuffle sum); List::Util contains a selection of subroutines that people have expressed would be nice to have in the perl core, but the usage would...


Platforms: *nix

License: Freeware Size: 44.03 KB Download (102): List::Util Download

Added: February 11, 2010 | Visits: 941

Include Include is a Perl module that allow you to use #defines from C header files. SYNOPSIS use Include qw(-I /some/path/of/mine); use Include q< sys/types.h >; use Include q< sys/types.h > "/[A-Z]/"; The Include module implements a method of using #define constants from C header files. It does...


Platforms: *nix

License: Freeware Size: 6.14 KB Download (88): Include Download

Added: October 24, 2010 | Visits: 985

Chemistry::Mol Chemistry::Mol is a molecule object toolkit. SYNOPSIS use Chemistry::Mol; $mol = Chemistry::Mol->new(id => "mol_id", name => "my molecule"); $c = $mol->new_atom(symbol => "C", coords => [0,0,0]); $o = $mol->new_atom(symbol => "O", coords => [0,0,1.23]); $mol->new_bond(atoms => [$c, $o],...


Platforms: *nix

License: Freeware Size: 43.01 KB Download (112): Chemistry::Mol Download

Added: July 09, 2010 | Visits: 908

Algorithm::Huffman Algorithm::Huffman is a Perl extension that implements the Huffman algorithm. SYNOPSIS use Algorithm::Huffman; my %char_counting = map {$_ => int rand(100)} (a .. z, A .. Z); # or better the real counting for your characters # as the huffman algorithm doesnt work good with random data...


Platforms: *nix

License: Freeware Size: 8.19 KB Download (104): Algorithm::Huffman Download

Added: April 26, 2010 | Visits: 1.460

MP4::Info MP4::Info is a Perl module that can fetch info from MPEG-4 files (.mp4, .m4a, .m4p, .3gp). SYNOPSIS #!perl -w use MP4::Info; my $file = Pearls_Before_Swine.m4a; my $tag = get_mp4tag($file) or die "No TAG info"; printf "$file is a %s trackn", $tag->{GENRE}; my $info =...


Platforms: *nix

License: Freeware Size: 133.12 KB Download (113): MP4::Info Download

Added: October 12, 2010 | Visits: 1.396

Data::Password::Manager Data::Password::Manager is a Perl module to generate, check, manage crypt - des passwords. SYNOPSIS use Data::Password::Manager qw( pw_gen pw_valid pw_obscure pw_clean pw_get ); $password = pw_gen($cleartext); $ok = pw_valid($cleartxt,$password); $clean_text = pw_clean($dirty_text);...


Platforms: *nix

License: Freeware Size: 13.31 KB Download (99): Data::Password::Manager Download

Added: June 19, 2010 | Visits: 754

Data::SimplePassword Data::SimplePassword provides a simple random password generator. SYNOPSIS use Data::SimplePassword; my $sp = Data::SimplePassword->new; $sp->chars( 0..9, a..z, A..Z ); # optional my $password = $sp->make_password( 8 ); # length Its a very easy-to-use but a bit strong random password...


Platforms: *nix

License: Freeware Size: 3.07 KB Download (91): Data::SimplePassword Download

Added: March 24, 2010 | Visits: 845

The_RTF_Cookbook The_RTF_Cookbook is a RTF overview and quick reference. SYNOPSIS # Time-stamp: "2003-09-23 21:27:56 ADT" # This document is in Perl POD format, but you can read it # with just an ASCII text viewer, if you want. RTF is a nearly ubiquitous text formatting language devised by Microsoft....


Platforms: *nix

License: Freeware Size: 57.34 KB Download (102): The_RTF_Cookbook Download

Added: July 27, 2010 | Visits: 962

Number::Latin Number::Latin is a Perl module that can convert to/from the number system "a,b,...z,aa,ab..." SYNOPSIS use Number::Latin; print join( , map int2latin($_), 1 .. 30), "n"; # # Prints: # a b c d e f g h i j k l m n o p q r s t u v w x y z aa ab ac ad Some applications, notably the...


Platforms: *nix

License: Freeware Size: 5.12 KB Download (103): Number::Latin Download

Added: September 23, 2010 | Visits: 942

Math::String::Charset Math::String::Charset is a simple charset for Math::String objects. SYNOPSIS use Math::String::Charset; $a = new Math::String::Charset; # default a-z $b = new Math::String::Charset [a..z]; # same $c = new Math::String::Charset { start => [a..z], sep => }; # with between chars print...


Platforms: *nix

License: Freeware Size: 61.44 KB Download (94): Math::String::Charset Download

Added: March 20, 2010 | Visits: 2.257

Algorithm::LUHN Algorithm::LUHN is a Perl module to calculate the modulus 10 double add double checksum. SYNOPSIS use Algorithm::LUHN qw/check_digit is_valid/; $c = check_digit("43881234567"); print "It worksn" if is_valid("43881234567$c"); $c = check_digit("A2C4E6G8"); # this will cause an error...


Platforms: *nix

License: Freeware Size: 4.1 KB Download (510): Algorithm::LUHN Download

Added: July 13, 2010 | Visits: 1.640

Remove special characters Remove special characters is a service menu that can rename all files and directories, including sub directories, removing or replacing special characters. The new name is compatible with MS-DOS FAT16 and URL (RFC 1738). All characters different from A–Z, 0–9 and $-_!() are renamed. For...


Platforms: *nix

License: Freeware Size: 3.07 KB Download (110): Remove special characters Download

Added: October 14, 2010 | Visits: 3.697

Flex Flex is a Fast Lexical Analyzer. Flex is a fast lexical analyzer generator. It is a tool for generating programs that perform pattern-matching on text. Flex is a non-GNU free implementation of the well known Lex program. Flex is a tool for generating scanners: programs which recognized...


Platforms: *nix

License: Freeware Size: 880.64 KB Download (327): Flex Download

Added: November 09, 2010 | Visits: 1.231

SWF::Builder::Character::EditText SWF::Builder::Character::EditText is a SWF dynamic editable text object. SYNOPSIS my $text = $mc->new_dynamic_text( $font ) ->size(10) ->color(000000) ->text(This is a text.); my $text_i = $text->place; my $field = $mc->new_input_field; $field->place; ^This module creates dynamic...


Platforms: *nix

License: Freeware Size: 163.84 KB Download (97): SWF::Builder::Character::EditText Download

< 1 2 3 4 5 >