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

Tie One freeware
Filter: All | Freeware | Demo
 

Tie One

1 2 3 4 5 > 
Added: February 05, 2010 | Visits: 682

Tie::OffsetArray Tie::OffsetArray can tie one array to another, with index offset. SYNOPSIS use Tie::OffsetArray; tie @a, Tie::OffsetArray, 1, @b; # offset=1; use given array. tie @c, Tie::OffsetArray, 2; # use anonymous array. $a[0] = x; # assign to $b[1]; tied(@a)->array->[0] = y; # assign to $b[0]....



Platforms: *nix

License: Freeware Size: 8.19 KB Download (93): Tie::OffsetArray Download

Added: May 25, 2010 | Visits: 878

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: November 18, 2010 | Visits: 938

Tie::HashHistory Tie::HashHistory can track history of all changes to a tied hash. SYNOPSIS my $hh = tie %hash => Tie::HashHistory, PACKAGE, ARGS...; @values = $hh->history(KEY); Tie::HashHistory interposes itself between your program and another tied hash. Fetching and storing to the hash looks...


Platforms: *nix

License: Freeware Size: 4.1 KB Download (95): Tie::HashHistory Download

Added: May 06, 2010 | Visits: 976

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: July 26, 2010 | Visits: 1.044

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: May 05, 2010 | Visits: 846

Tie::FlatFile::Array Tie::FlatFile::Array is a Perl extension which treats a flatfile database as an array of arrays. This module allows the programmer to treat a flatfile database as as array of arrays. For example, lets say you have a datafile that has fixed-length records like so: Field-name Type URL ASCII...


Platforms: *nix

License: Freeware Size: 5.12 KB Download (94): Tie::FlatFile::Array Download

Added: November 24, 2010 | Visits: 964

Tie::Layers SYNOPSIS ##### # Subroutines # use Tie::Layers qw(is_handle config); $yes = is_handle( $file_handle ); ($key, $old_value) = config(%options, $key); ($key, $old_value) = config(%options, $key => $new_value ); #### # Config default startup options # @old_options_list =...


Platforms: *nix

License: Freeware Size: 71.68 KB Download (90): Tie::Layers Download

Added: February 14, 2010 | Visits: 1.129

Docs::Site_SVD::Tie::FormA Docs::Site_SVD::Tie::FormA is a software version description (SVD) for the Tie::FormA program module. The system is the Perl programming language software. As established by the Perl referenced documents, program modules, such the "Tie::Form" module, extends the Perl language. The "Tie::Form"...


Platforms: *nix

License: Freeware Size: 100.35 KB Download (91): Docs::Site_SVD::Tie::FormA Download

Added: May 05, 2006 | Visits: 4.494

AIOCP (All In One Control Panel) AIOCP (All In One Control Panel) is a professional platform-independent all-in-one solution to completely manage a website through a userfriendly web-interface. Based on PHP/MySQL, AIOCP is an Internet/Intranet software platform for: Website Management System (WMS), Content Management System...


Platforms: Windows, *nix

License: Freeware Size: 8.13 MB Download (286): AIOCP (All In One Control Panel) Download

Added: May 03, 2006 | Visits: 3.648

SDE for Sun ONE (CE) SDE for Sun ONE is a UML CASE tool totally integrated with Sun ONE. It supports full software development lifecycle - analysis, design, implementation, testing and maintenance. It combines the power of UML modeling facilities and Sun ONE. It helps you build quality applications faster, better and...


Platforms: Windows, *nix

License: Freeware Size: 6.84 MB Download (597): SDE for Sun ONE (CE) Download

Added: June 18, 2006 | Visits: 4.057

Tie Fighter Screen Saver This animated screensaver features the famous tie fighter of star wars flying around your screen.


Platforms: Windows

License: Freeware Size: 1.13 MB Download (382): Tie Fighter Screen Saver Download

Added: September 07, 2010 | Visits: 1.180

Cache::Memcached::Tie Cache::Memcached::Tie is a Perl module created for using Cache::Memcached as hash. SYNOPSIS #!/usr/bin/perl -w use strict; use Cache::Memcached::Tie; my %hash; my $memd=tie %hash,Cache::Memcached::Tie, {servers=>[192.168.0.77:11211]}; $hash{b}=[a,{b=>a}]; print $hash{a}; print...


