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

Class Scripts freeware
Filter: All | Freeware | Demo
 

Class Scripts

< 1 2 3 4 5 > 
Added: April 22, 2013 | Visits: 450

php-sqlite3 for Scripts php-sqlite3 is a PHP extension that lets you access SQLite3 databases within your scripts.PHP 4 and PHP 5 have already built-in support for this RDBM, but this is limited to the 2.x releases. This extension adds support for SQLite 3.x release.Current (or planned) features include:- In-memory... Platforms: PHP

License: Freeware Size: 10 KB Download (47): php-sqlite3 for Scripts Download

Added: May 24, 2013 | Visits: 556

HTML_ToPDF for Scripts HTML_ToPDF is a PHP class that makes it easy to convert HTML documents to PDF files on the fly.HTML_ToPDF grew out of the need to convert HTML files (which are easy to create) to PDF files (which are not so easy to create) fast and easily.Features include:- The ability to encrypt and set... Platforms: PHP

License: Freeware Size: 1.06 MB Download (52): HTML_ToPDF for Scripts Download

Added: June 20, 2013 | Visits: 558

PanaChart for Scripts PanaChart is a PHP class for online charts creation using PHP and the GD image manipulation library.It makes it easy to plot several types of charts with less then 10 lines of code.It is suited for any scientific or business web application. Platforms: PHP

License: Freeware Size: 10 KB Download (48): PanaChart for Scripts Download

Added: August 14, 2013 | Visits: 428

Grabber for Scripts This is a simple yet powerful PHP class for screen scraping.It uses PHP CURL Library and handles most of the work for you. It has several useful functions for cleaning and extracting the needed content.The script is compatible with all operating systems and is very easy to install and use. Platforms: PHP

License: Freeware Size: 10 KB Download (48): Grabber for Scripts Download

Added: May 02, 2006 | Visits: 3.011

ContactGenie - Message Class Modifier CG-MCM is a utility that enables the modification of message classes for existing Microsoft Outlook contacts. 1- User Selection message classes to modify 2- Ability to Delete/Move/Copy contacts with selected message classes 3- Verification that new message class name has been published... Platforms: DOS, OS/2, BeOS, Palm OS, Windows, Mac, *nix, Windows CE

License: Freeware Size: 5.43 MB Download (606): ContactGenie - Message Class Modifier Download

Added: January 18, 2010 | Visits: 957

Class::Adapter Class::Adapter is a Perl implementation of the "Adapter" Design Pattern. The Class::Adapter class is intended as an abstract base class for creating any sort of class or object that follows the Adapter pattern. What is an Adapter? The term Adapter refers to a "Design Pattern" of the same... Platforms: *nix

License: Freeware Size: 24.58 KB Download (102): Class::Adapter Download

Added: January 18, 2010 | Visits: 1.349

Class::Adapter::Builder Class::Adapter::Builder is a Perl module that can generate Class::Adapter classes. SYNOPSIS package My::Adapter; use strict; use Class::Adapter::Builder ISA => Specific::API, METHODS => [ qw{foo bar baz} ], method => different_method; 1; Class::Adapter::Builder is another mechanism... Platforms: *nix

License: Freeware Size: 24.58 KB Download (206): Class::Adapter::Builder Download

Added: March 01, 2010 | Visits: 934

Class::DBI::ConceptSearch Class::DBI::ConceptSearch is a Perl module to retrieve Class::DBI aggregates from high-level conceptual searches. SYNOPSIS my $cs = Class::DBI::ConceptSearch->new(xml => $config); #see CONFIGURATION $cs->use_wildcards(1); $cs->use_implicit_wildcards(1); $cs->use_search_ilike(1);... Platforms: *nix

License: Freeware Size: 7.17 KB Download (90): Class::DBI::ConceptSearch Download

Added: February 08, 2010 | Visits: 1.059

DBIx::Class::LibXMLdoc DBIx::Class::LibXMLdoc is a Perl module to create an adjunct "Doc" accessor of a columns data which is automatically parsed into a LibXML documentElement (alpha-software). SYNOPSIS package My::DB::thingy; __PACKAGE__->load_components(qw/ PK::Auto LibXMLdoc Core /);... Platforms: *nix

License: Freeware Size: 5.12 KB Download (95): DBIx::Class::LibXMLdoc Download

Added: March 07, 2010 | Visits: 949

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: February 11, 2010 | Visits: 845

