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

Florida Isa freeware
Filter: All | Freeware | Demo
 

Florida Isa

< 1 2 3 4 5 > 
Added: October 11, 2010 | Visits: 602

File::AnySpec File::AnySpec is a Perl module to perform operations on foreign (remote) file names. SYNOPSIS # Subroutine Interface # use File::AnySpec qw(fspec2fspec pm2fspec os2fspec fspec2os fspec_glob fspec2pm); $file = fspec2fspec($from_fspec, $to_fspec $fspec_file, [$nofile]) $os_file =...



Platforms: *nix

License: Freeware Size: 44.03 KB Download (93): File::AnySpec Download

Added: November 27, 2010 | Visits: 859

GraphViz::ISA::Multi GraphViz::ISA::Multi is a display ISA relations between modules. SYNOPSIS use GraphViz::ISA::Multi; my $gnew= GraphViz::ISA::Multi->new(ignore => [ Exporter ]); $gnew->add("Curses::UI::TextViewer" ); $gnew->add("Curses::UI::Listbox" ); print $gnew->as_png(); GraphViz::ISA::Multi...





Platforms: *nix

License: Freeware Size: 11.26 KB Download (92): GraphViz::ISA::Multi Download

Added: April 21, 2010 | Visits: 983

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: November 27, 2010 | Visits: 859

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 (92): Text::Query::BuildSQL Download

Added: June 27, 2010 | Visits: 623

Class::Classless Class::Classless is a Perl framework for classless OOP. SYNOPSIS use strict; use Class::Classless; my $ob1 = $Class::Classless::ROOT->clone; $ob1->{NAME} = Ob1; $ob1->{stuff} = 123; $ob1->{Thing} = 789; my $ob2 = $ob1->clone; $ob2->{NAME} = Ob2; printf "ob1 stuff: <%s>n",...


Platforms: *nix

License: Freeware Size: 23.55 KB Download (92): Class::Classless Download

Added: November 13, 2010 | Visits: 922

Exception::Class Exception::Class is a Perl module that allows you to declare real exception classes in Perl. SYNOPSIS use Exception::Class ( MyException, AnotherException => { isa => MyException }, YetAnotherException => { isa => AnotherException, description => These exceptions are related to IPC },...


Platforms: *nix

License: Freeware Size: 16.38 KB Download (91): Exception::Class Download

Added: July 17, 2010 | Visits: 911

HTML::WikiConverter::Dialects HTML::WikiConverter::Dialects is a Perl module which contains a tutorial on how to add a dialect. SYNOPSIS # In your dialect module: package HTML::WikiConverter::MySlimWiki; use HTML::WikiConverter -dialect; rule b => { start => **, end => ** }; rule i => { start => //, end => // };...


Platforms: *nix

License: Freeware Size: 34.82 KB Download (91): HTML::WikiConverter::Dialects Download

Added: March 05, 2010 | Visits: 843

Persistent::DBI Persistent::DBI is an Abstract Persistent Class implemented using a DBI Data Source. SYNOPSIS ### we are a subclass of ... ### use Persistent::DBI; @ISA = qw(Persistent::DBI); ABSTRACT This is an abstract class used by the Persistent framework of classes to implement persistence using...


Platforms: *nix

License: Freeware Size: 10.24 KB Download (91): Persistent::DBI Download

Added: June 22, 2010 | Visits: 1.260

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: February 17, 2010 | Visits: 929

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: January 03, 2010 | Visits: 851

TiVo::HME::Application TiVo::HME::Application is a Perl implementation of TiVos HME protocol. SYNOPSIS use TiVo::HME::Application; our @ISA(TiVo::HME::Application); sub init { my($self, $context) = @_; $self->get_root_view->visible(1); my $mpg = $T_RESOURCE->image_file(examples/myloop.jpg);...


Platforms: *nix

License: Freeware Size: 61.44 KB Download (90): TiVo::HME::Application Download

Added: March 09, 2010 | Visits: 796

SystemC::Netlist::Net SystemC::Netlist::Net is a Perl module which provides Net for a SystemC Module. This is a superclass of Verilog::Netlist::Net, derived for a SystemC netlist pin. Parsing example: @example package Trialparser; @@ISA = qw(SystemC::Parser); sub module @{ my $self = shift; my $module =...


Platforms: *nix

License: Freeware Size: 102.4 KB Download (90): SystemC::Netlist::Net Download

Added: April 27, 2010 | Visits: 908

Games::Object Games::Object is a Perl module to provide a base class for game objects. SYNOPSIS package MyGameObject; use Games::Object; use vars qw(@ISA); @ISA = qw(Games::Object); sub new { # Create object my $proto = shift; my $class = ref($proto) || $proto; my $self = $class->SUPER::new(@_);...


Platforms: *nix

License: Freeware Size: 84.99 KB Download (89): Games::Object Download

Added: March 21, 2010 | Visits: 957

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: September 23, 2010 | Visits: 684

MicroTiger MicroTiger project is a graphical microcode simulator with a reconfigurable datapath. The datapath editor window, the main application window, allows for datapath creation and simulation. In addition, several other dialog windows are provided to aid in creating the datapath. The microprogram...


Platforms: *nix

License: Freeware Size: 563.2 KB Download (88): MicroTiger Download

Added: April 15, 2010 | Visits: 841

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: March 16, 2010 | Visits: 959

Persistent::Base Persistent::Base is an Abstract Persistent Base Class. SYNOPSIS ### we are a subclass of ... ### use Persistent::Base; @ISA = qw(Persistent::Base); ABSTRACT This is an abstract class used by the Persistent framework of classes to implement persistence with various types of data stores....


Platforms: *nix

License: Freeware Size: 38.91 KB Download (88): Persistent::Base Download

Added: October 18, 2010 | Visits: 891

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 (88): Rose::Object Download

Added: September 15, 2010 | Visits: 1.031

Plucene::Analysis::PorterStemFilter Plucene::Analysis::PorterStemFilter - Porter stemming on the token stream. SYNOPSIS # isa Plucene::Analysis:::TokenFilter my $token = $porter_stem_filter->next; This class transforms the token stream as per the Porter stemming algorithm. Note: the input to the stemming filter must...


Platforms: *nix

License: Freeware Size: 327.68 KB Download (88): Plucene::Analysis::PorterStemFilter Download

Added: February 05, 2010 | Visits: 1.141

File::Revision File::Revision is a Perl module to return a name of non-existing backup file with a revision id. SYNOPSIS ####### # Subroutine interface # use File::Revision qw(new_revision num2revision parse_options revision2num revision_file rotate); ($file_name, $next_revsion) = new_revision($file,...


Platforms: *nix

License: Freeware Size: 89.09 KB Download (88): File::Revision Download

< 1 2 3 4 5 >