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

Generate Random Numbers In Perl freeware
Filter: All | Freeware | Demo
 

Generate Random Numbers In Perl

< 1 2 3 4 5 
Added: January 18, 2010 | Visits: 2.081

Prodder Prodder is a command-line based Podcast client written in Perl that runs on just about any *n*x system. Prodder implements a few very useful features that are lacking in many of the existing tools, while remaining simple and light-weight..



Platforms: *nix

License: Freeware Size: 12.29 KB Download (1012): Prodder Download

Added: March 07, 2010 | Visits: 1.113

Quantum::Entanglement Quantum::Entanglement package contains QM entanglement of variables in perl. SYNOPSIS use Quantum::Entanglement qw(:DEFAULT :complex :QFT); my $c = entangle(1,0,i,1); # $c = |0> + i|1> my $d = entangle(1,0,1,1); # $d = |0> + |1> $e = $c * $d; # $e now |0*0> + i|0*1> + |1*0> + i|1*1>,...





Platforms: *nix

License: Freeware Size: 20.48 KB Download (101): Quantum::Entanglement Download

Added: August 18, 2010 | Visits: 1.038

Cmenu Cmenu is a Perl extension for menuing and data entry in perl scripts. SYNOPSIS use Cmenu; use Curses; use Text::Wrap; &menu_initialise($main_title,$advice); &menu_init($title,$sub-title,$topest,$menu_help); &menu_item($item_text,$item_label,$item_style,$item_data,$item_pos)...


Platforms: *nix

License: Freeware Size: 78.85 KB Download (113): Cmenu Download

Added: April 27, 2010 | Visits: 1.259