Class::ParmList Class::ParmList is a Perl module with methods for processing named parameter lists. SYNOPSIS use Class::ParmList qw(simple_parms parse_parms); $thingy->some_method({ -bgcolor => #ff0000, -textcolor => #000000 }); sub some_method { my ($self) = shift; my ($parm_ref) = @_; my $parms... Platforms: *nix

License: Freeware Size: 16.38 KB Download (89): Class::ParmList Download

Added: March 25, 2010 | Visits: 1.255

DBIx::Class::Schema::Loader::RelBuilder DBIx::Class::Schema::Loader::RelBuilder is a Perl module that builds relationships for DBIx::Class::Schema::Loader. This class builds relationships for DBIx::Class::Schema::Loader. This is module is not (yet) for external use. METHODS new Arguments: schema_class (scalar), fk_info... Platforms: *nix

License: Freeware Size: 32.77 KB Download (89): DBIx::Class::Schema::Loader::RelBuilder Download

Added: November 06, 2010 | Visits: 1.366

Class.Jabber.PHP Class.Jabber.PHP provides a medium-level API to interact with the Jabber network. Class.Jabber.PHP is a class which you can use to connect to the Jabber network. It allows you to easily connect to a server and interact with it. It supports all packet types (message, iq, and presence), is very... Platforms: *nix

License: Freeware Size: 16.38 KB Download (144): Class.Jabber.PHP Download

Added: January 13, 2010 | Visits: 938

Class::Observable Class::Observable is a Perl module that allows other classes and objects to respond to events in yours. SYNOPSIS # Define an observable class package My::Object; use base qw( Class::Observable ); # Tell all classes/objects observing this object that a state-change # has occurred sub... Platforms: *nix

License: Freeware Size: 10.24 KB Download (102): Class::Observable Download

Added: April 15, 2010 | Visits: 843

Exception::Class::TryCatch Exception::Class::TryCatch is a syntactic try/catch sugar for use with Exception::Class. SYNOPSIS use Exception::Class::TryCatch; # simple usage of catch() eval { Exception::Class::Base->throw(error) }; catch my $err and warn $err->error; # catching only certain types or else... Platforms: *nix

License: Freeware Size: 15.36 KB Download (88): Exception::Class::TryCatch Download

Added: August 02, 2010 | Visits: 1.119

Class::MakeMethods::Docs::ToDo Class::MakeMethods::Docs::ToDo is a Perl module with ideas, problems, and suggestions. SYNOPSIS There are lots of things that could be done to improve this module. DISTRIBUTION ISSUES Issues about the distribution and supporting files, rather than the code: Documentation Make sure that... Platforms: *nix

License: Freeware Size: 153.6 KB Download (94): Class::MakeMethods::Docs::ToDo Download

Added: June 22, 2010 | Visits: 966

class.upload.php class.upload.php manipulates uploads and images very easily. It can convert and resize uploaded images in many ways. It uses the GD library. How does it work? - the class constructor upload handles a uploaded file (it can also handle a local file) some optional parameters can be set up to... Platforms: *nix

License: Freeware Size: 43.01 KB Download (98): class.upload.php Download

Added: May 23, 2010 | Visits: 1.096

Class::Meta::Declare Class::Meta::Declare is a Perl module deprecated in favor of Class::Meta::Express. SYNOPSIS This was a first attempt at making a saner interface for Class::Meta. It is nicer, but Class::Meta::Express is nicer still. Go use that one. package MyApp::Thingy; use Class::Meta::Declare :all;... Platforms: *nix

License: Freeware Size: 15.36 KB Download (88): Class::Meta::Declare Download

Added: April 27, 2010 | Visits: 1.261

Class::Contract Class::Contract - Design-by-Contract OO in Perl. SYNOPSIS package ClassName use Class::Contract; contract { inherits BaseClass; invar { ... }; attr data1; attr data2 => HASH; class attr shared => SCALAR; ctor new; method methodname; pre { ... }; failmsg Error message; post... Platforms: *nix

License: Freeware Size: 26.62 KB Download (114): Class::Contract Download

Added: September 21, 2010 | Visits: 881

Class::Delegation Class::Delegation is a Perl object-oriented delegation. SYNOPSIS package Car; use Class::Delegation send => steer, to => ["left_front_wheel", "right_front_wheel"], send => drive, to => ["right_rear_wheel", "left_rear_wheel"], as => ["rotate_clockwise", "rotate_anticlockwise"] send... Platforms: *nix

License: Freeware Size: 14.34 KB Download (87): Class::Delegation Download

< 1 2 3 4 5 >