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

Obj freeware
Filter: All | Freeware | Demo
 

Obj

< 1 2 3 4 5 > 
Added: March 05, 2010 | Visits: 946

Myco::Entity Myco::Entity is a common base class for all Myco entity classes. SYNOPSIS ### Entity class definition package Myco::Foo; use base qw(Myco::Entity); # Start building metadata my $metadata = Myco::Entity::Meta->new ( name => __PACKAGE__, tangram => { table => Foo } );...



Platforms: *nix

License: Freeware Size: 102.4 KB Download (89): Myco::Entity Download

Added: March 23, 2010 | Visits: 1.014

Text::Scraper Text::Scraper contains structured data from (un)structured text. SYNOPSIS use Text::Scraper; use LWP::Simple; use Data::Dumper; # # 1. Get our template and source text # my $tmpl = Text::Scraper->slurp(*DATA); my $src = get(http://search.cpan.org/recent) || die $!; # # 2. Extract...





Platforms: *nix

License: Freeware Size: 46.08 KB Download (142): Text::Scraper Download

Added: November 14, 2010 | Visits: 750

Data::Stag::HashDB Data::Stag::HashDB is a perl used for building indexes over Stag files or objects. SYNOPSIS # parsing a file into a hash my $hdb = Data::Stag::HashDB->new; $hdb->unique_key("ss_details/social_security_no"); $hdb->record_type("person"); my $obj = {}; $hdb->index_hash($obj);...


Platforms: *nix

License: Freeware Size: 440.32 KB Download (123): Data::Stag::HashDB Download

Added: February 01, 2010 | Visits: 1.027

Bio::Ontology::Relationship Bio::Ontology::Relationship is a relationship for an ontology. SYNOPSIS $rel = Bio::Ontology::Relationship->new( -identifier => "16847", -subject_term => $subj, -object_term => $obj, -predicate_term => $pred ); This is a basic implementation of Bio::Ontology::RelationshipI. The...


Platforms: *nix

License: Freeware Size: 4.7 MB Download (109): Bio::Ontology::Relationship Download

Added: May 09, 2010 | Visits: 890

Class::Std Class::Std is a Perl module to support for creating standard "inside-out" classes. SYNOPSIS package MyClass; use Class::Std; # Create storage for object attributes... my %name : ATTR; my %rank : ATTR; my %snum : ATTR; my %public_data : ATTR; # Handle initialization of objects of...


Platforms: *nix

License: Freeware Size: 30.72 KB Download (93): Class::Std Download

Added: March 22, 2010 | Visits: 615

Text::Kakasi::JP Text::Kakasi::JP is a Japanese Perl extension for Text::Kakasi. SYNOPSIS use Text::Kakasi; # functional $res = Text::Kakasi::getopt_argv(kakasi, -ieuc, -w); $str = Text::Kakasi::do_kakasi($japanese_text); # object-oriented $obj = Text::Kakasi->new(-ieuc,-w); $str =...


Platforms: *nix

License: Freeware Size: 22.53 KB Download (94): Text::Kakasi::JP Download

Added: August 13, 2010 | Visits: 626

dtRdr::Config dtRdr::Config is a Perl module with Factory class for configuration system. Factory Methods factory_read_config Constructor function (see new) my $obj = factory_read_config($file); new $conf = dtRdr::Config->new($file); get_library_info my @libraries = $conf->get_library_info;.


Platforms: *nix

License: Freeware Size: 2.8 MB Download (99): dtRdr::Config Download

Added: February 25, 2010 | Visits: 1.547

