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

J O N A S Disney freeware
Filter: All | Freeware | Demo
 

J O N A S Disney

< 1 2 3 4 5 > 
Added: October 09, 2010 | Visits: 1.078

Graph::ModularDecomposition Graph::ModularDecomposition is a Perl module for modular decomposition of directed graphs. SYNOPSIS use Graph::ModularDecomposition qw(pairstring_to_graph tree_to_string); my $g = new Graph::ModularDecomposition; my $h = $g->pairstring_to_graph( ab,ac,bc ); print "yesn" if...



Platforms: *nix

License: Freeware Size: 13.31 KB Download (96): Graph::ModularDecomposition Download

Added: October 01, 2010 | Visits: 1.091

Geo::Raster Geo::Raster is a Perl extension for raster algebra. SYNOPSIS use Geo::Raster; or use Geo::Raster qw(:types); or use Geo::Raster qw(:types :logics :db); Geo::Raster is an object-oriented interface to libral, a C library for rasters and raster algebra. Geo::Raster makes using libral easy...





Platforms: *nix

License: Freeware Size: 89.09 KB Download (108): Geo::Raster Download

Added: September 06, 2010 | Visits: 915

EasyHTTPD EasyHTTPD is a drop in C++ class to implement an HTTP 1.0 Server - Now with OpenSSL Support! The class can be used to allow an application to be controlled by a browser, hence Embedded. To this functionality to an app, add the C++ class to the application, write and register request callback...


Platforms: *nix

License: Freeware Size: 16.38 KB Download (97): EasyHTTPD Download

Added: April 07, 2010 | Visits: 841

WMcp WMcp is a simple dockable pager for use in Window Maker. Installation: Unzip the file: gunzip wmcp-1.2.8.tar.gz Untar the file: tar xvf wmcp-1.2.8.tar CD to src dir: cd wmcp-1.2.8 do one of these makes: make -- make wmcp using the default button scheme (scalpel) make scalpel -- make...


Platforms: *nix

License: Freeware Size: 8.19 KB Download (100): WMcp Download

Added: June 11, 2010 | Visits: 1.004

multitask multitask allows Python programs to use generators (aka coroutines) to perform cooperative multitasking and asynchronous I/O. Applications written using multitask consist of a set of cooperating tasks that yield to a shared task manager whenever they perform a (potentially) blocking operation,...


Platforms: *nix

License: Freeware Size: 10.24 KB Download (100): multitask Download

Added: October 15, 2010 | Visits: 977

PDL::Fit::LM PDL::Fit::LM is a Levenber-Marquardt fitting routine for PDL. Currently, only Levenberg-Marquardt fitting is implemented. Other procedures should be added as required. For a fairly concise overview on fitting see Numerical Recipes, chapter 15 "Modeling of data". SYNOPSIS use PDL::Fit::LM;...


Platforms: *nix

License: Freeware Size: 1.1 MB Download (91): PDL::Fit::LM Download

Added: August 27, 2010 | Visits: 1.403

d command The d command runs a command in the background and redirects its output to a file. The output file is annotated with start and end time, the actual command used, cwd, host, etc. You can ask the d command to extract the last command from the output file and run it again, you can ask it to append...


Platforms: *nix

License: Freeware Size: 8.19 KB Download (151): d command Download

Added: August 17, 2010 | Visits: 1.101

Regexp::Assemble Regexp::Assemble is Perl module to assemble multiple Regular Expressions into a single RE. SYNOPSIS use Regexp::Assemble; my $ra = Regexp::Assemble->new; $ra->add( ab+c ); $ra->add( ab+- ); $ra->add( awd+ ); $ra->add( ad+ ); print $ra->re; # prints a(?:w?d+|b+[-c]) Regexp::Assemble...


Platforms: *nix

License: Freeware Size: 81.92 KB Download (94): Regexp::Assemble Download

Added: April 27, 2010 | Visits: 1.093

Embperl::Syntax::RTF Embperl::Syntax::RTF is a Perl class derived from Embperl::Syntax to define the syntax for RTF files. RTF files can be read and written by various word processing programms. This allows you to create dynamic wordprocessing documents or let process serial letters thru Embperl. Currently Embperl...


Platforms: *nix

License: Freeware Size: 665.6 KB Download (102): Embperl::Syntax::RTF Download

Added: July 15, 2010 | Visits: 716

Kernux Kernux project is a fully kernel-mode http-daemon for Linux. Currently Kernux is in its developing stage. Similiar developments in the same area were khttpd by Arjan van de van and Tux web-server by Ingo Molnar. Khttpd was included in the linux testing kernel 2.5 by Linus Torvalds. But it was...


