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

Borrowing Base Spreadsheet freeware
Filter: All | Freeware | Demo
 

Borrowing Base Spreadsheet

< 1 2 3 4 5 > 
Added: September 21, 2010 | Visits: 840

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: 1.099

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

CGI::Application::Plugin::Authentication::Store CGI::Application::Plugin::Authentication::Store is a base module for building storage classes for the CGI::Application::Plugin::Authentication plugin. SYNOPSIS package CGI::Application::Plugin::Authentication::Store::MyStore; use base qw(CGI::Application::Plugin::Authentication::Store);...


Platforms: *nix

License: Freeware Size: 47.1 KB Download (100): CGI::Application::Plugin::Authentication::Store Download

Added: September 22, 2010 | Visits: 1.026

Finance::Quote::Yahoo::Base Finance::Quote::Yahoo::Base is a Perl module with common functions for fetching Yahoo info. SYNOPSIS Base functions for use by the Finance::Quote::Yahoo::* modules. This module is not called directly, rather it provides a set of base functions which other Yahoo-related modules can use. If...


Platforms: *nix

License: Freeware Size: 92.16 KB Download (99): Finance::Quote::Yahoo::Base Download

Added: June 21, 2010 | Visits: 968

xDash::Archive::Pg xDash::Archive::Pg is a base class for Archive. SYNOPSIS package Archive; use base xDash::Archive::Pg; # Set up your own database access parameters sub SetParameters { shift->SUPER::SetDatabaseConnection( name => xdash, user => , password => ) } USAGE The module is developed in the...


Platforms: *nix

License: Freeware Size: 62.46 KB Download (98): xDash::Archive::Pg Download

Added: August 19, 2010 | Visits: 1.015

Image::Button Image::Button is a base class for building PNG buttons using GD. SYNOPSIS use Image::Button::Rect; my $b1 = new Image::Button::Rect(text => text b1, font => newsgotn.ttf, fontsize => 20, file => b1.png); # $b2 is like $b1, but with different text and going to another file my $b2 =...


Platforms: *nix

License: Freeware Size: 8.19 KB Download (97): Image::Button Download

Added: February 27, 2010 | Visits: 901

Games::AlphaBeta::Position Games::AlphaBeta::Position is a base Position class for use with Games::AlphaBeta. SYNOPSIS package My::GamePos; use base qw(Games::AlphaBeta::Position); sub apply { ... } sub endpos { ... } # optional sub evaluate { ... } sub findmoves { ... } package main; my $pos =...


Platforms: *nix

License: Freeware Size: 12.29 KB Download (97): Games::AlphaBeta::Position Download

Added: July 04, 2010 | Visits: 957

Games::LMSolve::Base Games::LMSolve::Base is a base class for puzzle solvers. SYNOPSIS package MyPuzzle::Solver; use Games::LMSolve::Base; @ISA = qw(Games::LMSolve::Base); # Override these methods: sub input_board { ... } sub pack_state { ... } sub unpack_state { ... } sub display_state { ... } sub...


Platforms: *nix

License: Freeware Size: 21.5 KB Download (96): Games::LMSolve::Base Download

Added: November 20, 2010 | Visits: 1.066

Math::BaseArith Math::BaseArith is a Perl extension for mixed-base number representation (like APL encode/decode). SYNOPSIS use Math::BaseArith; encode( value, base_list ); decode( representation_list, base_list ); The inspiration for this module is a pair of functions in the APL programming language...


Platforms: *nix

License: Freeware Size: 6.14 KB Download (96): Math::BaseArith Download

Added: February 15, 2010 | Visits: 850

