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

Bve Constructor freeware
Filter: All | Freeware | Demo
 

Bve Constructor

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

UML::Sequence UML::Sequence is a Perl module to render UML sequence diagrams, often by running the code. SYNOPSIS use UML::Sequence; my $tree = UML::Sequence->new(@methods, @outline, &parse_method); print $tree->build_xml_sequence(Title); To use this package, or see how to use it, see genericseq.pl... Platforms: *nix

License: Freeware Size: 122.88 KB Download (159): UML::Sequence Download

Added: March 03, 2010 | Visits: 1.362

Geo::Inverse Geo::Inverse is a Perl module to calculate geographic distance from a lat & lon pair. SYNOPSIS use Geo::Inverse; my $obj = Geo::Inverse->new(); # default "WGS84" my ($lat1,$lon1,$lat2,$lon2)=(38.87, -77.05, 38.95, -77.23); my ($faz, $baz, $dist)=$obj->inverse($lat1,$lon1,$lat2,$lon2);... Platforms: *nix

License: Freeware Size: 4.1 KB Download (152): Geo::Inverse Download

Added: May 18, 2010 | Visits: 1.670

File::Format::RIFF File::Format::RIFF is a Perl module to Resource Interchange File Format/RIFF files. SYNOPSIS use File::Format::RIFF; open( IN, file ) or die "Could not open file: $!"; my ( $riff1 ) = File::Format::RIFF->read( *IN ); close( IN ); $riff1->dump; my ( $riff2 ) = new File::Format::RIFF(... Platforms: *nix

License: Freeware Size: 9.22 KB Download (151): File::Format::RIFF Download

Added: April 23, 2010 | Visits: 1.183

Template::Magic Template::Magic is a Perl module for magic merger of runtime values with templates. SYNOPSIS Just add these 2 magic lines to your code... use Template::Magic; Template::Magic->new->print( /path/to/template ); to have all your variable and subroutines merged with the template file, or set... Platforms: *nix

License: Freeware Size: 46.08 KB Download (149): Template::Magic Download

Added: April 15, 2010 | Visits: 1.210

TestGen4J TestGen4J automatically generates JUnit test cases from your own Java class files or source files. Its primary focus is to exercise boundary value testing of the arguments passed to the method. It uses rules, written in a user-configurable XML file, that define boundary conditions for the data... Platforms: *nix

License: Freeware Size: 849.92 KB Download (144): TestGen4J Download

Added: September 05, 2010 | Visits: 1.280

NetPacket::UDP NetPacket::UDP is a Perl module to assemble and disassemble UDP (User Datagram Protocol) packets. SYNOPSIS use NetPacket::UDP; $udp_obj = NetPacket::UDP->decode($raw_pkt); $udp_pkt = NetPacket::UDP->encode($ip_obj); $udp_data = NetPacket::UDP::strip($raw_pkt); NetPacket::UDP provides a... Platforms: *nix

License: Freeware Size: 11.26 KB Download (144): NetPacket::UDP Download

Released: September 19, 2012  |  Added: October 29, 2012 | Visits: 1.130

Free Icon Maker Free Icon Maker allows you to edit icons for Windows 8, 7, Vista, XP, 2003, 2000, ME, 98, 95, NT, iOS, Linux, Android, web and other. This Free Icon Maker supports ICO, PNG, XPM, XBM and ICPR icon formats. Using this program you can create and edit icons in either standard or custom sizes, with... Platforms: Windows

License: Freeware Size: 5.63 MB Download (140): Free Icon Maker Download

Added: July 10, 2010 | Visits: 1.798

GD::Graph::Thermometer GD::Graph::Thermometer is a Perl module to generate progress graph on the fly. SYNOPSIS use GD::Graph::Thermometer; my $result = GD::Graph::Thermometer->new({ image_path => /path/to/image.png, type => png, goal => 80000, current => 20000, title => Funding the League for the Year ($),... Platforms: *nix

License: Freeware Size: 7.17 KB Download (138): GD::Graph::Thermometer Download

Added: October 13, 2010 | Visits: 1.074

Authen::Captcha Authen::Captcha is a Perl extension for creating captchas to verify the human element in transactions. SYNOPSIS use Authen::Captcha; # create a new object my $captcha = Authen::Captcha->new(); # set the data_folder. contains flatfile db to maintain state... Platforms: *nix

License: Freeware Size: 99.33 KB Download (137): Authen::Captcha Download

Released: October 29, 2012  |  Added: November 26, 2012 | Visits: 2.258

Easy Query Builder EQB allows users to extract important information such as customer data, sales and virtually any other types of records. The solution does not require any extensive knowledge of SQL syntax and the inner workings of the databases, but it is also very useful for those learning SQL syntax, since you... Platforms: Windows

License: Freeware Size: 1.47 MB Download (137): Easy Query Builder Download

Added: January 01, 2010 | Visits: 925

Compass::Bearing Compass::Bearing is a Perl module to convert angle to text bearing (aka heading). SYNOPSIS use Compass::Bearing; my $obj = Compass::Bearing->new(); print "Bearing: $_ deg => ", $obj->bearing($_), "n" foreach (12,45,78,133); print "Compass: ", join(":", $obj->data),"n"; CONSTRUCTOR new... Platforms: *nix

License: Freeware Size: 20.48 KB Download (136): Compass::Bearing Download

Added: January 18, 2010 | Visits: 1.978

Games::SGF::Tournament Games::SGF::Tournament is a Perl module for tournament statistics generator. SYNOPSIS use CGI qw / :html /; use Games::SGF::Tournament; my $t = Games::SGF::Tournament->new(); print html(body($t->score())); Smart Go Format (SGF) is a file format used to store game records of two player... Platforms: *nix

License: Freeware Size: 12.29 KB Download (135): Games::SGF::Tournament Download

Added: August 11, 2010 | Visits: 1.208

Math::Matrix Math::Matrix can multiply and invert Matrices. The following methods are available: new Constructor arguments are a list of references to arrays of the same length. The arrays are copied. The method returns undef in case of error. $a = new Math::Matrix ([rand,rand,rand],... Platforms: *nix

License: Freeware Size: 6.14 KB Download (134): Math::Matrix Download

Added: March 20, 2010 | Visits: 1.089

GD::Barcode SYNOPSIS ex. CGI use GD::Barcode::UPCE; binmode(STDOUT); print "Content-Type: image/pngnn"; print GD::Barcode->new(EAN13, 123456789012)->plot->png; with Error Check my $oGdBar = GD::Barcode->new(EAN13, 12345678901); die $GD::Barcode::errStr unless($oGdBar); #Invalid Length... Platforms: *nix

License: Freeware Size: 890.88 KB Download (132): GD::Barcode Download

Added: November 14, 2010 | Visits: 1.237

Simulation::Sensitivity Simulation::Sensitivity is a general-purpose sensitivity analysis tool for user-supplied calculations and parameters. SYNOPSIS use Simulation::Sensitivity; $sim = Simulation::Sensitiviy->new( calculation => sub { my $p = shift; return $p->{alpha} + $p->{beta} } parameters => { alpha =>... Platforms: *nix

License: Freeware Size: 14.34 KB Download (130): Simulation::Sensitivity Download

Added: June 02, 2010 | Visits: 1.370

NetPacket::TCP NetPacket::TCP is a Perl module to assemble and disassemble TCP (Transmission Control Protocol) packets. SYNOPSIS use NetPacket::TCP; $tcp_obj = NetPacket::TCP->decode($raw_pkt); $tcp_pkt = NetPacket::TCP->encode($ip_pkt); $tcp_data = NetPacket::TCP::strip($raw_pkt); NetPacket::TCP... Platforms: *nix

License: Freeware Size: 11.26 KB Download (130): NetPacket::TCP Download

Released: July 13, 2010  |  Added: July 15, 2010 | Visits: 1.030

DreamCoder for PostgreSQL Freeware DreamCoder for PostgreSQL is a free powerful Integrated Development Environment (IDE) for PostgreSQL Databases. With the intuitive DreamCoder's GUI increase your code quality and reduce the development process time. DreamCoder for PostgreSQL you will easily be able to build and execute... Platforms: Windows

License: Freeware Size: 9.7 MB Download (129): DreamCoder for PostgreSQL Freeware Download

Added: August 17, 2008 | Visits: 1.353

Sothink DVD Ripper v1.3 Build Customize the "PlacesBar" that appears on the left side of the Open and Save dialogs in most applications. The Places Bar contains the frequently used folders as determined by the system. Place Bar Constructor allows you to set the values of the Places Bar yourself and choose which folders are... Platforms: Windows

License: Freeware Size: 430 KB Download (127): Sothink DVD Ripper v1.3 Build Download

Added: November 26, 2010 | Visits: 1.260

Filesys::MakeISO::Driver::Mkisofs Filesys::MakeISO::Driver::Mkisofs is a Perl module to make iso images with mkisofs. SYNOPSIS use Filesys::MakeISO; my $iso = Filesys::MakeISO->new( class => Filesys::MakeISO::Driver::Mkisofs, mkisofs_bin => /usr/bin/mkisofs, ); $iso->image(image.iso); $iso->dir(/path/to/burn);... Platforms: *nix

License: Freeware Size: 10.24 KB Download (126): Filesys::MakeISO::Driver::Mkisofs Download

Added: September 02, 2010 | Visits: 2.443

Simple PHP Calendar Simple PHP Calendar is a a simple, extensible PHP calendar class. The project focuses exclusively on generating an HTML representation for a given month. It is meant to be easily extended for use in other applications, such as input widgets for forms, or full event calendaring applications. Its... Platforms: *nix

License: Freeware Size: 2.05 KB Download (124): Simple PHP Calendar Download

< 1 2 3 4 5 >