Platforms: *nix

License: Freeware Size: 6.14 KB Download (86): Kernux Download

Added: February 19, 2010 | Visits: 879

Algorithm::SISort 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 (100): Algorithm::SISort Download

Added: June 07, 2010 | Visits: 791

SimCList SimCList project is a high quality C library for handling lists. SimCList is available for free, under restrictions imposed by the BSD license. SimCList API is good because: - it is simple, yet powerful - it makes elegant and consistent use of information hiding - it abstracts the actual...


Platforms: *nix

License: Freeware Size: 22.53 KB Download (90): SimCList Download

Added: March 20, 2010 | Visits: 764

Mutagenix Mutagenix (myoot-a-jen-iks) -- n. : A dynamic and mutable variant of Linux; Any one of several LiveCDs based on Slackware and Linux-Live. Mutagenix is built on Slackware Linux and Linux-Live LiveCD build scripts. Slapt-get is the foundation for the Mutagenix build system..


Platforms: *nix

License: Freeware Size: 688.9 MB Download (112): Mutagenix Download

Added: March 10, 2010 | Visits: 865

Regexp::Log Regexp::Log is a Perl base class for log files regexp builders. SYNOPSIS my $foo = Regexp::Log::Foo->new( format => custom %a %b %c/%d, capture => [qw( host code )], ); # the format() and capture() methods can be used to set or get $foo->format(custom %g %e %a %w/%s %c);...


Platforms: *nix

License: Freeware Size: 8.19 KB Download (93): Regexp::Log Download

Added: August 11, 2010 | Visits: 1.201

Math::Matrix Math::Matrix can multiply and invert Matrices. The following methods are available: new Constructor arguments are a list of references to arrays of the same length. The arrays are copied. The method returns undef in case of error. $a = new Math::Matrix ([rand,rand,rand],...


Platforms: *nix

License: Freeware Size: 6.14 KB Download (134): Math::Matrix Download

Added: November 16, 2010 | Visits: 1.074

Statistics::ChisqIndep Statistics::ChisqIndep is a Perl module to perform chi-square test of independence (a.k.a. contingency tables). Synopsis #example for Statistics::ChisqIndep use strict; use Statistics::ChisqIndep; use POSIX; # input data in the form of the array of array references my @obs = ([15, 68,...


Platforms: *nix

License: Freeware Size: 3.07 KB Download (119): Statistics::ChisqIndep Download

Released: August 17, 2014  |  Added: September 21, 2014 | Visits: 1.706

Free PDF Split Dealing with heavy sized PDF files can be problematic, as some email clients, servers and even applications cannot access heavy and bulky documents. Free PDF Split is a professional, powerful, easy, stand-alone and free desktop utility program that lets you split PDF files to make personality PDF...


Platforms: Windows, Windows 7, Windows Server

License: Freeware Size: 6.77 MB Download (169): Free PDF Split Download

Released: June 02, 2012  |  Added: June 02, 2012 | Visits: 461

Torneos Ajedrez La aplicacion "Torneos de Ajedrez" lleva el seguimiento de una liga de ajedrez todos-contra-todos a una sola vuelta o a doble vuelta. El numero maximo de jugadores en el torneo es de 29. En un cuadro de resultados se van introduciendo los resultados por jornada, obteniendose la clasificacion en...


Platforms: Windows

License: Freeware Size: 788.48 KB Download (50): Torneos Ajedrez Download

Added: May 10, 2013 | Visits: 357

Mocha mocha v2 is the new update to Imagineer's popular tracking and roto software mocha. Based on Imagineer???*a*?s innovative 2.5 D planar tracking system, mocha v2 helps visual effects artists solve complex tracking challenges. As a rotoscoping station, mocha's ability to accurately track mask...


Platforms: Windows, Mac, *nix, PHP, BSD Solaris

License: Freeware Download (56): Mocha Download

Released: August 12, 2012  |  Added: August 12, 2012 | Visits: 493

Quicky And Quickier for Mac OS Starting with Snow Leopard, recording a movie from certain sources became difficult with QuickTime Player. So we created Quicky and Quickier to handle all the movie recording situations that QuickTime Player no longer handled. - Use Quickier.app to record from other b-l-a-c-k-o-p.com apps like...


Platforms: Mac

License: Freeware Size: 1.1 MB Download (45): Quicky And Quickier for Mac OS Download

< 1 2 3 4 5 >