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

Img Class Scripts freeware
Filter: All | Freeware | Demo
 

Img Class Scripts

< 1 2 3 4 5 
Added: October 13, 2010 | Visits: 940

Class::MethodMaker::V1Compat Class::MethodMaker::V1Compat is a V1 compatibility code for C::MM. SYNOPSIS This class is for internal implementation only. It is not a public API. Class::MethodMaker version 2 strives for backward-compatiblity with version 1 as far as possible. That is to say, classes built with version 1... Platforms: *nix

License: Freeware Size: 88.06 KB Download (102): Class::MethodMaker::V1Compat Download

Released: August 01, 2012  |  Added: August 01, 2012 | Visits: 1.294

Class::XML Class::XML is a Perl module for simple XML Abstraction. SYNOPSIS package Foo; use base qw/Class::XML/; __PACKAGE__->has_attributes(qw/length colour/); __PACKAGE__->has_child(bar => Bar); package Bar; use base qw/Class::XML/; __PACKAGE__->has_parent(foo);... Platforms: *nix

License: Freeware Size: 18.43 KB Download (97): Class::XML Download

Added: April 11, 2010 | Visits: 1.180

DBIx::Class::Manual::Cookbook DBIx::Class::Manual::Cookbook is a Perl module that contains miscellaneous recipes. Paged results When you expect a large number of results, you can ask DBIx::Class for a paged resultset, which will fetch only a small number of records at a time: my $rs = $schema->resultset(Artist)->search(... Platforms: *nix

License: Freeware Size: 286.72 KB Download (101): DBIx::Class::Manual::Cookbook Download

Added: January 02, 2010 | Visits: 519

DBIx::Class::CDBICompat DBIx::Class::CDBICompat is a Class::DBI Compatibility layer. SYNOPSIS use base qw/DBIx::Class/; __PACKAGE__->load_components(qw/CDBICompat Core DB/); DBIx::Class features a fully featured compatibility layer with Class::DBI to ease transition for existing CDBI users. In fact, this class is... Platforms: *nix

License: Freeware Size: 174.08 KB Download (89): DBIx::Class::CDBICompat Download

Added: May 07, 2010 | Visits: 895

Class::MakeMethods::Template Class::MakeMethods::Template package contains extensible code templates. SYNOPSIS package MyObject; use Class::MakeMethods::Template::Hash ( new => new, string => foo, number => bar, ); my $obj = MyObject->new( foo => "Foozle", bar => 23 ); print $obj->foo(); $obj->bar(42);... Platforms: *nix

License: Freeware Size: 163.84 KB Download (87): Class::MakeMethods::Template Download

Added: October 16, 2010 | Visits: 759

Class::MakeMethods::Template::Generic Class::MakeMethods::Template::Generic Perl module contains templates for common meta-method types. SYNOPSIS package MyObject; use Class::MakeMethods ( Template::Hash:new => [ new ], Template::Hash:scalar => [ foo ] Template::Static:scalar => [ bar ] ); package main; my $obj =... Platforms: *nix

License: Freeware Size: 153.6 KB Download (87): Class::MakeMethods::Template::Generic Download

Added: April 03, 2010 | Visits: 853

Class::DBI::Query Class::DBI::Query is a Perl module with deprecated SQL manager for Class::DBI. SYNOPSIS my $sth = Class::DBI::Query ->new({ owner => $class, sqlname => $type, essential => @columns, where_columns => @where_cols, }) ->run($val); This abstracts away many of the details of the... Platforms: *nix

License: Freeware Size: 102.4 KB Download (93): Class::DBI::Query Download

Added: October 14, 2010 | Visits: 662

Class::NiceApi Class::NiceApi is a Perl module that translates your methodNames to my method_names. SYNOPSIS use Class::NiceApi; my $acl = Class::NiceApi->new( victim => Decision::ACL->new(), style => custom, table => { run_acl => RunACL } ); Perl method names should be written lowercased and multiple... Platforms: *nix

License: Freeware Size: 3.07 KB Download (92): Class::NiceApi Download

Added: October 22, 2010 | Visits: 1.052

Class::Maker Class::Maker Perl module contains classes, reflection, schema, serialization, attribute- and multiple inheritance. SYNOPSIS use Class::Maker qw(class); class Human, { isa => [qw( ParentClass )], public => { string => [qw(name lastname)], ref => [qw(father mother)], array =>... Platforms: *nix

License: Freeware Size: 49.15 KB Download (110): Class::Maker Download

Added: February 22, 2010 | Visits: 1.801

DB_cart Class DB_cart Class is a MySQL shopping cart script that can be used with third party product catalogues and membership systems. The MySQL database structure is neutral to existing systems. DB_cart Class can handle the shopping cart (add, update, and empty) and checkout process (set the shipment... Platforms: *nix

License: Freeware Size: 35.84 KB Download (130): DB_cart Class Download

Added: July 15, 2010 | Visits: 1.286

Validate_fields Class Validate_fields Class is an easy-to-use form field validation PHP script. This class can be used to validate database inputs or mail forms. It can validate simple text, numbers, dates, urls, email addresses, and the presence of HTML tags. Invalid form fields will be reported inside a detailed... Platforms: *nix

License: Freeware Size: 8.19 KB Download (104): Validate_fields Class Download

Added: January 05, 2010 | Visits: 1.105

Class::Accessor::Fast::Contained Class::Accessor::Fast::Contained is a Perl module for fast accessors with data containment. SYNOPSIS package Foo; use base qw(Class::Accessor::Fast::Contained); # The rest is the same as Class::Accessor::Fast This module does two things differently to the venerable Class::Accessor::Fast... Platforms: *nix

License: Freeware Size: 5.12 KB Download (101): Class::Accessor::Fast::Contained Download

Added: September 21, 2010 | Visits: 842

Class::Cloneable Class::Cloneable is a base class for Cloneable objects. SYNOPSIS package MyObject; our @ISA = (Class::Cloneable); # calling clone on an instance of MyObject # will give you full deep-cloning functionality This module provides a flexible base class for building objects with cloning... Platforms: *nix

License: Freeware Size: 8.19 KB Download (101): Class::Cloneable Download

Added: August 05, 2010 | Visits: 766

Class::Interfaces Class::Interfaces is a Per module for defining interface classes inline. SYNOPSIS # define some simple interfaces use Class::Interfaces ( Serializable => [ pack, unpack ], Printable => [ toString ], Iterable => [ iterator ], Iterator => [ hasNext, next ] ); # or some more complex ones... Platforms: *nix

License: Freeware Size: 6.14 KB Download (93): Class::Interfaces Download

Added: August 26, 2010 | Visits: 824

Class::Inner Class::Inner is a perlish implementation of Java like inner classes. SYNOPSIS use Class::Inner; my $object = Class::Inner->new( parent => ParentClass, methods => { method => sub { ... } }, }, constructor => new, args => [@constructor_args], ); Yet another implementation of an... Platforms: *nix

License: Freeware Size: 3.07 KB Download (98): Class::Inner Download

Added: May 18, 2010 | Visits: 1.191

Rains PPP scripts Rains PPP scripts are a set of tools that simplify the use and setup of pppd. Features include connection time logging, a ppp-off that works right with more than one pppd running, dial-on-demand support for pppd 2.3.x., and more. Another interesting feature is that the scripts keep track of... Platforms: *nix

License: Freeware Size: 20.48 KB Download (104): Rains PPP scripts Download

Added: May 02, 2010 | Visits: 764

Class::Phrasebook Class::Phrasebook is a Perl module that implements the Phrasebook pattern. SYNOPSIS use Class::Phrasebook; my $pb = new Class::Phrasebook($log, "test.xml"); $pb->load("NL"); # using Dutch as the language $phrase = $pb->get("ADDRESS", { street => "Chaim Levanon", number => 88, city =>... Platforms: *nix

License: Freeware Size: 18.43 KB Download (100): Class::Phrasebook Download

Added: July 06, 2010 | Visits: 1.218

CGI::Explorer CGI::Explorer is a class to manage displaying a hash tree of data, for use in CGI scripts. Synopsis Install /assets/css/explorer/xtree.css, /assets/js/explorer/xtree.js, and /assets/images/explorer/*, as per the installation instructions, below. Then run the demos... Platforms: *nix

License: Freeware Size: 31.74 KB Download (107): CGI::Explorer Download

Added: July 25, 2010 | Visits: 954

Class::Date Class::Date is a perl module, which provides a simple date type for perl. You can create new Class::Date objects with a constructor from different scalar formats, array refs, and hash refs, and then you can easily manipulate it by the builtin "+" and "-" operators (e.g.,... Platforms: *nix

License: Freeware Size: 34.82 KB Download (89): Class::Date Download

Added: June 01, 2010 | Visits: 1.136

Class Library for Numbers Class Library for Numbers in short CLN is a library for computations with all kinds of numbers.. Platforms: *nix

License: Freeware Size: 1.62 MB Download (93): Class Library for Numbers Download

< 1 2 3 4 5