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

Evaluated freeware
Filter: All | Freeware | Demo
 

Evaluated

< 1 2 3 4 5 > 
Added: February 18, 2010 | Visits: 1.044

PDL::GSL::INTERP PDL::GSL::INTERP is a PDL interface to Interpolation routines in GSL. SYNOPSIS use PDL; use PDL::GSL::INTERP; my $x = sequence(10); my $y = exp($x); my $spl = PDL::GSL::INTERP->init(cspline,$x,$y); my $res = $spl->eval(4.35); $res = $spl->deriv(4.35); $res = $spl->deriv2(4.35);... Platforms: *nix

License: Freeware Size: 2.1 MB Download (93): PDL::GSL::INTERP Download

Added: November 05, 2010 | Visits: 1.241

Template::Manual::Directives Template::Manual::Directives is a Perl module that contains template directives. Accessing and Updating Template Variables GET The GET directive retrieves and outputs the value of the named variable. [% GET foo %] The GET keyword is optional. A variable can be specified in a directive... Platforms: *nix

License: Freeware Size: 778.24 KB Download (111): Template::Manual::Directives Download

Added: September 15, 2010 | Visits: 1.110

StreamCruncher 2.1 StreamCruncher is an Event Processor. The project supports a language based on SQL which allows you to define Event Processing constructs like Sliding Windows, Time Based Windows, Partitions and Aggregates. Queries can be written using this language, which are used to monitor streams of... Platforms: *nix

License: Freeware Size: 3.9 MB Download (92): StreamCruncher 2.1 Download

Added: April 10, 2010 | Visits: 802

Scalar::Defer Scalar::Defer is a Perl module to calculate values on demand. SYNOPSIS use Scalar::Defer; # exports defer and lazy my ($x, $y); my $dv = defer { ++$x }; # a deferred value (not memoized) my $lv = lazy { ++$y }; # a lazy value (memoized) print "$dv $dv $dv"; # 1 2 3 print "$lv $lv $lv";... Platforms: *nix

License: Freeware Size: 25.6 KB Download (89): Scalar::Defer Download

Added: August 20, 2010 | Visits: 1.688

cgi-postin cgi-postin utility processes data generated from a World-Wide Web form. cgi-postin is a standalone processor that may be run easily from sh, perl, or Tcl scripts. Important Note: I recommend this tool only when implementing CGIs as shell scripts. For other languages, there are more modern and... Platforms: *nix

License: Freeware Size: 6.14 KB Download (94): cgi-postin Download

Added: March 23, 2010 | Visits: 1.544

The Complex Language The Complex Language project is an object oriented programming language intended for scripting or rapid prototyping of applications. The design goals were to have very few simple but powerful concepts and to be easy to use and easy to learn. The project provides a working interpreter along with... Platforms: *nix

License: Freeware Size: 133.12 KB Download (106): The Complex Language Download

Added: April 24, 2010 | Visits: 1.054

Apache::ReverseProxy Apache::ReverseProxy is an Apache mod_perl reverse proxy. SYNOPSIS # In Apache config file < Location / > SetHandler perl-script PerlHandler Apache::ReverseProxy PerlSetVar ReverseProxyConfig /usr/local/apache/conf/rproxy.conf < /Location > # In rproxy.conf / http://www.cpan.org/ This... Platforms: *nix

License: Freeware Size: 6.14 KB Download (97): Apache::ReverseProxy Download

Added: April 12, 2010 | Visits: 1.520

CURSEL CURSEL project is a freeware FMLI implementation, a small language that allows you to quickly make a form- and menu- based character interface to shell scripts and other programs. CURSEL filenames normally start with either "Menu", "Form" or "Text". For example, the command, ./cursel... Platforms: *nix

License: Freeware Size: 69.63 KB Download (110): CURSEL Download

Added: October 25, 2010 | Visits: 1.674

