









Serving Software Downloads in 976 Categories, Downloaded 31.023.071 Times
Do you want to create your own apps? How to automate my business processes by myself?
Algorithm2 is a free tool for game and software development at home. With its help anybody can create a program without a knowledge of any programming language. Up-to-date components will let you to create...
Platforms: Windows, Windows 8, Windows 7, Windows Server
License: Freeware | Size: 8.53 MB | Download (47): Algorithm Download |
SARSS (Send and receive secure sms) Windows Phone 8 Version, Release 1.0 SARSS is a tiny but powerful windows phone application, allowing you to send encrypted sms/email messages. The software is using a custom symmetric key encryption algorithm, meaning that the same password is using for both...
Platforms: Windows Phone
License: Freeware | Size: 2 MB | Download (7): SARSSv8 Download |
SiteMapOrganizer is a powerful web site map generating and processing tool that fully simplifies processes of crawling web site in any accessible form (HTTP, FTP, Local on Disk), processing web site map to fully setting all the parameters of the site map up and generating the web site map in form...
Platforms: Windows, Windows 7
License: Demo | Cost: $24.00 USD | Size: 129 KB | Download (16): SiteMapOrganizer Download |
10 Second EM (Emergency Medicine) is designed for emergency physicians, medical residents, healthcare students and professionals that practice, rotate through or are interested in emergency medicine. It is designed to be a rapid reference tool with on-the-job applicability. It may also be helpful...
Platforms: iOS
License: Shareware | Cost: $4.99 USD | Size: 5.3 MB | Download (9): 10 Second EM Download |
Super Refocus - Easily Add Focus and Depth to Your Photos.
Super Refocus for Mac easily creates selective focus, lens blur, motion blur and tilt-shift effects. With Super Refocus, the amazing tilt-shift photography is easy generated. By simply applying a blurred background and increasing the...
Platforms: Mac
License: Shareware | Cost: $29.99 USD | Size: 20.35 MB | Download (57): Super Refocus for Mac Download |
This is an extremely fast implementation of the famous Hungarian algorithm (aslo known as Munkres' algorithm). The new version (V2.2)is about 1.5 times faster than the old version (V2.1). It can solve a 1000 x 1000 problem in about 20 seconds in a Core Duo (T2500 @ 2.00GHz) XP laptop with Matlab...
Platforms: Matlab
License: Freeware | Size: 10 KB | Download (19): Hungarian Algorithm for Linear Assignment Problems (V2.2) Download |
Algorithm::Diff::Apply is a Perl module to apply one or more Algorithm::Diff diffs. SYNOPSIS ## Single-diff form: use Algorithm::Diff::Apply qw{apply_diff}; my @ary = ...; my @diff = ...; # some call to Algorithm::Diff::diff() my @changed_ary = apply_diff(@ary, @diff); my $changed_ary =...
Platforms: *nix
License: Freeware | Size: 12.29 KB | Download (73): Algorithm::Diff::Apply Download |
Algorithm::BinPack is a Perl module that can efficiently pack items into bins. SYNOPSIS Algorithm::BinPack efficiently packs items into bins. The bins are given a maximum size, and items are packed in with as little empty space as possible. An example use would be backing up files to CD,...
Platforms: *nix
License: Freeware | Size: 4.1 KB | Download (83): Algorithm::BinPack Download |
Algorithm::SISort is a Perl module that contains select and insert sorting algorithm. SYNOPSIS use Algorithm::SISort qw(Sort Sort_inplace); @sorted_list = Sort {$_[0] <=> $_[1]} @unsorted_list; # ... or ... $number_of_comparisons = Sort_inplace {$_[0] <=> $_[1]} @unsorted_list; This...
Platforms: *nix
License: Freeware | Size: 4.1 KB | Download (82): Algorithm::SISort Download |
Algorithm::SocialNetwork is a social network analysis. SYNOPSIS use Graph::Undirected; use Algorithm::SocialNetwork; my $G = Graph::Undirected->new(); $G->add_edges([qw(a b)], [qw(b c)]); my $algo = Algorithm::SocialNetwork->new(graph => $G3); my $BC = $algo->BetweenessCentrality(); #...
Platforms: *nix
License: Freeware | Size: 9.22 KB | Download (85): Algorithm::SocialNetwork Download |
Algorithm::Diff is a Perl module to compute `intelligent differences between two files / lists. SYNOPSIS require Algorithm::Diff; # This example produces traditional diff output: my $diff = Algorithm::Diff->new( @seq1, @seq2 ); $diff->Base( 1 ); # Return line numbers, not indices...
Platforms: *nix
License: Freeware | Size: 33.79 KB | Download (75): Algorithm::Diff Download |
Algorithm::Line::Bresenham is a Perl module that contains a simple pixellated line-drawing algorithm. SYNOPSIS use Algorithm::Line::Bresenham qw/line/; my @points = line(3,3 => 5,0); # returns the list: [3,3], [4,2], [4,1], [5,0] line(3,3 => 5,0, &draw_line); # calls draw_line on each...
Platforms: *nix
License: Freeware | Size: 3.07 KB | Download (111): Algorithm::Line::Bresenham Download |
Algorithm::Pair::Best is a Perl module to select pairings (designed for Go tournaments, but can be used for anything, really). SYNOPSIS use Algorithm::Pair::Best; my $pair = Algorithm::Pair::Best->new( ? options ? ); $pair->add( item, ? item, ... ? ); @pairList = $pair->pick( ? $window...
Platforms: *nix
License: Freeware | Size: 10.24 KB | Download (86): Algorithm::Pair::Best Download |
Algorithm::SkipList is a Perl implementation of skip lists. SYNOPSIS my $list = new Algorithm::SkipList(); $list->insert( key1, value ); $list->insert( key2, another value ); $value = $list->find(key2); $list->delete(key1); This is an implementation of skip lists in Perl. Skip...
Platforms: *nix
License: Freeware | Size: 30.72 KB | Download (98): Algorithm::SkipList Download |
Algorithm::ScheduledPath is a Perl module that helps you to find scheduled paths in a directed graph. SYNOPSIS use Algorithm::ScheduledPath; use Algorithm::ScheduledPath::Path; $graph = new Algorithm::ScheduledPath(); $graph->add_edge( { path_id => R, origin => A, depart_time => 1,...
Platforms: *nix
License: Freeware | Size: 20.48 KB | Download (72): Algorithm::ScheduledPath Download |
Algorithm::Munkres is a Perl extension for Munkres solution to classical Assignment problem for square and rectangular matrices. This module extends the solution of Assignment problem for square matrices to rectangular matrices by padding zeros. Thus a rectangular matrix is converted to square...
Platforms: *nix
License: Freeware | Size: 9.22 KB | Download (82): Algorithm::Munkres Download |
Algorithm::AhoCorasick::SearchMachine provides an implementation and low-level interface of Algorithm::AhoCorasick. Feeds input to the state machine. First (after the instance) argument of this method is the input text (which can be empty, in which case the method doesnt do anything), second...
Platforms: *nix
License: Freeware | Size: 5.12 KB | Download (96): Algorithm::AhoCorasick::SearchMachine Download |
Algorithm::NeedlemanWunsch is a sequence alignment with configurable scoring. SYNOPSIS use Algorithm::NeedlemanWunsch; sub score_sub { if (!@_) { return -2; # gap penalty } return ($_[0] eq $_[1]) ? 1 : -1; } my $matcher = Algorithm::NeedlemanWunsch->new(&score_sub); my $score =...
Platforms: *nix
License: Freeware | Size: 10.24 KB | Download (86): Algorithm::NeedlemanWunsch Download |
The Image Compare 2 tool manages to find duplicate images, that can be deleted with a single mouse click.
It uses a unique algorithm to detect if an image is identical or similar, even when it is scaled or rotated.
Image Compare 2 now comes with an improved comparison algorithm, using thumbs...
Platforms: Windows
License: Freeware | Download (114): Image Compare 2 Download |
Contains two functions. The one function computes the greatest common divisor (gcd) of two polynomials a(x) and b(x) over GF(2^m). The other function performs the extended Euclidean algorithm where two polynomials u(x) and v(x) is calculated in addition to the gcd of a(x) and b(x) such that gcd =...
Platforms: Matlab
License: Freeware | Size: 10 KB | Download (18): Extended Euclidean Algorithm for polynomials over GF(2^m) Download |