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

Declare freeware
Filter: All | Freeware | Demo
 

Declare

< 1 2 3 4 5 > 
Added: July 21, 2013 | Visits: 362

MooseX::Attribute::Prototype MooseX::Attribute::Prototype is a Perl module that implements attribute prototyping -- the practice of borrowing an attribute from a role and optionally overriding/extending the attribute definition. This is This works very similar to Moose's native attribute cloning, but allows for additional... Platforms: *nix

License: Freeware Size: 30.72 KB Download (33): MooseX::Attribute::Prototype Download

Released: March 11, 2003  |  Added: November 13, 2006 | Visits: 8.631

DarkBASIC CodeKEEPER Version PLEASE NOTE: CodeKEEPER is an alternative editor for the DarkBASIC (www.darkbasic.com) programming language, the reason i am stating this is so you don't download it to find its not what your after, this was designed and programmed for DarkBASIC. DarkBASIC is a DirectX Based programming... Platforms: Windows

License: Freeware Size: 1.04 MB Download (2281): DarkBASIC CodeKEEPER Version Download

Added: August 05, 2008 | Visits: 1.067

PowerBASIC Utilities Toolkit The PowerBASIC Utilities Toolkit (PBUTILS) is a suite of applications to help PowerBASIC programmers become more productive. There are over 15 programs in this tool kit that do things like format code, to generating declare files. This suite is incredibly useful for day to day programming tasks. Platforms: Windows

License: Freeware Size: 311 KB Download (136): PowerBASIC Utilities Toolkit Download

Released: May 01, 2009  |  Added: April 07, 2010 | Visits: 1.438

GroupWebService Users can add their account to a group. As user-self-service authenticated users in your company may use this website to add their account to a specified group. Usability *Use groups to grant access Your company uses Active Directory groups to grant access to ressources depending on... Platforms: Windows

License: Freeware Size: 270 KB Download (108): GroupWebService Download

Added: August 10, 2010 | Visits: 704

Text::MetaText Text::MetaText is a Perl extension implementing meta-language for processing "template" text files. SYNOPSIS use Text::MetaText; my $mt = Text::MetaText->new(); # process file content or text string print $mt->process_file($filename, %vardefs); print $mt->process_text($textstring,... Platforms: *nix

License: Freeware Size: 87.04 KB Download (90): Text::MetaText Download

Added: April 21, 2010 | Visits: 1.309

Curses::Application Curses::Application provides the Curses Application Framework. Curses::Application attempts to relieve the programmer of having to deal directly with Curses at all. Based upon Curses::Widgets and Curses::Forms, all one should have to do is define the application forms and contents in the DATA... Platforms: *nix

License: Freeware Size: 17.41 KB Download (105): Curses::Application Download

Added: March 07, 2010 | Visits: 951

Class::Struct::FIELDS Class::Struct::FIELDS module combine Class::Struct, base and fields. SYNOPSIS (This page documents Class::Struct::FIELDS v.1.1.) use Class::Struct::FIELDS; # declare struct, based on fields, explicit class name: struct (CLASS_NAME => { ELEMENT_NAME => ELEMENT_TYPE, ... }); use... Platforms: *nix

License: Freeware Size: 18.43 KB Download (98): Class::Struct::FIELDS Download

Added: June 23, 2010 | Visits: 817

ESP An ethics-enabled search engine can act as a complement to the well-known price search engines (a topic I have been working on earlier) and turn ethical considerations into an easily advertisable advantage. A search engine can store imprint and ethics of organizations that publish them and allow... Platforms: *nix

License: Freeware Size: 13.31 KB Download (87): ESP Download

Added: November 24, 2010 | Visits: 908

