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

Pod Ripper freeware
Filter: All | Freeware | Demo
 

Pod Ripper

< 1 2 3 4 5 > 
Added: October 20, 2010 | Visits: 939

Pod::PlainText Pod::PlainText is a Perl module that can convert POD data to formatted ASCII text. SYNOPSIS use Pod::PlainText; my $parser = Pod::PlainText->new (sentence => 0, width => 78); # Read POD from STDIN and write to STDOUT. $parser->parse_from_filehandle; # Read POD from file.pod and write to...



Platforms: *nix

License: Freeware Size: 96.26 KB Download (101): Pod::PlainText Download

Added: April 21, 2010 | Visits: 1.212

RipOff CD Ripper RipOff is a GTK+ based CD ripper for Linux (and hopefully for other Unix systems once some testing and fixing have been done) that has a simple interface, CDDB lookups, and a plugin-based encoder architecture. RipOff CD Ripper attempts to appeal to those users who want a non-GNOME dependent CD...





Platforms: *nix

License: Freeware Size: 389.12 KB Download (101): RipOff CD Ripper Download

Added: November 25, 2010 | Visits: 728

Pod::Simple::PullParser Pod::Simple::PullParser is a pull-parser interface to parsing Pod. SYNOPSIS my $parser = SomePodProcessor->new; $parser->set_source( "whatever.pod" ); $parser->run; Or: my $parser = SomePodProcessor->new; $parser->set_source( $some_filehandle_object ); $parser->run; Or: my $parser =...


Platforms: *nix

License: Freeware Size: 22.53 KB Download (97): Pod::Simple::PullParser Download

Added: January 18, 2010 | Visits: 426

Pod::PXML Pod::PXML is a Perl module that contains pxml2pod and pod2pxml. SYNOPSIS use Pod::PXML; # Take from a file... open(XMLOUT, ">foo.xml") || die "cant wropen foo.xml: $!"; binmode(XMLOUT); print XMLOUT Pod::PXML::pod2xml(foo.pod); close(XMLOUT); # Take from a file, going the other way:...


Platforms: *nix

License: Freeware Size: 12.29 KB Download (90): Pod::PXML Download

Added: September 10, 2010 | Visits: 606

Pod::HTML2Pod Pod::HTML2Pod Perl module can translate HTML into POD. SYNOPSIS # Use the program html2pod that comes in this dist, or: use Pod::HTML2Pod; print Pod::HTML2Pod::convert( file => my_stuff.html, # input file a_href => 1, # try converting links ); Larry Wall once said (1999-08-27, on the...


Platforms: *nix

License: Freeware Size: 18.43 KB Download (92): Pod::HTML2Pod Download

Added: August 10, 2010 | Visits: 879

Pod::Simple::HTMLBatch Pod::Simple::HTMLBatch is a Perl module to convert several Pod files to several HTML files. SYNOPSIS perl -MPod::Simple::HTMLBatch -e Pod::Simple::HTMLBatch::go in out This module is used for running batch-conversions of a lot of HTML documents This class is NOT a subclass of...


Platforms: *nix

License: Freeware Size: 256 KB Download (108): Pod::Simple::HTMLBatch Download

Added: February 20, 2010 | Visits: 1.837

Pod::Simple::Subclassing Pod::Simple::Subclassing is a Perl module that can write a formatter as a Pod::Simple subclass. SYNOPSIS package Pod::SomeFormatter; use Pod::Simple; @ISA = qw(Pod::Simple); $VERSION = 1.01; use strict; sub _handle_element_start { my($parser, $element_name, $attr_hash_r) = @_; ... }...


Platforms: *nix

License: Freeware Size: 256 KB Download (87): Pod::Simple::Subclassing Download

Added: July 13, 2010 | Visits: 1.913

John the Ripper John the Ripper is a fast password cracker, currently available for many flavors of Unix (11 are officially supported, not counting different architectures), DOS, Win32, BeOS, and OpenVMS. It supports several crypt(3) password hash types which are most commonly found on various Unix flavors, as...


Platforms: *nix

License: Freeware Size: 798.72 KB Download (333): John the Ripper Download

Added: February 20, 2010 | Visits: 965

Pod::WSDL::Doc Pod::WSDL::Doc is a Perl module that represents the WSDL pod for the documentation of methods (internal use only). SYNOPSIS use Pod::WSDL::Doc; my $doc = new Pod::WSDL::Doc(_DOC This method is for blah ...); This module is used internally by Pod::WSDL. It is unlikely that you have to...


Platforms: *nix

License: Freeware Size: 27.65 KB Download (100): Pod::WSDL::Doc Download

Added: January 04, 2010 | Visits: 738