2E Programming Language 2E Programming Language (two es, as in ee, or expression evaluator) is a simple algebraic syntax language. It natively supports expressions (composed of operators and operands), and function definitions, and basically nothing else. Therefore, it can be fairly straight-forward to learn (assuming... Platforms: *nix

License: Freeware Size: 31.74 KB Download (108): 2E Programming Language Download

Added: January 09, 2010 | Visits: 729

SourceBrowser SourceBrowser is a documentation meta-programming tool that generates a wiki for a source tree. The project provides a domain specific language called Source Annotation Language for writing documentation meta-programs. A meta-program is embedded into the source code of a program or library,... Platforms: *nix

License: Freeware Size: 66.56 KB Download (89): SourceBrowser Download

Added: October 21, 2010 | Visits: 1.096

SQLizer SQLizer is a Java utility library intended for generating sql from the search input. Synopsis: import stanford.netdb.utils.*; String sql_1 = Feild2SQL.parseField(type,table, column, input_str, field_display_name, post_filter); String sql_2 = Feild2SQL.parseStringField(table, column,... Platforms: *nix

License: Freeware Size: 6.14 KB Download (119): SQLizer Download

Released: December 22, 2012  |  Added: December 22, 2012 | Visits: 2.294

sqlpp sqlpp Perl package is a SQL preprocessor. sqlpp is a conventional cpp-alike preprocessor taught to understand SQL ( PgSQL, in particular) syntax specificities. In addition to the standard #define/#ifdef/#else/#endif cohort, provides also #perldef for calling arbitrary perl code. SYNOPSIS... Platforms: *nix

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

Added: February 10, 2010 | Visits: 830

DCE::Status DCE::Status is a Perl interface of DCE status codes. SYNOPSIS use DCE::Status; $errstr = error_inq_text($status); tie $status => DCE::Status; When a $scalar is tied to the DCE::Status class, it has a different value depending on the context it is evaluated in, similar to the magic $!... Platforms: *nix

License: Freeware Size: 35.84 KB Download (89): DCE::Status Download

Added: February 23, 2010 | Visits: 988

PHPBench PHPBench provides a benchmark suite for PHP. It performs a large number of simple tests in order to bench various aspects of the PHP interpreter. PHPBench can be used to compare hardware, operating systems, PHP versions, PHP accelerators and caches, compiler options, etc. Custom tests can... Platforms: *nix

License: Freeware Size: 9.22 KB Download (112): PHPBench Download

Added: November 04, 2010 | Visits: 617

Perl6::Take Perl6::Take is a Perl module to gather/take in Perl 5. SYNOPSIS use Perl6::Take; my @foo = gather { take 5; }; EXPORT gather Accepts a block. take statements inside the dynamic scope of the block are used to accumulate a list, which is gathered as the return value of the block.... Platforms: *nix

License: Freeware Size: 21.5 KB Download (88): Perl6::Take Download

Added: March 06, 2010 | Visits: 995

mod_auth_cache mod_auth_cache is an Apache module transparently caches an authentication originally done by a different module. The aim of this module is to speed up complex authentication mechanisms, to reduce database traffic if authenticating thru a backend database and to implement some sort of... Platforms: *nix

License: Freeware Size: 15.36 KB Download (90): mod_auth_cache Download

Added: April 23, 2010 | Visits: 910

EDelta EDelta is a fast XDelta-style binary differ, but optimized for executables which have a very systematic way of changing between versions. EDelta has not been thoroughly evaluated so far, but on one example (two versions of Vim) it produces a 30kB delta where XDelta needs 250kB. My personal use... Platforms: *nix

License: Freeware Size: 16.38 KB Download (128): EDelta Download

Added: February 24, 2010 | Visits: 936

XML::DOM::EntityReference XML::DOM::EntityReference is an XML ENTITY reference in XML::DOM. XML::DOM::EntityReference extends XML::DOM::Node. EntityReference objects may be inserted into the structure model when an entity reference is in the source document, or when the user wishes to insert an entity reference. Note... Platforms: *nix

License: Freeware Size: 39.94 KB Download (92): XML::DOM::EntityReference Download

Added: February 17, 2010 | Visits: 1.139

Graph::Writer::DrGeo Graph::Writer::DrGeo can save the graph output DrGeo scheme script. SYNOPSIS my $g = new Graph; # Add some vertices/edges to $g my $writer = Graph::Writer::DrGeo->new(); $writer->write_graph($g,"graph.scm"); # graph.scm can be evaluated and rendered with Dr.Geo Dr. Geo is a GTK... Platforms: *nix

License: Freeware Size: 8.19 KB Download (95): Graph::Writer::DrGeo Download

Added: March 10, 2010 | Visits: 930

MillScript MillScript projetc is a full featured, yet easy to use language for the batch production of templated Web sites. The language is a Java-based, early implementation of Spice: an experimental language developed by the OpenSpice group. MillScript benefits from a carefully considered and... Platforms: *nix

License: Freeware Size: 6.4 MB Download (95): MillScript Download

< 1 2 3 4 5 >