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

Copy Bfile Data freeware
Filter: All | Freeware | Demo
 

Copy Bfile Data

< 1 2 3 4 5 
Added: March 21, 2010 | Visits: 1.132

Erwin Data Structures Erwin Data Structures is a library that is meant to be the ultimate data structure library for mixed usage of C and C++. Arbitrary key and value types are implemented by template files that dont use C++ templates, but are instantiated by a Perl script. This way, mixed usage in C and C++ is...



Platforms: *nix

License: Freeware Size: 686.08 KB Download (97): Erwin Data Structures Download

Added: September 13, 2010 | Visits: 881

Data::Faker::DateTime Data::Faker::DateTime is a Data::Faker plugin. DATA PROVIDERS unixtime Return a unix time (seconds since the epoch) for a random time between the epoch and now. date Return a random date as a string, using a random date format (see date_format). time Return a random time as a...





Platforms: *nix

License: Freeware Size: 20.48 KB Download (101): Data::Faker::DateTime Download

Added: January 02, 2010 | Visits: 1.081

Data::Faker::StreetAddress Data::Faker::StreetAddress is a Data::Faker plugin. DATA PROVIDERS us_zip_code Return a random zip or zip+4 zip code in the US zip code format. Note that this is not necessarily a valid zip code, just a 5 or 9 digit number in the correct format. us_state Return a random US state name....


Platforms: *nix

License: Freeware Size: 20.48 KB Download (99): Data::Faker::StreetAddress Download

Added: July 03, 2010 | Visits: 681

Data::BenchmarkResults Data::BenchmarkResults is a Perl extension for averaging and comparing multiple benchmark runs. SYNOPSIS use Data::BenchmarkResults; $conditionA_results = new Data::BenchmarkResults; $conditionB_results = new Data::BenchmarkResults; #Load test result runs for the first condition...


Platforms: *nix

License: Freeware Size: 9.22 KB Download (86): Data::BenchmarkResults Download

Added: May 16, 2010 | Visits: 1.036