Platforms: *nix

License: Freeware Size: 15.36 KB Download (97): Cache::Memcached::Tie Download

Added: November 07, 2010 | Visits: 1.138

Cache-Memcached-Tie Cache-Memcached-Tie is a tie for Cache::Memcached. Installation: To install this module type the following: perl Makefile.PL make make test make install.


Platforms: *nix

License: Freeware Size: 15.36 KB Download (96): Cache-Memcached-Tie Download

Added: February 02, 2010 | Visits: 863

Locale::Maketext::Lexicon::Tie Locale::Maketext::Lexicon::Tie is a Perl module to use tied hashes as lexicons for Maketext. SYNOPSIS package Hello::I18N; use base Locale::Maketext; use Locale::Maketext::Lexicon { en => [ Tie => [ DB_File => en.db ] ], }; This module lets you easily tie the %Lexicon hash to a database...


Platforms: *nix

License: Freeware Size: 83.97 KB Download (96): Locale::Maketext::Lexicon::Tie Download

Added: April 22, 2010 | Visits: 938

Tie::FileLRUCache Tie::FileLRUCache is a lightweight but robust filesystem based persistent LRU cache. SYNOPSIS OBJECT INTERFACE use Tie::FileLRUCache; my $cache = Tie::FileLRUCache->new({ -cache_dir => $directory, -keep_last => 100 }); # Inserting value into LRU cache using -key $cache->update({ -key =>...


Platforms: *nix

License: Freeware Size: 17.41 KB Download (92): Tie::FileLRUCache Download

Added: June 06, 2010 | Visits: 859

Tie::ListKeyedHash Tie::ListKeyedHash is a system allowing the use of anonymous arrays as keys to a hash. SYNOPSIS use Tie::ListKeyedHash; [$X =] tie %hash, Tie::ListKeyedHash; my $live_key = [key,items,live]; $hash{$live_key} = Hello!; $hash{[key,trees,grow]} = Goodbye!; print...


Platforms: *nix

License: Freeware Size: 16.38 KB Download (98): Tie::ListKeyedHash Download

Added: October 08, 2010 | Visits: 953

Tie::Array::PackedC Tie::Array::PackedC is a tie a Perl array to a C-style array (packed; elements of a single, simple data type). SYNOPSIS use Tie::Array::PackedC qw(packed_array packed_array_string); my $ref=packed_array(1,2,3,4); my $ref2=packed_array_string(my $s,1,2,3,4); use Tie::Array::PackedC...


Platforms: *nix

License: Freeware Size: 6.14 KB Download (88): Tie::Array::PackedC Download

Added: February 23, 2010 | Visits: 1.637

Aleph One/SDL Aleph One is an Open Source 3D first-person shooter game, based on the game Marathon 2 by Bungie Software. Aleph One was originally a Mac-only game, but there is now a cross-platform version based on the Simple DirectMedia Layer (SDL) library, that should in theory run on all systems supported...


Platforms: *nix

License: Freeware Size: 890.88 KB Download (115): Aleph One/SDL Download

Added: July 21, 2010 | Visits: 955

Tie::UrlEncoder Tie::UrlEncoder is a Perl module for interpolatably URL-encode strings. Syntactic sugar for URL-Encoding strings. Tie::UrlEncoder imports a tied hash %urlencode into your package, which delivers a RFC 1738 URL Encoded string of whatever is given to it, for easy embedding of URL-Encoded strings...


Platforms: *nix

License: Freeware Size: 3.07 KB Download (87): Tie::UrlEncoder Download

Added: July 12, 2010 | Visits: 1.775

One-Wire Weather One-Wire Weather is a client program for Dallas Semiconductor / AAG 1-wire weather station kits, providing a graphical (animated) display to monitor outside temperature, wind speed and direction, rainfall, and humidity. Extra temperature sensors may be added. A 1-wire "hub" may be used for...


Platforms: *nix

License: Freeware Size: 440.32 KB Download (116): One-Wire Weather Download

1 2 3 4 5 >