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

Array Data freeware
Filter: All | Freeware | Demo
 

Array Data

< 1 2 3 4 5 
Added: February 01, 2010 | Visits: 1.008

Data::DPath::Builder Data::DPath::Builder is a SAX handler for building an XPath tree. SYNOPSIS use AnySAXParser; use Data::DPath::Builder; $builder = Data::DPath::Builder->new(); $parser = AnySAXParser->new( Handler => $builder ); $root_node = $parser->parse( Source => [SOURCE] ); Data::DPath::Builder is... Platforms: *nix

License: Freeware Size: 32.77 KB Download (97): Data::DPath::Builder Download

Added: August 13, 2010 | Visits: 929

Data::Page Data::Page is a Perl module that helps when paging through sets of results. SYNOPSIS use Data::Page; my $page = Data::Page->new(); $page->total_entries($total_entries); $page->entries_per_page($entries_per_page); $page->current_page($current_page); print " First page: ",... Platforms: *nix

License: Freeware Size: 6.14 KB Download (97): Data::Page Download

Added: July 25, 2010 | Visits: 997

The Data Language A free IDL (Interactive Data Language) compatible incremental compiler (ie. runs IDL programs). IDL is a registered trademark of Research Systems Inc. Full syntax compatibility with IDL 6.0 ALL IDL language elements are supported, including: - Objects, - Pointers, - Structs, - Arrays, -... Platforms: *nix

License: Freeware Size: 839.68 KB Download (97): The Data Language Download

Added: October 26, 2010 | Visits: 764

Variable::Strongly::Typed::Array Variable::Strongly::Typed::Array is a Perl module for strongly typed array. SYNOPSIS This class is utilized by Variable::Strongly::Typed - you dont access this directly my @array_of_ints :TYPE(int); # Each slot must contain an int my @array_of_rgb :TYPE(&red_green_blue); # my enumerated... Platforms: *nix

License: Freeware Size: 10.24 KB Download (92): Variable::Strongly::Typed::Array Download

Added: November 25, 2010 | Visits: 1.031

SOAP::Data SOAP::Data is a Perl class that provides the means by which to explicitly manipulate and control all aspects of the way in which Perl data gets expressed as SOAP data entities. The SOAP::Data class provides the means by which to explicitly manipulate and control all aspects of the way in which... Platforms: *nix

License: Freeware Size: 235.52 KB Download (100): SOAP::Data Download

Added: June 23, 2010 | Visits: 964

AVL Array AVL Array is an STL-like container for C++ that fills the gap between vector (or deque) and list, providing both fast random access and fast insertion/removal, all O(log n). This is not a map; in an avl_array, the "keys" always range from 0 to size-1, and they automatically change on insertion... Platforms: *nix

License: Freeware Size: 71.68 KB Download (93): AVL Array Download

Added: October 12, 2010 | Visits: 1.403

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 (105): Data::Password::Manager Download

Added: January 18, 2010 | Visits: 818

Gtk::CListModel Gtk::CListModel is a simple data model with Gtk::Clist views. SINOPSYS my $model = tie @data, Gtk::CListModel, titles => ["Fruit", "Price", "Quantity"]; # all data manipulation is done on @data now push @data, ["Oranges", 5, 16]; # Create a view (a Gtk::Clist widget) to represent the data... Platforms: *nix

License: Freeware Size: 440.32 KB Download (88): Gtk::CListModel Download

Added: March 12, 2010 | Visits: 1.106

Data::Type::Docs Data::Type::Docs is a Perl module with the manual overview. MANUALS Data::Type::Docs::FAQ Frequently asked questions. Data::Type::Docs::FOP Frequently occuring problems. Data::Type::Docs::Howto Point to point recipes how to get things done. Data::Type::Docs::RFC Exact API... Platforms: *nix

License: Freeware Size: 70.66 KB Download (88): Data::Type::Docs Download

Added: July 14, 2010 | Visits: 921

Data::Serializer Data::Serializer package contains modules that serialize data structures. SYNOPSIS use Data::Serializer; $obj = Data::Serializer->new(); $obj = Data::Serializer->new( serializer => Storable, digester => MD5, cipher => DES, secret => my secret, compress => 1, ); $serialized =... Platforms: *nix