Data::SpreadPagination Data::SpreadPagination is a Perl module for page numbering and spread pagination. SYNOPSIS use Data::SpreadPagination; my $pageInfo = Data::SpreadPagination->new({ totalEntries => $totalEntries, entriesPerPage => $entriesPerPage, # Optional, will use defaults otherwise. # only 1 of...


Platforms: *nix

License: Freeware Size: 7.17 KB Download (91): Data::SpreadPagination Download

Added: August 23, 2010 | Visits: 1.261

Data::ICal::Entry::Alarm::Email Data::ICal::Entry::Alarm::Email is a Perl module that represents an emailed alarm in an iCalendar file. SYNOPSIS my $valarm = Data::ICal::Entry::Alarm::Audio->new(); $valarm->add_properties( attach => [ "basic:ftp://host.com/pub/sounds/bell-01.aud", { fmttype => "audio/basic" } ], #...


Platforms: *nix

License: Freeware Size: 102.4 KB Download (95): Data::ICal::Entry::Alarm::Email Download

Added: August 09, 2010 | Visits: 1.334

GraphViz::Data::Structure GraphViz::Data::Structure can visualise data structures. SYNOPSIS use GraphViz::Data::Structure; my $gvds = GraphViz:Data::Structure->new($data_structure); print $gvds->graph()->as_png; This module makes it easy to visualise data structures, even recursive or circular ones. It is...


Platforms: *nix

License: Freeware Size: 40.96 KB Download (120): GraphViz::Data::Structure Download

Added: February 24, 2010 | Visits: 1.051

Data::Report Data::Report provides a framework for flexible reporting. Data::Report is a flexible, plugin-driven reporting framework. It makes it easy to define reports that can be produced in text, HTML and CSV. Textual ornaments like extra empty lines, dashed lines, and cell lines can be added in a way...


Platforms: *nix

License: Freeware Size: 16.38 KB Download (97): Data::Report Download

Added: November 21, 2010 | Visits: 991

Data::Walker Data::Walker is a tool for navigating through Perl data structures. SYNOPSIS Without any explicit objects: use Data::Walker; Data::Walker->cli( $data_structure ); Object-style invocation: use Data::Walker; my $w = new Data::Walker; $w->walk( $data_structure ); $w->ls("-al");...


Platforms: *nix

License: Freeware Size: 20.48 KB Download (92): Data::Walker Download

Added: August 02, 2010 | Visits: 1.122

The Data Mine The Data Mine is a search engine designed to give users an unusually powerful interface. It is designed around human-computer intelligent interaction (making the computer a tool so humans can use their intelligence). The project divides the screen into two halves: one lets you find all the...


Platforms: *nix

License: Freeware Size: 71.68 KB Download (95): The Data Mine Download

Added: May 07, 2010 | Visits: 1.485

Yukatan data model Yukatan data model project is the schema definition of the Yukatan webmail database. The PostgreSQL database structures defined in this file can be used as a backend store of an email message handling application. The database should be created with the "UNICODE" encoding to properly support...


Platforms: *nix

License: Freeware Size: 35.84 KB Download (100): Yukatan data model Download

Added: July 01, 2010 | Visits: 1.328

Copy as HTML Link Copy as HTML Link is a Firefox extension that creates an HTML link to the current page using the selected text and copies it (into the clipboard) for pasting into other applications..


Platforms: *nix

License: Freeware Size: 8.19 KB Download (96): Copy as HTML Link Download

Added: February 01, 2010 | Visits: 1.002

Data::DPath::Builder Data::DPath::Builder is a SAX handler for building an XPath tree. SYNOPSIS use AnySAXParser; use Data::DPath::Builder; $builder = Data::DPath::Builder->new(); $parser = AnySAXParser->new( Handler => $builder ); $root_node = $parser->parse( Source => [SOURCE] ); Data::DPath::Builder is...


Platforms: *nix

License: Freeware Size: 32.77 KB Download (95): Data::DPath::Builder Download

Added: June 02, 2010 | Visits: 580

Data::TreeDumper Data::TreeDumper is an improved replacement for Data::Dumper. Powerful filtering capability. SYNOPSIS use Data::TreeDumper ; my $sub = sub {} ; my $s = { A => { a => { } , bbbbbb => $sub , c123 => $sub , d => $sub } , C => { b => { a => { a => { } , b => sub { } ,...


Platforms: *nix

License: Freeware Size: 26.62 KB Download (88): Data::TreeDumper Download

Added: August 13, 2010 | Visits: 923

Data::Page Data::Page is a Perl module that helps when paging through sets of results. SYNOPSIS use Data::Page; my $page = Data::Page->new(); $page->total_entries($total_entries); $page->entries_per_page($entries_per_page); $page->current_page($current_page); print " First page: ",...


Platforms: *nix

License: Freeware Size: 6.14 KB Download (92): Data::Page Download

Added: July 25, 2010 | Visits: 990

The Data Language A free IDL (Interactive Data Language) compatible incremental compiler (ie. runs IDL programs). IDL is a registered trademark of Research Systems Inc. Full syntax compatibility with IDL 6.0 ALL IDL language elements are supported, including: - Objects, - Pointers, - Structs, - Arrays, -...


Platforms: *nix

License: Freeware Size: 839.68 KB Download (96): The Data Language Download

Added: November 26, 2010 | Visits: 763

Data::Inherited Data::Inherited is a Perl module with hierarchy-wide accumulation of list and hash results. SYNOPSIS package Foo; use base Data::Inherited; use constant PROPERTIES => (qw/name address/); package Bar; use base Foo; use constant PROPERTIES => (qw/age/); package main; my $bar =...


Platforms: *nix

License: Freeware Size: 12.29 KB Download (102): Data::Inherited Download

Added: November 25, 2010 | Visits: 1.026

SOAP::Data SOAP::Data is a Perl class that provides the means by which to explicitly manipulate and control all aspects of the way in which Perl data gets expressed as SOAP data entities. The SOAP::Data class provides the means by which to explicitly manipulate and control all aspects of the way in which...


Platforms: *nix

License: Freeware Size: 235.52 KB Download (100): SOAP::Data Download

Added: October 12, 2010 | Visits: 1.396

Data::Password::Manager Data::Password::Manager is a Perl module to generate, check, manage crypt - des passwords. SYNOPSIS use Data::Password::Manager qw( pw_gen pw_valid pw_obscure pw_clean pw_get ); $password = pw_gen($cleartext); $ok = pw_valid($cleartxt,$password); $clean_text = pw_clean($dirty_text);...


Platforms: *nix

License: Freeware Size: 13.31 KB Download (99): Data::Password::Manager Download

Added: June 01, 2010 | Visits: 1.332

Molphin - DVD Copy Molphin - DVD Copy makes it easy to backup your DVDs from your home TV-DVD-Recorder to your PC.. Molphin - DVD Copy KDE-Apps.org Community Portal for KDE Applications Software Office Multimedia Graphic Network Printing Education Games Development Administration Scientific Security Utilities...


Platforms: *nix

License: Freeware Size: 25.6 KB Download (142): Molphin - DVD Copy Download

< 1 2 3 4 5