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

Long Beach Hash House Harriers freeware
Filter: All | Freeware | Demo
 

Long Beach Hash House Harriers

1 2 3 4 5 > 
Added: May 27, 2010 | Visits: 902

Variable::Alias Variable::Alias is a Perl module created to alias any variable to any other variable. SYNOPSIS use Variable::Alias alias; my $src; my $a; our $b; my @c; our @d; alias $src => $a; alias $a => $b; alias $b => $c[0]; alias @c => @d; $src=src; # All the other variables now have the...



Platforms: *nix

License: Freeware Size: 3.07 KB Download (90): Variable::Alias Download

Added: May 02, 2010 | Visits: 924

Getopt::GUI::Long Getopt::GUI::Long is a wrapper around Getopt::Long that extends the value of the original Getopt::Long module. SYNOPSIS use Getopt::GUI::Long; # pass useful config options to Configure Getopt::GUI::Long::Configure(qw(display_help no_ignore_case capture_output)); GetOptions(%opts,...





Platforms: *nix

License: Freeware Size: 12.29 KB Download (90): Getopt::GUI::Long Download

Added: September 27, 2006 | Visits: 3.843

Beach Balls Blog Screen Saver Ready for summer yet? The beachballs blog screensaver lets beach balls gently float down on your desktop and fill your screen. Watch closely for the palm tree and other beach items float by. Sure to get you in the mood for summer.


Platforms: Windows

License: Freeware Size: 434 KB Download (108): Beach Balls Blog Screen Saver Download

Added: January 23, 2006 | Visits: 2.639

Summer Beach Balls Screensaver Its summer time, and you know what that means. Watch your desktop as beach balls float down onto the beach and fill your screen. Watch closely for the palm tree and other beach items float by. Sure to get you in the mood for summer.


Platforms: Windows

License: Freeware Size: 434 KB Download (101): Summer Beach Balls Screensaver Download

Released: September 25, 2009  |  Added: October 02, 2009 | Visits: 2.686

MD5 Hash Calculate MD5 hash of multiple files. You can copy MD5 hashes to the clipboard or save to a text file from an easy to use interface. Features: * Fast Calculation * Select multiple files, or drag direct from Windows explorer * Customizable results window * Save results to a...


Platforms: Windows

License: Freeware Size: 446.2 KB Download (278): MD5 Hash Download

Added: October 24, 2010 | Visits: 867

Hash::NoVivify Hash::NoVivify is a Perl extension for non-vivifying exists and defined functions. SYNOPSIS use Hash::NoVivify qw(Defined Exists); ... if (Exists(%hash, qw(key1 key2 ... keyn ))) { ... } if (Defined(%hash, qw(key1 key2 ... keyn))) { ... } When used on a hash, the exists() and...


Platforms: *nix

License: Freeware Size: 3.07 KB Download (88): Hash::NoVivify Download

Added: May 17, 2010 | Visits: 1.331

Long Range ZIP Long Range ZIP is a compression program that can achieve very high compression ratios and speed when used with large files. It uses the combined compression algorithms of lzma for maximum compression, lzo for maximum speed, and the long range redundancy reduction of rzip. It is designed to...


Platforms: *nix

License: Freeware Size: 327.68 KB Download (115): Long Range ZIP Download

Added: August 07, 2010 | Visits: 883

Set::Hash Set::Hash is a Perl module with hashes as objects with lots of handy methods (including set comparisons) and support for method chaining. SYNOPSIS use Set::Hash; my $sh1 = Set::Hash->new(name=>"dan",age=>33); my $sh2 = Set::Hash->new(qw/weight 185 height 72/); $sh1->length->print; # 2...


Platforms: *nix

License: Freeware Size: 7.17 KB Download (89): Set::Hash Download

Added: June 23, 2010 | Visits: 991

Tie::Hash::RegexKeys Tie::Hash::RegexKeys will match hash keys using Regular Expressions. SYNOPSIS use Tie::Hash::RegexKeys; use Data::Dumper; my %h; tie %h, Tie::Hash::RegexKeys; my $a = .1.2.3.4.5.6.2; my $b = .1.2.3.4.5.7; my $c = .1.2.3.4.5.6.1; my $d = .1.2.3.4.5.6.1.6; $h{$a}="key1";...


Platforms: *nix

License: Freeware Size: 3.07 KB Download (104): Tie::Hash::RegexKeys Download

Added: March 04, 2010 | Visits: 934

Getopt::Long::Descriptive Getopt::Long::Descriptive is a Getopt::Long module with usage text. SYNOPSIS use Getopt::Long::Descriptive; my ($opts, $usage) = describe_options($format, @opts, %arg); FORMAT $format = "usage: myprog %o myarg..."; %o will be replaced with a list of the short options, as well as the...


Platforms: *nix

License: Freeware Size: 7.17 KB Download (97): Getopt::Long::Descriptive Download

Added: March 02, 2010 | Visits: 926

