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

Array Combiner Box freeware
Filter: All | Freeware | Demo
 

Array Combiner Box

1 2 3 4 5 > 
Added: September 12, 2013 | Visits: 465

Select Box Sorter This script will sort options in a select box. The first select box is the criteria and the second is the select box to be sorted.In short, it takes the options and adds them to an array, then removes the options for the select box, sorts the array then addes the sorted array of options to the...



Platforms: JavaScript

License: Freeware Size: 10 KB Download (53): Select Box Sorter Download

Added: January 18, 2010 | Visits: 1.485

Box Backup Box Backup is an FREE, completely automatic on-line backup system for UNIX..





Platforms: *nix

License: Freeware Size: 501.76 KB Download (101): Box Backup Download

Added: January 25, 2010 | Visits: 1.284

IP-Array IP-Array is a Linux iptables firewall script written in bash. IP-Array allows the creation of precise, stateful rules, while remaining easy to configure. Goals: An easy to configure firewall - still leaving the user the possiblillity to configure detailed rules - which creates thight...


Platforms: *nix

License: Freeware Size: 71.68 KB Download (102): IP-Array Download

Added: October 08, 2010 | Visits: 951

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: January 13, 2010 | Visits: 1.906

Array::Each::Tutorial Array::Each::Tutorial - POD giving various examples how to use Array::Each. SYNOPSIS man Array::Each man Array::Each::Tutorial or perldoc Array::Each perldoc Array::Each::Tutorial Overview This tutorial contains only POD, so dont do this: use Array::Each::Tutorial; # dont do this...


Platforms: *nix

License: Freeware Size: 20.48 KB Download (121): Array::Each::Tutorial Download

Added: September 19, 2010 | Visits: 1.364

Array::Compare SYNOPSIS use Array::Compare; my $comp1 = Array::Compare->new; $comp->Sep(|); $comp->Skip({3 => 1, 4 => 1}); $comp->WhiteSpace(0); $comp->Case(1); my $comp2 = Array::Compare->new(Sep => |, WhiteSpace => 0, Case => 1, Skip => {3 => 1, 4 => 1}); my @arr1 = 0 .. 10; my @arr2 = 0 .....


Platforms: *nix

License: Freeware Size: 8.19 KB Download (98): Array::Compare Download

Added: November 18, 2010 | Visits: 897

Tie::Array::RestrictUpdates Tie::Array::RestrictUpdates can limit the number of times you change elements in an array. SYNOPSIS use Tie::Array::RestrictUpdates; tie @foo,"Tie::Array::RestrictUpdates",1; # Default limit is 1. # Every element from the array can only be changed once @foo = qw(A B C D E); for(0..4) {...


Platforms: *nix

License: Freeware Size: 3.07 KB Download (90): Tie::Array::RestrictUpdates Download

Added: June 04, 2010 | Visits: 1.072

Mail::Box::Parser::C Mail::Box::Parser::C is a Perl module that can parse folders for MailBox with C routines. This is an optional module for MailBox, and will (once installed) automatically be used by MailBox to parse e-mail message content when the message is supplied as file-handle. In all other cases, MailBox...


Platforms: *nix

License: Freeware Size: 15.36 KB Download (99): Mail::Box::Parser::C Download

Added: October 26, 2010 | Visits: 758

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 (86): Variable::Strongly::Typed::Array Download

Added: June 23, 2010 | Visits: 960

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

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

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 25, 2010 | Visits: 714

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: July 20, 2010 | Visits: 1.567

Roster-in-a-Box Roster-in-a-Box project is a course management system designed to facilitate the use of autograded homework assignments, while also allowing for text-based questions to be submitted online and graded online by the instructor. I developed and currently use the system for my introductory statistics...


Platforms: *nix

License: Freeware Size: 133.12 KB Download (126): Roster-in-a-Box Download

Added: October 23, 2010 | Visits: 935

Array::PatternMatcher Array::PatternMatcher is a pattern matching for arrays. SYNOPSIS This section inlines the entire test suite. Please excuse the ok()s. use Array::PatternMatcher; Matching logical variables to input stream # 1 - simple match of logical variable to input my $pattern = AGE ; my $input =...


Platforms: *nix

License: Freeware Size: 6.14 KB Download (118): Array::PatternMatcher Download

Released: July 12, 2012  |  Added: July 12, 2012 | Visits: 1.185

Protomissume Software Box Shot Maker Protomissume Software Box Shot Maker (OpenSource Version) creates realistic images of 3D boxes for your software. It is very easy to use. You simply provide two to three images, adjust the box orientation and save the result as an image file. Despite being free and opensource, the tool is packed...


Platforms: Windows

License: Freeware Size: 122.88 KB Download (71): Protomissume Software Box Shot Maker Download

Released: July 20, 2012  |  Added: July 20, 2012 | Visits: 1.231

US ZIP Code Database PO Box Edition The database includes a list of more than 9,000 Post Office Box (PO Box) only ZIP codes, state and city name. It is bundled with the ZIPCodeWorld US Gold Edition which includes 5-Digit ZIP code, city name, alias city name, state code, phone area code, city type, country name, country FIPS, time...


Platforms: Windows

License: Freeware Download (484): US ZIP Code Database PO Box Edition Download

Released: November 24, 2012  |  Added: November 24, 2012 | Visits: 715

Icy Box Icons for Mac OS Desktop icons showing the silver and black Icy Box external aluminium case with USB interface. They are intended as a replacement for the generic external hard disk icon in Mac OS X Leopard. - iContainer + Mac - Leopard ready (512'”512 and all other sizes of course) - including 7 icons (with 2...


Platforms: Mac

License: Freeware Size: 5 MB Download (59): Icy Box Icons for Mac OS Download

Released: November 04, 2012  |  Added: November 04, 2012 | Visits: 622

PDF Combiner PDF Combiner is simple tool to merge / combine several PDF files into one. You need make only three simple steps: Step 1. Add files that you want to combine. Step 2. Set order of added files. Step 3. Merge files. The most important thing is fact that this software completely free. Key features:...


Platforms: Windows

License: Freeware Size: 2.58 MB Download (50): PDF Combiner Download

Released: October 01, 2012  |  Added: October 01, 2012 | Visits: 1.155

Folder Lock Box Folder Lock Box is a handy and reliable utility designed to encrypt and secure files. can Lock, encrypt, back up, shred and manage your files, folders. It can hide/encrypt any folder including removable hard disk. Super easy to use, drag the files/folders from Explorer into the safebox, encrypt...


Platforms: Windows

License: Freeware Download (468): Folder Lock Box Download

1 2 3 4 5 >