Perl6::Parameters Perl6::Parameters is a module with Perl 6-style prototypes with named parameters. SYNOPSIS use Perl6::Parameters; sub mysub($foo, ARRAY $bar, *%rest) { ... } DETAILS Perl6::Parameters is a Perl module which simulates Perl 6s named parameters. (When I talk about "named parameters" I... Platforms: *nix

License: Freeware Size: 4.1 KB Download (91): Perl6::Parameters Download

Added: March 01, 2010 | Visits: 1.460

GeoServer 1.5.3 / 1.6.0 Beta GeoServer project is a full transactional Java (J2EE) implementation of the OpenGIS Consortiums Web Feature Server specification, with an integrated WMS. GeoServer is free software, available under the GPL 2.0 license. Users who would like to access and modify their geographic data over the... Platforms: *nix

License: Freeware Size: 20.4 MB Download (118): GeoServer 1.5.3 / 1.6.0 Beta Download

Added: February 25, 2010 | Visits: 774

Object::LocalVars Object::LocalVars is a Perl module with outside-in objects with local aliasing of $self and object variables. SYNOPSIS package My::Object; use strict; use Object::LocalVars; give_methods our $self; # this exact line is required our $field1 : Prop; our $field2 : Prop; sub as_string :... Platforms: *nix

License: Freeware Size: 40.96 KB Download (94): Object::LocalVars Download

Added: October 08, 2010 | Visits: 887

Perl6::Currying Perl6::Currying is a Perl 6 subroutine currying for Perl 5. SYNOPSIS use Perl6::Currying; sub add ($a,$b) { $a + $b } # Define a sub with named params print add(1,2); # Call it my $incr = &add.prebind(a=>1); # Bind the $a argument to 1 # to create an increment subroutine print... Platforms: *nix

License: Freeware Size: 5.12 KB Download (89): Perl6::Currying Download

Added: August 21, 2010 | Visits: 747

Getopt::Clade Getopt::Clade is a Perl module with command-Line Argument Declaration Engine. This module is a placeholder for the real Getopt::Clade module. The module was supposed to be released by July 2005, to support the book "Perl Best Practices". Unfortunately, due to a series of family medical crises,... Platforms: *nix

License: Freeware Size: 3.07 KB Download (93): Getopt::Clade Download

Added: August 20, 2010 | Visits: 1.157

FiForms FiForms started as a collection of PHP classes for creating web-based data entry screens for a MySQL database. FiForms library has since grown into a collection of projects addressing many aspects of web-database development needs. The FiForms framework currently includes the FiForms data-entry... Platforms: *nix

License: Freeware Size: 174.08 KB Download (98): FiForms Download

Added: November 03, 2010 | Visits: 848

Class::Meta::Express Class::Meta::Express is a Perl module for concise, expressive creation of Class::Meta classes. Synopsis package My::Contact; use Class::Meta::Express; class { meta contact => ( default_type => string ); has name; has contact => ( required => 1 ); } This module provides an interface... Platforms: *nix

License: Freeware Size: 9.22 KB Download (92): Class::Meta::Express Download

Added: August 18, 2010 | Visits: 958

Persistent::LDAP Persistent::LDAP is a persistent class implemented using a LDAP directory. SYNOPSIS use Persistent::LDAP; use English; # import readable variable names like $EVAL_ERROR eval { ### in case an exception is thrown ### ### allocate a persistent object ### my $person = new... Platforms: *nix

License: Freeware Size: 15.36 KB Download (88): Persistent::LDAP Download

Added: April 08, 2010 | Visits: 760

SQL::Preproc SQL::Preproc is a Perl module to embed SQL in your Perl (ala SQL preprocessors). SYNOPSIS use SQL::Preproc subclass => Chart, emit => 1, keepsql => 1, syntax => [ Teradata ], pponly => 1, relax => 1, alias => 1, debug => 1; use DBI; use DBI qw(:sql_types); use... Platforms: *nix

License: Freeware Size: 52.22 KB Download (94): SQL::Preproc Download

Added: February 18, 2010 | Visits: 1.016

cftp This is Comfortable FTP, a full screen ftp client. Supported are FTP both with active and passive data connections, IPv4 and IPv6, and SFTP (a file transfer protocol using SSH for authorization and connection encryption). SFTP support is somewhat preliminary: It requires SSH protocol... Platforms: *nix

License: Freeware Size: 181.25 KB Download (98): cftp Download

Added: February 12, 2010 | Visits: 674

Getopt::Helpful Getopt::Helpful is an integrated option hash / help messages. STATE This module is still under development, but is being publish on CPAN to satisfy some code which depends on it. The interface may change in a future version and some of the functionality is not yet complete. SYNOPSIS This... Platforms: *nix

License: Freeware Size: 11.26 KB Download (92): Getopt::Helpful Download

Added: October 15, 2010 | Visits: 1.046

MIME::Head MIME::Head is a MIME message header (a subclass of Mail::Header). SYNOPSIS Before reading further, you should see MIME::Tools to make sure that you understand where this module fits into the grand scheme of things. Go on, do it now. Ill wait. Ready? Ok... Construction ### Create a new,... Platforms: *nix

License: Freeware Size: 389.12 KB Download (94): MIME::Head Download

< 1 2 3 4 5 >