Basset::Container::Hash Basset::Container::Hash Perl module implements a layered hash. The easiest way to explain is with an example: my %x = (a => b); tie my %y, Basset::Container::Hash, %x; #<- %x is the parent of y. print $x{a}; #prints b print $y{a}; #prints b (inherited from x) $y{a} = foo; $y{z} = bar;...


Platforms: *nix

License: Freeware Size: 143.36 KB Download (94): Basset::Container::Hash Download

Added: November 15, 2010 | Visits: 852

Tie::Hash::Sorted Tie::Hash::Sorted Perl module presents hashes in sorted order. SYNOPSIS use Tie::Hash::Sorted; my %ages = ( John => 33, Jacob => 29, Jingle => 15, Heimer => 48, Smitz => 12, ); my $sort_by_numeric_value = sub { my $hash = shift; [ sort {$hash->{$b} <=> $hash->{$a}} keys %$hash ];...


Platforms: *nix

License: Freeware Size: 8.19 KB Download (87): Tie::Hash::Sorted Download

Added: April 14, 2010 | Visits: 997

Hash::Type Hash::Type module contains pseudo-hashes as arrays tied to a "type" (list of fields). SYNOPSIS use Hash::Type; # create a Hash::Type my $personType = new Hash::Type(qw(firstname lastname city)); # create and populate some hashes tied to $personType tie %wolfgang, $personType, "wolfgang...


Platforms: *nix

License: Freeware Size: 8.19 KB Download (97): Hash::Type Download

Added: September 15, 2010 | Visits: 1.680

Class::Method::hash Class::Method::hash is a Perl module that helps you create methods for handling a hash value. SYNOPSIS use Class::MethodMaker [ hash => [qw/ x /] ]; $instance->x; # empty $instance->x(a => 1, b => 2, c => 3); $instance->x_count == 3; # true $instance->x = (b => 5, d => 8); # Note this...


Platforms: *nix

License: Freeware Size: 89.09 KB Download (105): Class::Method::hash Download

Added: May 06, 2010 | Visits: 973

Tie::Proxy::Hash Tie::Proxy::Hash is a Perl module created to efficiently merge & translate hashes. SYNOPSIS my (%hash, $ref); $ref = tie %hash, Tie::Proxy::Hash, (bart => +{a => 1, b => 2}, maggie => +{a => 5, c => 6, e => 10}, ); $hash{a} == 1; # true $hash{b} == 2; # true (bart supercedes maggie)...


Platforms: *nix

License: Freeware Size: 19.46 KB Download (99): Tie::Proxy::Hash Download

Added: September 08, 2010 | Visits: 1.163

Hash::Merge Hash::Merge Perl module merges arbitrarily deep hashes into a single hash. SYNOPSIS use Hash::Merge qw( merge ); my %a = ( foo => 1, bar => [ qw( a b e ) ], querty => { bob => alice }, ); my %b = ( foo => 2, bar => [ qw(c d) ], querty => { ted => margeret }, ); my %c = %{ merge(...


Platforms: *nix

License: Freeware Size: 7.17 KB Download (96): Hash::Merge Download

Added: July 26, 2010 | Visits: 1.038

Tie::Hash::Stack Tie::Hash::Stack is a Perl module which maintains an array of hashes like a stack. SYNOPSIS use Tie::Hash::Stack qw(pop_hash push_hash merge_hash); my %hash; tie( %hash, "Tie::Hash::Stack" ); # Ties the hash $hash{ 1 } = "one"; $hash{ 2 } = "two"; $hash{ 3 } = "three"; push_hash...


Platforms: *nix

License: Freeware Size: 6.14 KB Download (186): Tie::Hash::Stack Download

Added: August 15, 2010 | Visits: 986

Hash::Diff::Dispatch Hash::Diff::Dispatch allows to execute code depending on difference between hashes. SYNOPSIS my $hash_watcher = Hash::Diff::Dispatch->new( {}, # Sets the starting hash # The events will be called using the order returned # by calling keys on these values... b => &bold, i => &italic,...


Platforms: *nix

License: Freeware Size: 3.07 KB Download (101): Hash::Diff::Dispatch Download

Added: August 23, 2010 | Visits: 969

Getargs::Long Getargs::Long is a Perl module with named subroutine arguments, with optional type checking. SYNOPSIS use Getargs::Long; # case sensitive use Getargs::Long qw(ignorecase); # case insensitive # Simple, args mandatory my ($val, $other) = getargs(@_, qw(val other)); # Simple, args optional...


Platforms: *nix

License: Freeware Size: 40.96 KB Download (90): Getargs::Long Download

Released: October 18, 2012  |  Added: October 18, 2012 | Visits: 1.229

Sys::Hostname::Long Sys::Hostname::Long is a Perl module to try every conceivable way to get full hostname. SYNOPSIS use Sys::Hostname::Long; $host_long = hostname_long; How to get the host full name in perl on multiple operating systems (mac, windows, unix* etc) DISCUSSION This is the SECOND release of...


Platforms: *nix

License: Freeware Size: 5.12 KB Download (105): Sys::Hostname::Long Download

1 2 3 4 5 >