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

Declare freeware
Filter: All | Freeware | Demo
 

Declare

< 1 2 3 4 5 > 
Added: April 15, 2010 | Visits: 1.071

JOLIE JOLIE is an interpreter for a new high level programming language, designed for SOAs (Service Oriented Architecture) orchestration (as, for example, WSBPEL by OASIS). The whole program is written entirely in Java to ensure cross-platform capabilities, following strictly an object-oriented... Platforms: *nix

License: Freeware Size: 235.52 KB Download (96): JOLIE Download

Added: April 09, 2010 | Visits: 1.033

Unicode::Overload Unicode::Overload is a Perl source filter to implement Unicode operations. SYNOPSIS use charnames :full; use Unicode::Overload ( "N{UNION}" => infix => sub { my %a = map{$_=>1}@{$_[0]}; my %b = map{$_=>1}@{$_[1]}; return keys(%a,$b); }, "N{SUPERSCRIPT TWO}" => postfix => sub { $_[0] **... Platforms: *nix

License: Freeware Size: 5.12 KB Download (97): Unicode::Overload Download

Added: July 08, 2010 | Visits: 635

DBIx::Recordset DBIx::Recordset is a Perl extension for DBI recordsets. SYNOPSIS use DBIx::Recordset; # Setup a new object and select some recods... *set = DBIx::Recordset -> Search ({!DataSource => dbi:Oracle:...., !Table => users, $where => name = ? and age > ?, $values => [richter, 25] }) ; # Get... Platforms: *nix

License: Freeware Size: 94.21 KB Download (86): DBIx::Recordset Download

Added: July 25, 2010 | Visits: 983

RIFE RIFE project is a full-stack web application framework with tools and APIs to implement most common web features. Each of its toolkits is usable by itself and together they offer powerful integrated features that boost your productivity. RIFE ensures that every declaration and definition is... Platforms: *nix

License: Freeware Size: 2.5 MB Download (102): RIFE Download

Added: May 23, 2010 | Visits: 864

alma Alma is a software with the following functionalities : - Reads several sources (languages, models, ...), - Helps to design for object-oriented modeling (definition of classes, relations, patterns, ...) - Modifies the structure and the code - Outputs new sources, documentation, diagrams, ...... Platforms: *nix

License: Freeware Size: 1.4 MB Download (94): alma Download

Added: May 13, 2010 | Visits: 926

JAP JAP project makes it possible to browse the Web anonymously and unobservably. JAP uses a single static address which is shared by many JAP users. That way, neither the visited Web site nor an eavesdropper can determine which user visited which Web site. Instead of connecting directly to a Web... Platforms: *nix

License: Freeware Size: 2.4 MB Download (157): JAP Download

Added: September 10, 2010 | Visits: 863

Volity::Game Volity::Game is a base class for Volity game modules. SYNOPSIS See Volity::Game::TicTacToe and its source code for a simple but full-featured example. This class provides a framework for writing Volity game modules in Perl. A Volity game module will be a subclass of this class. To turn... Platforms: *nix

License: Freeware Size: 102.4 KB Download (95): Volity::Game Download

Added: July 24, 2010 | Visits: 847

Method::Declarative Method::Declarative is a Perl module to create methods with declarative syntax. SYNOPSIS use Method::Declarative ( --defaults => { precheck => [ [ qw(precheck1 arg1 arg2) ], # ... ], postcheck => [ [ qw(postcheck1 arg3 arg4) ], # ... ], init => [ [ initcheck1 ], # ... ],... Platforms: *nix

License: Freeware Size: 8.19 KB Download (92): Method::Declarative Download

Added: October 27, 2010 | Visits: 835

PerlPoint::Tags::XML PerlPoint::Tags::XML is a PerlPoint tag set used by pp2sdf. SYNOPSIS # declare tags used by pp2sdf use PerlPoint::Tags::XML; This module declares PerlPoint tags used by XML converters. Tag declarations are used by the parser to determine if a used tag is valid, if it needs options, if it... Platforms: *nix

License: Freeware Size: 15.36 KB Download (88): PerlPoint::Tags::XML Download

Added: March 03, 2010 | Visits: 780

PerlPoint::Tags::CPPP PerlPoint::Tags::CPPP is a PerlPoint tag set used by pp2cppp. SYNOPSIS # declare tags used by pp2cppp use PerlPoint::Tags::CPPP; This module declares PerlPoint tags used by pp2cppp. Tag declarations are used by the parser to determine if a used tag is valid, if it needs options, if it... Platforms: *nix

License: Freeware Size: 327.68 KB Download (95): PerlPoint::Tags::CPPP Download

Added: September 27, 2010 | Visits: 913

PerlPoint::Tags::SDF PerlPoint::Tags::SDF is a PerlPoint tag set used by pp2sdf. SYNOPSIS # declare tags used by pp2sdf use PerlPoint::Tags::SDF; This module declares PerlPoint tags used by pp2sdf. Tag declarations are used by the parser to determine if a used tag is valid, if it needs options, if it needs a... Platforms: *nix

License: Freeware Size: 419.84 KB Download (168): PerlPoint::Tags::SDF Download

Added: June 19, 2010 | Visits: 826

PerlPoint::Tags PerlPoint::Tags is a Perl module that can process PerlPoint tag declarations. SYNOPSIS # declare a tag declaration package package PerlPoint::Tags::New; # declare base "class" use base qw(PerlPoint::Tags); PerlPoint is built a modularized way. The base packages provide parsing and... Platforms: *nix

License: Freeware Size: 419.84 KB Download (95): PerlPoint::Tags Download

Added: May 02, 2010 | Visits: 759

simple_scan simple_scan Perl module can scan a set of Web pages for strings present/absent. ABSTRACT App::SimpleScan - Mini-language for website testing SYNOPSIS simple_scan [--generate] [--run] [--define key="value value ..." ] [--override] [--defer] [--debug] [--warn] [--no-agent]... Platforms: *nix

License: Freeware Size: 54.27 KB Download (90): simple_scan Download

Added: September 08, 2010 | Visits: 787

dimnum dimnum is a C++ template library for dimensional numbers. The dimnum C++ library provides templated classes for storage of dimensional numbers, like lengths, masses, and so on. The classes are templated over the storage data type, and the base unit. Output as well as input (with automatic... Platforms: *nix

License: Freeware Size: 184.32 KB Download (95): dimnum Download

Added: April 15, 2010 | Visits: 843

fields::aliased fields::aliased is a Perl module that can create aliases for object fields. SYNOPSIS package MyPackage; use strict; use fields qw($scalar @array %hash); sub new { my $class = shift; my $self = fields::new($class); return $self; } sub mymethod { my MyPackage $self = shift; use... Platforms: *nix

License: Freeware Size: 8.19 KB Download (90): fields::aliased Download

Added: June 13, 2010 | Visits: 1.146

GD::Simple GD::Simple module is a simplified interface to GD library. SYNOPSIS use GD::Simple; # create a new image $img = GD::Simple->new(400,250); # draw a red rectangle with blue borders $img->bgcolor(red); $img->fgcolor(blue); $img->rectangle(10,10,50,50); # draw an empty rectangle with... Platforms: *nix

License: Freeware Size: 256 KB Download (100): GD::Simple Download

Added: April 03, 2010 | Visits: 1.051

HTML::Macro HTML::Macro can process HTML templates with loops, conditionals, macros and more! SYNOPSIS use HTML::Macro; $htm = new HTML::Macro (template.html); $htm->print; sub myfunc { $htm->declare (var, missing); $htm->set (var, value); return $htm->process; } ( in template.html ): < html... Platforms: *nix

License: Freeware Size: 23.55 KB Download (95): HTML::Macro Download

Added: April 24, 2010 | Visits: 1.004

Test::Simple Test::Simple is a Perl module with basic utilities for writing tests. SYNOPSIS use Test::Simple tests => 1; ok( $foo eq $bar, foo is bar ); ** If you are unfamiliar with testing read Test::Tutorial first! ** This is an extremely simple, extremely basic module for writing tests suitable... Platforms: *nix

License: Freeware Size: 77.82 KB Download (92): Test::Simple Download

Added: June 10, 2010 | Visits: 1.445

Gentle.NET Gentle.NET is an RDBMS independent object persistence framework. Gentle.NET features automatic SQL generation and object construction, an SQL factory for creating custom queries, DataView construction helpers, excellent performance and reasonably complete docs. The framework defines a few... Platforms: *nix

License: Freeware Size: 7 MB Download (93): Gentle.NET Download

Added: September 18, 2010 | Visits: 863

mod_proxy_html mod_proxy_html is an output filter to rewrite HTML links in a proxy situation, to ensure that links work for users outside the proxy. mod_proxy_html serves the same purpose as Apaches ProxyPassReverse directive does for HTTP headers, and is an essential component of a reverse proxy. For... Platforms: *nix

License: Freeware Size: 35.84 KB Download (115): mod_proxy_html Download

< 1 2 3 4 5 >