Class::StrongSingleton Class::StrongSingleton is a stronger and more secure Singleton base class. SYNOPSIS package My::Singleton::Class; use base qw(Class::StrongSingleton); sub new { my ($class, %my_params) = @_; # create our object instance my $instance = { %my_params }; bless($instance, $class); # and...


Platforms: *nix

License: Freeware Size: 6.14 KB Download (96): Class::StrongSingleton Download

Added: July 04, 2010 | Visits: 945

Games::Sequential::Position Games::Sequential::Position is a base Position class for use with Games::Sequential. SYNOPSIS package My::GamePos; use base Games::Sequential::Position; sub init { ... } # setup initial state sub apply { ... } package main; my $pos = My::GamePos->new; my $game =...


Platforms: *nix

License: Freeware Size: 12.29 KB Download (96): Games::Sequential::Position Download

Added: January 18, 2010 | Visits: 1.098

imgSeekWeb imgSeekWeb is a content base image search engine for your web-server. imgSeekWeb is based on imgSeek project. The final goal is a distributed server side content-based image search engine..


Platforms: *nix

License: Freeware Size: 47.1 KB Download (95): imgSeekWeb Download

Added: June 17, 2010 | Visits: 972

XML::DOM::XML_Base XML::DOM::XML_Base Perl module can apply xml:base to attribute values. SYNOPSIS use XML::DOM::XML_Base; my $parser = XML::DOM::Parser->new(); my $xml = qq( ); # build the DOM my $dom = $parser->parse( $xml ); # get some elements my $endo = $dom->getElementsByTagName(...


Platforms: *nix

License: Freeware Size: 3.07 KB Download (95): XML::DOM::XML_Base Download

Added: September 10, 2010 | Visits: 859

Volity::Game Volity::Game is a base class for Volity game modules. SYNOPSIS See Volity::Game::TicTacToe and its source code for a simple but full-featured example. This class provides a framework for writing Volity game modules in Perl. A Volity game module will be a subclass of this class. To turn...


Platforms: *nix

License: Freeware Size: 102.4 KB Download (95): Volity::Game Download

Added: February 07, 2010 | Visits: 1.079

Test::Unit::TestCase Test::Unit::TestCase is a unit testing framework base class. SYNOPSIS package FooBar; use base qw(Test::Unit::TestCase); sub new { my $self = shift()->SUPER::new(@_); # your state for fixture here return $self; } sub set_up { # provide fixture } sub tear_down { # clean up after...


Platforms: *nix

License: Freeware Size: 45.06 KB Download (94): Test::Unit::TestCase Download

Added: January 17, 2010 | Visits: 1.002

AI::NNFlex AI::NNFlex is a base Perl class for implementing neural networks. SYNOPSIS use AI::NNFlex; my $network = AI::NNFlex->new(config parameter=>value); $network->add_layer( nodes=>x, activationfunction=>function); $network->init(); $network->lesion( nodes=>PROBABILITY,...


Platforms: *nix

License: Freeware Size: 33.79 KB Download (94): AI::NNFlex Download

Added: January 23, 2010 | Visits: 985

Gtk2::Ex::MindMapView::Content Gtk2::Ex::MindMapView::Content is a base class for content objects. SYNOPSIS use base Gtk2::Ex::MindMapView::Content; This module is internal to Gtk2::Ex::MindMapView. It is the base class for objects that show content and offers several classes that are to be overidden. INTERFACE...


Platforms: *nix

License: Freeware Size: 50.18 KB Download (94): Gtk2::Ex::MindMapView::Content Download

Added: November 08, 2010 | Visits: 565

PObject PObject is a base class for perl objects, takes the irritation out of creating properties for objects. Allows quick creation of attributes and easy inheritance. I have stopped developing this class in favor of Class::Accessor, please use that instead. To install, the good old method: perl...


Platforms: *nix

License: Freeware Size: 4.1 KB Download (94): PObject Download

Added: October 26, 2010 | Visits: 1.002

dtRdr::GUI::Wx::NoteEditorBase dtRdr::GUI::Wx::NoteEditorBase is a base class for the NoteEditor. SYNOPSIS init $editor->init; set_fields $editor->set_fields(title => foo, body => bar); _update_title $self->_update_title; set_saver Set a subref (which takes no arguments) as the handler for the Save action....


Platforms: *nix

License: Freeware Size: 2.8 MB Download (93): dtRdr::GUI::Wx::NoteEditorBase Download

Added: January 07, 2010 | Visits: 720

Apache2::Pod Apache2::Pod is a Perl base class for converting Pod files to prettier forms. SYNOPSIS The Apache2::Pod::* are mod_perl handlers to easily convert Pod to HTML or other forms. You can also emulate perldoc. FUNCTIONS No functions are exported. I dont want to dink around with Exporter in...


Platforms: *nix

License: Freeware Size: 6.14 KB Download (93): Apache2::Pod Download

< 1 2 3 4 5 >