License: Freeware Size: 25.6 KB Download (93): Data::Serializer Download

Added: September 25, 2010 | Visits: 1.039

Evolution Data Server Evolution Data Server provides a single database for common, desktop-wide information, such as a users address book or calendar events. Evolution Data Server is also a dependency of the clock applet from the gnome-applets package, 2.10 release. Evolution provides integrated mail, addressbook... Platforms: *nix

License: Freeware Size: 9.7 MB Download (96): Evolution Data Server Download

Added: May 16, 2010 | Visits: 1.533

DOG Data Organizer DOG Data Organizer provides a bookmark organizer for various bookmark types. DOG is a personal knowledge manager based on topic maps. It currently specializes in managing bookmarks. It imports and exports Netscape, Mozilla, and KDE2 (XBEL) bookmark files, and it imports KDE1 bookmarks and... Platforms: *nix

License: Freeware Size: 430.08 KB Download (129): DOG Data Organizer Download

Added: July 12, 2010 | Visits: 1.020

Data::Page::Viewport Data::Page::Viewport is a Perl module to scroll thru data a page, or just an item, at a time. Synopsis This is a complete, tested, runnable program. #!/usr/bin/perl use strict; use warnings; use Data::Page::Viewport; # ----------------------------------------------- my(@data) =... Platforms: *nix

License: Freeware Size: 8.19 KB Download (93): Data::Page::Viewport Download

Added: November 27, 2010 | Visits: 930

File::Data File::Data is a Perl module as a interface to file data. Wraps all the accessing of a file into a convenient set of calls for reading and writing data, including a simple regex interface. Note that the file needs to exist prior to using this module! See new() SYNOPSIS use strict; use... Platforms: *nix

License: Freeware Size: 13.31 KB Download (91): File::Data Download

Added: June 19, 2010 | Visits: 758

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: October 21, 2010 | Visits: 818

Array::Utils Array::Utils module contains small utils for array manipulation. SYNOPSIS use Array::Utils qw(:all); my @a = qw( a b c d ); my @b = qw( c d e f ); # symmetric difference my @diff = array_diff(@a, @b); # intersection my @isect = intersect(@a, @b); # unique union my @unique =... Platforms: *nix

License: Freeware Size: 2.05 KB Download (91): Array::Utils Download

Added: April 13, 2010 | Visits: 855

Data::SecsPack Data::SecsPack is a Perl module pack and unpack numbers in accordance with SEMI E5-94. SYNOPSIS ##### # Subroutine interface # use Data::SecsPack qw(bytes2int config float2binary ifloat2binary int2bytes pack_float pack_int pack_num str2float str2int unpack_float unpack_int unpack_num);... Platforms: *nix

License: Freeware Size: 102.4 KB Download (91): Data::SecsPack Download

Added: July 11, 2010 | Visits: 1.070

Data::Locations Data::Locations - magic insertion points in your data Did you already encounter the problem that you had to produce some data in a particular order, but that some piece of the data was still unavailable at the point in the sequence where it belonged and where it should have been produced? Did... Platforms: *nix

License: Freeware Size: 44.03 KB Download (91): Data::Locations Download

Added: April 25, 2010 | Visits: 718

Array::Iterator Array::Iterator is a simple class for iterating over Perl arrays. SYNOPSIS use Array::Iterator; # create an iterator with an array my $i = Array::Iterator->new(1 .. 100); # create an iterator with an array reference my $i = Array::Iterator->new(@array); # create an iterator with a... Platforms: *nix

License: Freeware Size: 10.24 KB Download (99): Array::Iterator Download

Added: March 06, 2010 | Visits: 1.625

Local Data Manager Local Data Manager (LDM) is a collection of cooperating programs that select, capture, manage, and distribute arbitrary data products. The system is designed for event-driven data distribution, and is currently used in the Unidata Internet Data Distribution (IDD) project. The LDM system... Platforms: *nix

License: Freeware Size: 624.64 KB Download (113): Local Data Manager Download

< 1 2 3 4 5