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

Florida Isa freeware
Filter: All | Freeware | Demo
 

Florida Isa

< 1 2 3 4 5 > 
Added: February 03, 2010 | Visits: 1.040

Class::IntrospectionMethods::Catalog Class::IntrospectionMethods::Catalog can manage catalogs from IntrospectionMethods. Exported functions set_method_info( target_class, method_name, info_ref ) Store construction info for method method_name of class target_class. set_global_catalog (target_class, ...) Store catalog...



Platforms: *nix

License: Freeware Size: 31.74 KB Download (94): Class::IntrospectionMethods::Catalog Download

Added: June 05, 2010 | Visits: 1.110

XML::Checker::Parser XML::Checker::Parser is an XML::Parser that validates at parse time. SYNOPSIS use XML::Checker::Parser; my %expat_options = (KeepCDATA => 1, Handlers => [ Unparsed => &my_Unparsed_handler ]); my $parser = new XML::Checker::Parser (%expat_options); eval { local $XML::Checker::FAIL =...





Platforms: *nix

License: Freeware Size: 368.64 KB Download (104): XML::Checker::Parser Download

Added: March 21, 2010 | Visits: 1.086

Audio::Xmpcr Audio::Xmpcr is a Perl API to the XM PCR Satellite radio. It offers two different operating modes (direct and remote+daemon) via a single interface.This is very alpha, use at your own risk. It has only been tested only with few cards. 16 meg all-in-wonder rage 128 capture card. 8 meg...


Platforms: *nix

License: Freeware Size: 44.03 KB Download (103): Audio::Xmpcr Download

Added: April 21, 2010 | Visits: 981

Bio::PrimarySeqI Bio::PrimarySeqI is a Perl Interface definition for a Bio::PrimarySeq. SYNOPSIS # Bio::PrimarySeqI is the interface class for sequences. # If you are a newcomer to bioperl, you should # start with Bio::Seq documentation. This # documentation is mainly for developers using # Bioperl. #...


Platforms: *nix

License: Freeware Size: 4.7 MB Download (92): Bio::PrimarySeqI Download

Added: May 10, 2010 | Visits: 1.130

JGuiGen JGuiGen is a Java GUI Generation System Elegant CRUD (Create/Review/Update/Delete). It supports any major database using JDBC. It generates fully internationalized and accessible screens that allow users to search tables, run reports, and calculate summary stats. It generates multi-user safe...


Platforms: *nix

License: Freeware Size: 10.1 MB Download (101): JGuiGen Download

Added: August 03, 2010 | Visits: 913

Class::Container Class::Container is a Perl module with Glues object frameworks together transparently. SYNOPSIS package Car; use Class::Container; @ISA = qw(Class::Container); __PACKAGE__->valid_params ( paint => {default => burgundy}, style => {default => coupe}, windshield => {isa => Glass}, radio...


Platforms: *nix

License: Freeware Size: 19.46 KB Download (110): Class::Container Download

Added: March 06, 2010 | Visits: 1.017

Unicode::Map8 Unicode::Map8 is a mapping table between 8-bit chars and Unicode. SYNOPSIS require Unicode::Map8; my $no_map = Unicode::Map8->new("ISO646-NO") || die; my $l1_map = Unicode::Map8->new("latin1") || die; my $ustr = $no_map->to16("V}re norske tegn b|r {resn"); my $lstr = $l1_map->to8($ustr);...


Platforms: *nix

License: Freeware Size: 102.4 KB Download (108): Unicode::Map8 Download

Added: March 21, 2010 | Visits: 955

Class::ObjectTemplate Class::ObjectTemplate is a Perl extension for an optimized template builder base class. SYNOPSIS package Foo; use Class::ObjectTemplate; require Exporter; @ISA = qw(Class::ObjectTemplate Exporter); attributes(one, two, three); # initialize will be called by new() sub initialize { my...


Platforms: *nix

License: Freeware Size: 6.14 KB Download (89): Class::ObjectTemplate Download

Added: February 13, 2010 | Visits: 1.081

Dmidecodee Dmidecode project reports information about your systems hardware as described in your system BIOS according to the SMBIOS and DMI standard (see a sample output). This information typically includes system manufacturer, model name, serial number, BIOS version, asset tag as well as a lot of...


Platforms: *nix

License: Freeware Size: 55.3 KB Download (123): Dmidecodee Download

Added: January 27, 2010 | Visits: 672

Test::MockClass Test::MockClass is a Perl module to provide mock classes and mock objects for testing. SYNOPSIS # Pass in the class name and version that you want to mock use Test::MockClass qw{ClassToMock 1.1}; # create a MockClass object to handle a specific class my $mockClass =...


Platforms: *nix

License: Freeware Size: 14.34 KB Download (106): Test::MockClass Download

Added: November 14, 2010 | Visits: 898

Uplug Uplug is a collection of tools for linguistic corpus processing, word alignment, and term extraction from parallel corpora. Several tools have been integrated in Uplug. Pre-processing tools include a sentence splitter, tokenizer, and external part-of-speech tagger and shallow parsers. The...


Platforms: *nix

License: Freeware Size: 21.9 MB Download (107): Uplug Download

Added: June 04, 2010 | Visits: 1.475

Rose::DB::Object::Tutorial Rose::DB::Object::Tutorial is a guided tour of the basics of Rose::DB::Object. INTRODUCTION This document provides a step-by-step introduction to the Rose::DB::Object module distribution. It demonstrates all of the important features using a semi-realistic example database. This tutorial does...


Platforms: *nix

License: Freeware Size: 481.28 KB Download (98): Rose::DB::Object::Tutorial Download

Added: July 05, 2010 | Visits: 1.353

Rose::DB::Object::Helpers Rose::DB::Object::Helpers is a mix-in class containing convenience methods for Rose::DB::Object. SYNOPSIS package MyDBObject; use Rose::DB::Object; our @ISA = qw(Rose::DB::Object); use Rose::DB::Object::Helpers clone, { load_or_insert => find_or_create }; ... $obj =...


Platforms: *nix

License: Freeware Size: 481.28 KB Download (114): Rose::DB::Object::Helpers Download

Added: August 27, 2010 | Visits: 1.127

Rose::Class::MakeMethods::Set Rose::Class::MakeMethods::Set is a Perl module to create class methods to manage sets. SYNOPSIS package MyClass; use Rose::Class::MakeMethods::Set ( inheritable_set => [ required_name => { add_implies => add_valid_name, test_method => name_is_required, }, ], inherited_set => [...


Platforms: *nix

License: Freeware Size: 28.67 KB Download (95): Rose::Class::MakeMethods::Set Download

Added: October 18, 2010 | Visits: 887

Rose::Object Rose::Object is a simple object base class. SYNOPSIS package MyObject; use Rose::Object; our @ISA = qw(Rose::Object); sub foo { ... } sub bar { ... } ... my $o = MyObject->new(foo => abc, bar => 5); ... Rose::Object is a generic object base class. It provides very little...


Platforms: *nix

License: Freeware Size: 28.67 KB Download (87): Rose::Object Download

Added: June 22, 2010 | Visits: 1.257

Rose::HTML::Form Rose::HTML::Form is a HTML form base class. SYNOPSIS package PersonForm; use Rose::HTML::Form; our @ISA = qw(Rose::HTML::Form); use Person; sub build_form { my($self) = shift; $self->add_fields ( name => { type => text, size => 25, required => 1 }, email => { type => email, size...


Platforms: *nix

License: Freeware Size: 102.4 KB Download (91): Rose::HTML::Form Download

Added: August 05, 2010 | Visits: 1.096

XML::SAX::Base XML::SAX::Base is a base Perl class with SAX Drivers and Filters. SYNOPSIS package MyFilter; use XML::SAX::Base; @ISA = (XML::SAX::Base); This module has a very simple task - to be a base class for PerlSAX drivers and filters. Its default behaviour is to pass the input directly to the...


Platforms: *nix

License: Freeware Size: 20.48 KB Download (100): XML::SAX::Base Download

Added: November 27, 2010 | Visits: 857

Text::Query::BuildSQL Text::Query::BuildSQL is a base class for SQL query builders. SYNOPSIS package Text::Query::BuildSQLsqldb; use Text::Query::BuildSQL; use vars qw(@ISA); @ISA = qw(Text::Query::BuildSQL); Defines all the build_* functions to build a syntax tree. The tree nodes are [ operator scope...


Platforms: *nix

License: Freeware Size: 19.46 KB Download (91): Text::Query::BuildSQL Download

Added: March 08, 2010 | Visits: 1.191

Hardware lister lshw (Hardware Lister) is a small tool to provide detailed information on the hardware configuration of the machine. Hardware lister can report exact memory configuration, firmware version, CPU version and speed, cache configuration, bus speed, mainboard configuration, etc. On DMI-capable x86...


Platforms: *nix

License: Freeware Size: 1.1 MB Download (122): Hardware lister Download

Added: January 26, 2010 | Visits: 1.524

Mach64 video4linux2 Mach64 video4linux2 is a video4linux device driver for older Mach64 TV tuner cards. Mach64 video4linux2 is very alpha, and has only been tested with a few cards: a 4 MB All-in-wonder capture card, a 2 MB ATI Rage II+ with an ISA add-on TV card, and an ATI Rage Pro video card with an ISA add-on...


Platforms: *nix

License: Freeware Size: 44.03 KB Download (143): Mach64 video4linux2 Download

< 1 2 3 4 5 >