Class::Contract Class::Contract - Design-by-Contract OO in Perl. SYNOPSIS package ClassName use Class::Contract; contract { inherits BaseClass; invar { ... }; attr data1; attr data2 => HASH; class attr shared => SCALAR; ctor new; method methodname; pre { ... }; failmsg Error message; post...


Platforms: *nix

License: Freeware Size: 26.62 KB Download (114): Class::Contract Download

Added: November 18, 2010 | Visits: 1.509

Module::Starter::PBP Module::Starter::PBP is a Perl module to create a module as recommended in "Perl Best Practices". SYNOPSIS # In your ~/.module-starter/config file... author: < Your Name > email: < your@email.addr > plugins: Module::Starter::PBP template_dir: < /some/absolute/path/name > # Then on the...


Platforms: *nix

License: Freeware Size: 8.19 KB Download (203): Module::Starter::PBP Download

Added: September 12, 2010 | Visits: 1.973

tcptunnel tcptunnel is a simple TCP tunnel written in Perl. Also is a versatile tcp tunnel. The tcptunnel uses: - tunnelling through a firewall or proxy - redirecting tcp connections to other ports or machines - debugging tcp connections in-place - packet sniffing The tcptunnel listens on local...


Platforms: *nix

License: Freeware Size: 5.12 KB Download (197): tcptunnel Download

Added: November 02, 2010 | Visits: 1.089

Grinch Grinch is a small script written in Perl which can be used to check whether a given address is an open mail relay host. It can operate as a daemon and speaks the tcp_map protocol implemented in Postfix in that case. Its also possible to use it in arbitrary shell script environments where the...


Platforms: *nix

License: Freeware Size: 10.24 KB Download (123): Grinch Download

Added: November 13, 2010 | Visits: 925

Exception::Class Exception::Class is a Perl module that allows you to declare real exception classes in Perl. SYNOPSIS use Exception::Class ( MyException, AnotherException => { isa => MyException }, YetAnotherException => { isa => AnotherException, description => These exceptions are related to IPC },...


Platforms: *nix

License: Freeware Size: 16.38 KB Download (91): Exception::Class Download

Added: September 15, 2010 | Visits: 1.237

FSA::Rules FSA::Rules is a Perl module to build simple rules-based state machines in Perl. Synopsis my $fsa = FSA::Rules->new( ping => { do => sub { print "ping!n"; my $state = shift; $state->result(pong); $state->machine->{count}++; }, rules => [ game_over => sub { shift->machine->{count} >=...


Platforms: *nix

License: Freeware Size: 30.72 KB Download (99): FSA::Rules Download

Added: November 10, 2010 | Visits: 1.113

libdbi-drivers libdbi implements a database-independent abstraction layer in C, similar to the DBI/DBD layer in Perl. Writing one generic set of code, programmers can leverage the power of multiple databases and multiple simultaneous database connections by using this framework. The libdbi-drivers project...


Platforms: *nix

License: Freeware Size: 952.32 KB Download (111): libdbi-drivers Download

Added: March 07, 2010 | Visits: 1.015

Java::Import Java::Import is Perl module to use Java classes in Perl. SYNOPSIS use Java::Import qw( some.package.SomeClass ); my $instance = new some.package.SomeClass(); $instance->someMethod(); my $ret_val = some::package::SomeClass::someStaticMethod(); $ret_val->someMethod(); $ret_val2 =...


Platforms: *nix

License: Freeware Size: 28.67 KB Download (94): Java::Import Download

Added: April 21, 2010 | Visits: 1.596

dvd::rip dvd::rip is a full featured DVD copy program written in Perl. It provides an easy to use but feature-rich Gtk+ GUI to control almost all aspects of the ripping and transcoding process. dvd::rip project uses the widely known video processing swissknife transcode and many other Open Source tools....


Platforms: *nix

License: Freeware Size: 512 KB Download (137): dvd::rip Download

Added: September 04, 2010 | Visits: 936

Resources Resources is a Perl module to handle application defaults in Perl. SYNOPSIS use Resources; $res = new Resources; $res = new Resources "resfile"; Resources are a way to specify information of interest to program or packages. Applications use resource files to specify and document the...


Platforms: *nix

License: Freeware Size: 18.43 KB Download (94): Resources Download

Added: November 04, 2010 | Visits: 614

Perl6::Take Perl6::Take is a Perl module to gather/take in Perl 5. SYNOPSIS use Perl6::Take; my @foo = gather { take 5; }; EXPORT gather Accepts a block. take statements inside the dynamic scope of the block are used to accumulate a list, which is gathered as the return value of the block....


Platforms: *nix

License: Freeware Size: 21.5 KB Download (88): Perl6::Take Download

Added: November 14, 2010 | Visits: 905

VCS VCS project is a Perl library for generic Version Control System access in Perl. SYNOPSIS use VCS; $file = VCS::File->new($ARGV[0]); print $file->url, ":n"; for $version ($file->versions) { print $version->version, was checked in by , $version->author, "n"; } VCS is an API for...


Platforms: *nix

License: Freeware Size: 21.5 KB Download (105): VCS Download

Added: January 07, 2010 | Visits: 1.218

Natural Docs Feb 10, Natural Docs is an extensible, multi-language, source code documentation generator written in Perl. Its syntax is transparent so the source comments read just as easily as the generated documentation. Natural Docs also focuses on automation and high-quality HTML output. Keep in mind that if...


Platforms: *nix

License: Freeware Size: 307.2 KB Download (96): Natural Docs Feb 10, Download

Added: May 07, 2010 | Visits: 539

kcheckmail kcheckmail project is a very simple biff utility written in perl. In its intended usage, it forks into the background, connects to an IMAP server and pops up the From and Subject headers whenever it sees an unread email. All user interaction is done through kdialog. I could not find any tool or...


Platforms: *nix

License: Freeware Size: 11.26 KB Download (91): kcheckmail Download

Added: August 20, 2010 | Visits: 710

wfb2sql wfb2sql is a tool wirtten in Perl that converts the CIA World Factbook into an SQL database. It is a Perl script that extracts information from the CIA World Factbook and creates SQL statements for IBM DB/2, PostgreSQL, or MySQL. This data builds a perfect database for learning and teaching...


Platforms: *nix

License: Freeware Size: 19.46 KB Download (106): wfb2sql Download

Added: May 11, 2010 | Visits: 758

extproc_perl extproc_perl allows you to write Oracle stored procedures in Perl. Whether youre looking to accomplish something thats easier to program in Perl, or youre just more comfortable programming in Perl, read on to see if extproc_perl will work for you and your Oracle database..


Platforms: *nix

License: Freeware Size: 38.91 KB Download (104): extproc_perl Download

Added: October 03, 2010 | Visits: 761

List::Comprehensions List::Comprehensions is a Perl module that allows for list comprehensions in Perl. SYNOPSIS use List::Comprehensions; use warnings; my @res = (); @res = comp1 { [ @_ ] } [0..4], [0..4], [0..4]; no warnings once; @res = comp2 { [$i, $j, $k] } i => [0..4], j => [0..4], k => [0..4];...


Platforms: *nix

License: Freeware Size: 3.07 KB Download (96): List::Comprehensions Download

< 1 2 3 4 5