Pod::WSDL Pod::WSDL is a Perl module that creates WSDL documents from (extended) pod. SYNOPSIS use Pod::WSDL; my $pod = new Pod::WSDL(source => My::Server, location => http://localhost/My/Server, pretty => 1, withDocumentation => 1); print $pod->WSDL; Parsing the pod How does Pod::WSDL work?...


Platforms: *nix

License: Freeware Size: 27.65 KB Download (91): Pod::WSDL Download

Added: March 04, 2010 | Visits: 1.059

Pod::LaTeX Pod::LaTeX is a Perl module to convert Pod data to formatted Latex. SYNOPSIS use Pod::LaTeX; my $parser = Pod::LaTeX->new ( ); $parser->parse_from_filehandle; $parser->parse_from_file (file.pod, file.tex); Pod::LaTeX is a module to convert documentation in the Pod format into Latex....


Platforms: *nix

License: Freeware Size: 26.62 KB Download (120): Pod::LaTeX Download

Added: April 18, 2010 | Visits: 843

PDL::Pod::Html PDL::Pod::Html is Perl module to convert pod files to HTML. SYNOPSIS use PDL::Pod::Html; pod2html([options]); Converts files from pod format (see perlpod) to HTML format. It can automatically generate indexes and cross-references, and it keeps a cache of things it knows how to...


Platforms: *nix

License: Freeware Size: 655.36 KB Download (90): PDL::Pod::Html Download

Added: April 21, 2010 | Visits: 1.032

Pod::Html Pod::Html is a Perl module to convert pod files to HTML. SYNOPSIS use Pod::Html; pod2html([options]); Converts files from pod format (see perlpod) to HTML format. It can automatically generate indexes and cross-references, and it keeps a cache of things it knows how to cross-reference..


Platforms: *nix

License: Freeware Size: 13.6 MB Download (89): Pod::Html Download

Added: October 05, 2010 | Visits: 995

Pod::Html::HtmlTre Pod::Html::HtmlTree is a Perl module to convert pod files to html tree. SYNOPSIS use Pod::Html::HtmlTree; use Data::Dumper; my $p = Pod::Html::HtmlTree->new; $p->indir ( /usr/lib/perl5/site_perl/5.8.3/Pod ); $p->outdir ( /tmp/pod ); $p->mask_dir ( 0777 ); # default is 0775...


Platforms: *nix

License: Freeware Size: 3.07 KB Download (100): Pod::Html::HtmlTre Download

Added: August 12, 2010 | Visits: 1.007

Test::Pod::Snippets Test::Pod::Snippets is a Perl module to generate tests from pod code snippets. SYNOPSIS use Test::Pod::Snippets; my $tps = Test::Pod::Snippets->new(); $tps->generate_snippets( @pm_and_pod_files ); Fact 1 In a perfect world, a modules full API should be covered by an extensive battery...


Platforms: *nix

License: Freeware Size: 6.14 KB Download (91): Test::Pod::Snippets Download

Released: August 11, 2014  |  Added: August 24, 2014 | Visits: 2.534

WinX Free DVD to 3GP Ripper Download WinX Free DVD to 3GP Ripper, Free Get DVD Video Software Holiday Gift WinX Free DVD to 3GP Ripper is a professional and free DVD to 3GP converter to convert DVD to 3GP video format for playing on Nokia, Motorola, Sony Ericsson and any other mobile phones with brilliant effects, stable...


Platforms: Windows, Windows 7

License: Freeware Size: 7.31 MB Download (230): WinX Free DVD to 3GP Ripper Download

Released: January 20, 2009  |  Added: March 20, 2010 | Visits: 1.882

DVD Ripper to iPod DVD To iPod is the powerful easy to use DVD Ripper tool for Video DVD devices into iPod Supported formats. With DVD To iPod you can do the following: 1- Rip from most Video DVDs' [PAL/NTSC] with different encryptions to MP4 iPod supported format. 2- Rip from most Video DVDs' [PAL/NTSC] with...


Platforms: Windows

License: Freeware Size: 9.24 MB Download (3659): DVD Ripper to iPod Download

Released: September 23, 2014  |  Added: October 13, 2014 | Visits: 4.314

WinX Free DVD to MPEG Ripper WinX Free DVD to MPEG Ripper brings you with a totally free DVD to MPEG ripping solution. It lets you rest assured that all kinds of DVDs can be compressed and converted to high quality MPEG video. With this DVD to MPEG converter freeware, backing up DVD to hard drive as MPEG video file (support...


Platforms: Windows, Windows 7

License: Freeware Size: 30.47 MB Download (1459): WinX Free DVD to MPEG Ripper Download

Released: June 30, 2015  |  Added: August 03, 2015 | Visits: 3.176

WinX DVD Ripper Mac Free WinX DVD Ripper Mac Free helps you rip DVD on Mac OS to MP4, H.264, MPEG, FLV, iTunes and MP3. It's the best free DVD ripping software for Mac OS X Yosemite/Mavericks, etc. How to rip copy protected DVD on Mac? This app lets you rip DVD fast. Step 1. Import DVD Movie from Mac to this free...


Platforms: Mac, Other

License: Freeware Size: 36.29 MB Download (230): WinX DVD Ripper Mac Free Download

Released: April 22, 2010  |  Added: April 28, 2010 | Visits: 3.017

Actusoft Free DVD Ripper Actusoft Free DVD Ripper is a very easy and powerful DVD ripping software, which can convert DVD to MP4, AVI, WMV, VCD, SVCD, DVD, 3GP, MPEG1, MPEG2, FLV, etc., and allows you extract MP3, AAC, AC3, OGG, RA, WAV, WMA from DVD. You can backup DVD to hard drive without any loss of quality....


Platforms: Windows

License: Freeware Size: 17.85 MB Download (491): Actusoft Free DVD Ripper Download

< 1 2 3 4 5 >