WWW::Babelfish WWW::Babelfish is a Perl extension for translation via Babelfish or Google. SYNOPSIS use WWW::Babelfish; $obj = new WWW::Babelfish( service => Babelfish, agent => Mozilla/8.0, proxy => myproxy ); die( "Babelfish server unavailablen" ) unless defined($obj); $french_text = $obj->translate(...


Platforms: *nix

License: Freeware Size: 9.22 KB Download (102): WWW::Babelfish Download

Added: November 04, 2010 | Visits: 834

Proc::BackOff::Linear Proc::BackOff::Linear is a generic module meant to be directly inherited from and then modified by overloading the calculate_back_off object method. SYNOPSIS Usage: use Proc::BackOff::Linear; my $obj = Proc::BackOff::Linear->new( { $slope => 5, x => count, b => 0 ); # sequence would be...


Platforms: *nix

License: Freeware Size: 6.14 KB Download (101): Proc::BackOff::Linear Download

Added: June 11, 2010 | Visits: 820

OzDB OzDB is a database Perl interface module for OzBot. SYNOPSIS use OzDB; The OzDB Perl module handles authentication and access control for the OzBot based utility bots. The basic database format is the authentication schema. This is based on a numerical ordering authentication system. If the...


Platforms: *nix

License: Freeware Size: 12.29 KB Download (94): OzDB Download

Added: July 18, 2010 | Visits: 1.562

SQL::Abstract::Limit SQL::Abstract::Limit is a portable LIMIT emulation. SYNOPSIS use SQL::Abstract::Limit; my $sql = SQL::Abstract::Limit->new( limit_dialect => LimitOffset );; # or autodetect from a DBI $dbh: my $sql = SQL::Abstract::Limit->new( limit_dialect => $dbh ); # or from a Class::DBI class: my...


Platforms: *nix

License: Freeware Size: 14.34 KB Download (98): SQL::Abstract::Limit Download

Added: February 17, 2010 | Visits: 924

Object::Transaction Object::Transaction is a virtual base class for transactions on files containing serialized hash objects. SYNOPSIS use Object::Transaction; transaction($coderef, @codeargs); commit(); abandon(); $there_is_a_pending_transaction = transaction_pending() package Pkg; @ISA =...


Platforms: *nix

License: Freeware Size: 17.41 KB Download (90): Object::Transaction Download

Added: March 07, 2010 | Visits: 1.010

Java::Import Java::Import is Perl module to use Java classes in Perl. SYNOPSIS use Java::Import qw( some.package.SomeClass ); my $instance = new some.package.SomeClass(); $instance->someMethod(); my $ret_val = some::package::SomeClass::someStaticMethod(); $ret_val->someMethod(); $ret_val2 =...


Platforms: *nix

License: Freeware Size: 28.67 KB Download (93): Java::Import Download

Added: August 24, 2010 | Visits: 1.595

JavaScript::Minifier JavaScript::Minifier is a Perl translation of jsmin.c. SYNOPSIS use JavaScript::Minifier; my $obj = new JavaScript::Minifier; $obj->minify(*STDIN, *STDOUT); use JavaScript::Minifier qw(jsmin); jsmin(*STDIN, *STDOUT); This work is a translation from C to Perl of jsmin.c published by...


Platforms: *nix

License: Freeware Size: 4.1 KB Download (144): JavaScript::Minifier Download

Added: May 05, 2010 | Visits: 1.049

Lemonldap::Portal::Session Lemonldap::Portal::Session is a Perl extension for Lemonldap websso. SYNOPSIS use Lemonldap::Portal::Session; my $paramxml = $test->{DefinitionSession} ; # $test is the result of XML parsing my $obj = Lemonldap::Portal::Session->init ($paramxml,entry =>$entry) ;...


Platforms: *nix

License: Freeware Size: 5.12 KB Download (90): Lemonldap::Portal::Session Download

Added: September 06, 2010 | Visits: 1.611

CAD::Drawing::IO::Tk CAD::Drawing::IO::Tk is a Perl module with GUI I/O methods for CAD::Drawing. This module is considered extremely pre-ALPHA and its use is probably deprecated by the time you read this. Methods There is no constructor for this class, its methods are inherited via CAD::Drawing::IO Thoughts...


Platforms: *nix

License: Freeware Size: 8.19 KB Download (100): CAD::Drawing::IO::Tk Download

Added: January 27, 2010 | Visits: 1.345

CAD::Drawing::IO::Split CAD::Drawing::IO::Split is a Perl module that allows fast distributed text file methods. Requisite Plug-in Functions See CAD::Drawing::IO for a description of the plug-in architecture. check_type Returns true if $type is "split" or $filename is a directory (need a tag?) $fact =...


Platforms: *nix

License: Freeware Size: 39.94 KB Download (100): CAD::Drawing::IO::Split Download

Added: August 04, 2010 | Visits: 1.585

CAD::Drawing::IO CAD::Drawing::IO are I/O methods for the CAD::Drawing module. This module provides the load() and save() functions for CAD::Drawing and provides a point of flow-control to deal with the inheritance and other trickiness of having multiple formats handled through a single module. Utility...


Platforms: *nix

License: Freeware Size: 39.94 KB Download (183): CAD::Drawing::IO Download

Added: February 20, 2010 | Visits: 1.003

SOAP::Data::ComplexType SOAP::Data::ComplexType is an abstract class for creating and handling complex SOAP::Data objects. SYNOPSIS package My::SOAP::Data::ComplexType::Foo; use strict; use warnings; use SOAP::Data::ComplexType; use vars qw(@ISA); @ISA = qw(SOAP::Data::ComplexType); use constant OBJ_URI =>...


Platforms: *nix

License: Freeware Size: 13.31 KB Download (93): SOAP::Data::ComplexType Download

Added: April 10, 2010 | Visits: 719

Bio::AnnotationCollectionI Bio::AnnotationCollectionI is a Perl interface for annotation collections. SYNOPSIS # get an AnnotationCollectionI somehow, eg $ac = $seq->annotation(); foreach $key ( $ac->get_all_annotation_keys() ) { @values = $ac->get_Annotations($key); foreach $value ( @values ) { # value is an...


Platforms: *nix

License: Freeware Size: 4.7 MB Download (95): Bio::AnnotationCollectionI Download

< 1 2 3 4 5 >