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

Printf freeware
Filter: All | Freeware | Demo
 

Printf

< 1 2 3 4 5 > 
Added: July 20, 2010 | Visits: 1.088

MPEG::Info MPEG::Info is a basic MPEG bitstream attribute parser. SYNOPSIS use strict; use MPEG::Info; my $video = MPEG::Info->new( -file => $filename ); $video->probe(); print $file->type; ## MPEG ## Audio information print $file->acodec; ## MPEG Layer 1/2 print $file->acodecraw; ## 80 print... Platforms: *nix

License: Freeware Size: 327.68 KB Download (113): MPEG::Info Download

Added: September 18, 2010 | Visits: 1.493

Video::Info::MPEG Video::Info::MPEG is a basic MPEG bitstream attribute parser. SYNOPSIS use strict; use Video::Info::MPEG; my $video = Video::Info::MPEG->new( -file => $filename ); $video->probe(); print $file->type; ## MPEG ## Audio information print $file->acodec; ## MPEG Layer 1/2 print... Platforms: *nix

License: Freeware Size: 634.88 KB Download (99): Video::Info::MPEG Download

Added: July 15, 2010 | Visits: 1.185

WAVE Utilities WAVE Utilities package contains three programs for dealing with WAVE format audio files. SimplifyWave The standard permits WAVE format audio files to contain a variety of chunks, such as playlists, cue lists, and padding. A fair amount of software, however, is unable to parse such complex... Platforms: *nix

License: Freeware Size: 78.85 KB Download (95): WAVE Utilities Download

Added: April 02, 2010 | Visits: 1.081

File::DirCompare File::DirCompare is a Perl module to compare two directories using callbacks. SYNOPSIS use File::DirCompare; # Simple diff -r --brief replacement use File::Basename; File::DirCompare->compare($dir1, $dir2, sub { my ($a, $b) = @_; if (! $b) { printf "Only in %s: %sn", dirname($a),... Platforms: *nix

License: Freeware Size: 8.19 KB Download (102): File::DirCompare Download

Added: June 17, 2010 | Visits: 1.017

Inline::CPR Inline::CPR is C Perl Run. Embed Perl in C, ala Inline SYNOPSIS #!/usr/local/bin/cpr int main(void) { printf("Hello World, Im running under Perl version %sn", CPR_eval("use Config; $Config{version}") ); return 0; } Is it C? Is it Perl? Its neither, its both. Its CPR! CPR (C Perl... Platforms: *nix

License: Freeware Size: 7.17 KB Download (102): Inline::CPR Download

Added: January 17, 2010 | Visits: 1.046

Algorithm::BinPack Algorithm::BinPack is a Perl module that can efficiently pack items into bins. SYNOPSIS Algorithm::BinPack efficiently packs items into bins. The bins are given a maximum size, and items are packed in with as little empty space as possible. An example use would be backing up files to CD,... Platforms: *nix

License: Freeware Size: 4.1 KB Download (107): Algorithm::BinPack Download

Added: March 07, 2010 | Visits: 1.468

MP3::Info MP3::Info is a Perl module that can manipulate / fetch info from MP3 audio files. SYNOPSIS #!perl -w use MP3::Info; my $file = Pearls_Before_Swine.mp3; set_mp3tag($file, Pearls Before Swine, q"77s", Sticks and Stones, 1990, q"(c) 1990 77s LTD.", rock & roll); my $tag =... Platforms: *nix

License: Freeware Size: 99.33 KB Download (100): MP3::Info Download

Added: July 07, 2010 | Visits: 1.181

AudioCD::Mac AudioCD::Mac is a MacPerl extension for controlling Audio CDs. SYNOPSIS #!perl -w use AudioCD; use strict; my $cd = new AudioCD; $cd->volume(255); $cd->play(2); print "Now playingn" if $cd->status == CD_PLAY; printf "Volume is %dn", $cd->volume; sleep(5); $cd->pause; print "Now... Platforms: *nix

License: Freeware Size: 14.34 KB Download (91): AudioCD::Mac Download

Added: June 18, 2010 | Visits: 917

