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

Distributed Hash Table Dht freeware
Filter: All | Freeware | Demo
 

Distributed Hash Table Dht

< 1 2 3 4 5 > 
Added: July 20, 2010 | Visits: 1.750

Distributed RSA Key Generation Distributed RSA Key Generation is a software to generate shared RSA keys. Currently, only keys for two parties using Gilboas protocol are supported. But the protocol stack is extensible, so in the future there may be other protocols supported. Work has begun on Straubs protocol but is not...



Platforms: *nix

License: Freeware Size: 2.3 MB Download (156): Distributed RSA Key Generation Download

Added: September 14, 2010 | Visits: 1.199

Distributed Aide Runtime Controller Distributed Aide Runtime Controller is a multi-threaded Python application designed for managing AIDE installations in large heterogeneous networks. AIDE is an open-source improvement upon the academic release of Tripwire. It can be used to detect filesystem changes in unix environments, which...





Platforms: *nix

License: Freeware Size: 11.26 KB Download (94): Distributed Aide Runtime Controller Download

Added: February 19, 2010 | Visits: 1.105

Basset::DB::Table Basset::DB::Table is used to define database tables, ways to load that data into memory and build queries based upon the table information. SYNOPSIS For example, my $table = Basset::DB::Table->new( name => user, primary_column => id, autogenerated => 1, definition => { id =>...


Platforms: *nix

License: Freeware Size: 143.36 KB Download (98): Basset::DB::Table Download

Added: March 02, 2010 | Visits: 925

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 04, 2010 | Visits: 949

distributed replicated blob server The Distributed Replicated Blob Server Project (drbs) is a young project, not mature enough to handle production data. You still might take a look and report any feedback from build problemss or bugs to ideas what problems drbs might solve for you. How to keep a large set of blobs available...


Platforms: *nix

License: Freeware Size: 45.06 KB Download (91): distributed replicated blob server Download

Added: September 22, 2010 | Visits: 2.327

Distributed Network John The Ripper Distributed Network John The Ripper is a client/server framework that wraps around a slightly modified version of John The Ripper. In contrast to the MPI version of John, dnetj allows the use of nodes which are of differing speeds and for nodes which do not run 24/7. This tool was written for...


Platforms: *nix

License: Freeware Size: 829.44 KB Download (107): Distributed Network John The Ripper Download

Added: November 15, 2010 | Visits: 851

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: 996

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: October 09, 2010 | Visits: 1.014

Distributed Multiplatform Framework 0.7.1 / 1.0 Distributed Multiplatform Framework is a component-based programming framework using XML (or currently a hardcoded variant) as the repository. The samples are implemented either in console or wxWidgets. This shows the independence of the GUI or UI. This framework includes a database form...


Platforms: *nix

License: Freeware Size: 5.2 MB Download (90): Distributed Multiplatform Framework 0.7.1 / 1.0 Download

Added: August 12, 2010 | Visits: 855

Distributed BEAGLE Distributed BEAGLE provides a distributed evolutionary computation system. Distributed BEAGLE is a master-slave distribution extension of the evolutionary computation framework, Open BEAGLE. Its key features are robustness, fault tolerance, adaptability for heterogeneous networks, and...


Platforms: *nix

License: Freeware Download (92): Distributed BEAGLE Download

Added: September 15, 2010 | Visits: 1.676

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: 972

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.162

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.037

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: March 11, 2010 | Visits: 975

Distributed FTP Distributed FTP is a distributed FTP daemon written in java. Instead of usual and well-known servers<->client transfer it uses master<->client for control connections and slave<->client for (most) data transfers, the master must tell the slave to initiate/respond to a transfer..


Platforms: *nix

License: Freeware Size: 358.4 KB Download (103): Distributed FTP Download

Added: August 15, 2010 | Visits: 985

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 15, 2010 | Visits: 1.171

Distributed Artificial Life Distributed Artificial Life project uses spare CPU cycles to create life. Distributed Artificial Life is a distributed version of Tom S. Rays Tierra artificial life program. It uses spare CPU cycles to simulate a distributed soup of living cells. Note that the machine language used is similar...


Platforms: *nix

License: Freeware Size: 96.26 KB Download (107): Distributed Artificial Life Download

Added: October 25, 2010 | Visits: 1.079

Distributed Checksum Clearinghouse Distributed Checksum Clearinghouse, in short DCC, is a system of clients and servers that collect and count checksums related to mail messages. The counts can be used by SMTP servers and mail user agents to detect and reject bulk mail. DCC servers can exchange common checksums. The checksums...


Platforms: *nix

License: Freeware Size: 1.4 MB Download (97): Distributed Checksum Clearinghouse Download

Added: May 08, 2010 | Visits: 1.329

Distributed Multi-User Compilation System Distributed Multi-User Compilation System is a system that allows a group of users to share a compilation farm. Each compilation request from each user will be sent to the fastest available machine, every time..


Platforms: *nix

License: Freeware Size: 358.4 KB Download (93): Distributed Multi-User Compilation System Download

Released: January 01, 2012  |  Added: February 07, 2012 | Visits: 1.078

Times Table The objective of this Times Table Program is to make math fun and interesting. As the student continues to get correct answers to the questions, the Times Table grid will begin to fill up more and more. This should build excitement and a feeling of success and will encourage the continued use...


Platforms: Windows

License: Freeware Size: 590.04 KB Download (106): Times Table Download

< 1 2 3 4 5 >