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

Borrowing Base software
Filter: All | Freeware | Demo
 

Borrowing Base

< 1 2 3 4 5 > 
Added: August 05, 2010 | Visits: 1.101

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.369

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

Released: September 10, 2012  |  Added: September 30, 2012 | Visits: 821

Math Expression Generator 'Math Expression Generator' is an application which generates math expressions taking into considerations supplied parameters. It uses custom defined parameters, base elements and operations which you can freely define to generate the mathematical expressions. The parameters can be like...


Platforms: Windows

License: Shareware Cost: $9.50 USD Size: 2.51 MB Download (100): Math Expression Generator Download

Added: September 22, 2010 | Visits: 1.028

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.017

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.067

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.100

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

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

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.003

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

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

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: January 25, 2010 | Visits: 593

MiniFonts Base! MiniFonts Base! is a small, fast database that can be used to store registration codes, other software serial numbers, passwords and even credit card and bank details - because it is highly secure. It uses state of the art encryption technology to keep such details from prying eyes yet remains...


Platforms: Mac

License: Shareware Cost: $0.00 USD Download (94): MiniFonts Base! Download

Released: August 30, 2012  |  Added: September 24, 2012 | Visits: 780

Batch File Encoding Converter Convert 1000s of files between more than 100 text encodings and binary formats: Unicode, ANSI, Latin, Cyrillic, ASCII, UTF8, ISO, OEM, Mac, Base-64, Bin-Hex, Quoted-Printable. Save raw bytes from files as hex, dec, or bin ASCII byte code representations, and convert them back to bytes. Includes...


Platforms: Windows

License: Shareware Cost: $39.00 USD Size: 5.27 MB Download (94): Batch File Encoding Converter Download

< 1 2 3 4 5 >