DBIx::DBStag DBIx::DBStag is a Perl module for Relational Database to Hierarchical (Stag/XML) Mapping. SYNOPSIS use DBIx::DBStag; my $dbh = DBIx::DBStag->connect("dbi:Pg:dbname=moviedb"); my $sql = q[ SELECT studio.*, movie.*, star.* FROM studio NATURAL JOIN movie NATURAL JOIN movie_to_star... Platforms: *nix

License: Freeware Size: 133.12 KB Download (100): DBIx::DBStag Download

Added: August 11, 2010 | Visits: 830

Data::Stag Data::Stag is a Perl module with structured tags datastructures. SYNOPSIS # PROCEDURAL USAGE use Data::Stag qw(:all); $doc = stag_parse($file); @persons = stag_find($doc, "person"); foreach $p (@persons) { printf "%s, %s phone: %sn", stag_sget($p, "family_name"), stag_sget($p,... Platforms: *nix

License: Freeware Size: 440.32 KB Download (93): Data::Stag Download

Added: June 13, 2010 | Visits: 853

PDL::IO::Misc PDL::IO::Misc is a Perl module with misc IO routines for PDL. rcols() Read ASCII whitespaced cols from a file into piddles and perl arrays (also see "rgrep()"). There are two calling conventions - the old version, where a pattern can be specified after the filename/handle, and the new... Platforms: *nix

License: Freeware Size: 2.1 MB Download (87): PDL::IO::Misc Download

Added: August 27, 2010 | Visits: 1.411

d command The d command runs a command in the background and redirects its output to a file. The output file is annotated with start and end time, the actual command used, cwd, host, etc. You can ask the d command to extract the last command from the output file and run it again, you can ask it to append... Platforms: *nix

License: Freeware Size: 8.19 KB Download (151): d command Download

Added: November 14, 2010 | Visits: 932

AI::NeuralNet::Simple AI::NeuralNet::Simple is a simple learning module for building neural nets. SYNOPSIS use AI::NeuralNet::Simple; my $net = AI::NeuralNet::Simple->new(2,1,2); # teach it logical or for (1 .. 10000) { $net->train([1,1],[0,1]); $net->train([1,0],[0,1]); $net->train([0,1],[0,1]);... Platforms: *nix

License: Freeware Size: 17.41 KB Download (108): AI::NeuralNet::Simple Download

Added: June 20, 2010 | Visits: 1.155

Games::Othello Games::Othello is a Perl extension for modelling a game of Othello. SYNOPSIS use Games::Othello; my $game = Games::Othello->new(); while( !game->over ) { printf "It is presently %ss move", ($game->whos_move eq b) ? black, white; my @possible_moves = values $game->possible_moves(); if... Platforms: *nix

License: Freeware Size: 5.12 KB Download (98): Games::Othello Download

Added: September 25, 2010 | Visits: 1.361

Finance::Bank::NetBranch Finance::Bank::NetBranch is a Perl module that can manage your NetBranch accounts with Perl. SYNOPSIS use Finance::Bank::NetBranch; my $nb = Finance::Bank::NetBranch->new( url => https://nbp1.cunetbranch.com/valley/, account => 12345, password => abcdef, ); my @accounts =... Platforms: *nix

License: Freeware Size: 6.14 KB Download (112): Finance::Bank::NetBranch Download

Added: March 27, 2010 | Visits: 1.269

CGI::Portable CGI::Portable is a framework for server-generic web apps. SYNOPSIS Content of thin shell "startup_cgi.pl" for CGI or Apache::Registry env: #!/usr/bin/perl use strict; use warnings; require CGI::Portable; my $globals = CGI::Portable->new(); use Cwd; $globals->file_path_root( cwd() );... Platforms: *nix

License: Freeware Size: 95.23 KB Download (106): CGI::Portable Download

Added: October 06, 2010 | Visits: 652

Persistent::mSQL Persistent::mSQL is a persistent class implemented using a mSQL database. SYNOPSIS use Persistent::mSQL; use English; # import readable variable names like $EVAL_ERROR eval { ### in case an exception is thrown ### ### allocate a persistent object ### my $emp = new... Platforms: *nix

License: Freeware Size: 10.24 KB Download (92): Persistent::mSQL Download

Added: April 16, 2010 | Visits: 862

Persistent::Sybase Persistent::Sybase is a persistent class implemented using a Sybase database. SYNOPSIS use Persistent::Sybase; use English; # import readable variable names like $EVAL_ERROR eval { ### in case an exception is thrown ### ### allocate a persistent object ### my $emp = new... Platforms: *nix

License: Freeware Size: 10.24 KB Download (101): Persistent::Sybase Download

Added: November 25, 2010 | Visits: 1.275

Persistent::Oracle Persistent::Oracle is a persistent class implemented using an Oracle database. SYNOPSIS use Persistent::Oracle; use English; # import readable variable names like $EVAL_ERROR eval { ### in case an exception is thrown ### ### allocate a persistent object ### my $emp = new... Platforms: *nix

License: Freeware Size: 11.26 KB Download (95): Persistent::Oracle Download

Added: September 06, 2010 | Visits: 1.266

Persistent::MySQL Persistent::MySQL is a persistent class implemented using a MySQL database. SYNOPSIS use Persistent::MySQL; use English; # import readable variable names like $EVAL_ERROR eval { ### in case an exception is thrown ### ### allocate a persistent object ### my $emp = new... Platforms: *nix

License: Freeware Size: 10.24 KB Download (97): Persistent::MySQL Download

< 1 2 3 4 5 >