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

Find Movies Url software
Filter: All | Freeware | Demo
 

Find Movies Url

< 1 2 3 4 5 > 
Added: August 22, 2010 | Visits: 1.436

File::Find::Closures File::Find::Closures is a Perl module with functions you can use with File::Find. SYNOPSIS use File::Find; use File::Find::Closures qw(:all); my( $wanted, $list_reporter ) = find_by_name( qw(README) ); File::Find::find( $wanted, @directories ); File::Find::find( { wanted => $wanted, ......



Platforms: *nix

License: Freeware Size: 7.17 KB Download (94): File::Find::Closures Download

Added: November 19, 2010 | Visits: 1.318

Copy URL Copy URL is an extension which adds an entry to the popup menu. This extension adds an entry to the popup menu "Copy URL of this page". When selected, the URL of the current page will be copied to the system clipboard. The URL address should be in the clipboard for the use of other applications...





Platforms: *nix

License: Freeware Size: 2.05 KB Download (108): Copy URL Download

Added: August 13, 2010 | Visits: 1.494

Test::File::Find::Rule Test::File::Find::Rule is a Perl module to test files and directories with File::Find::Rule. SYNOPSIS use Test::File::Find::Rule; # Check that all files in $dir have sensible names my $rule = File::Find::Rule ->file ->relative ->not_name(qr/^[w]{1,8}.[a-z]{3,4}$/);...


Platforms: *nix

License: Freeware Size: 3.07 KB Download (103): Test::File::Find::Rule Download

Added: March 18, 2010 | Visits: 1.452

File::Find File::Find is a Perl module to traverse a directory tree. SYNOPSIS use File::Find; find(&wanted, @directories_to_search); sub wanted { ... } use File::Find; finddepth(&wanted, @directories_to_search); sub wanted { ... } use File::Find; find({ wanted => &process, follow => 1 }, .);...


Platforms: *nix

License: Freeware Size: 12.2 MB Download (96): File::Find Download

Added: July 20, 2010 | Visits: 1.196

File::Find::Rule::XPath File::Find::Rule::XPath is a Perl module that contains rule to match on XPath expressions. SYNOPSIS use File::Find::Rule::XPath; my @files = File::Find::Rule->file ->name(*.dkb) ->xpath( //section/title[contains(., "Crustacean")] ) ->in($root); This module extends File::Find::Rule to...


Platforms: *nix

License: Freeware Size: 4.1 KB Download (102): File::Find::Rule::XPath Download

Added: March 12, 2010 | Visits: 955

Email::Find Email::Find allows you to find RFC 822 email addresses in plain text. Email::Find is a module for finding a subset of RFC 822 email addresses in arbitrary text (see "CAVEATS"). The addresses it finds are not guaranteed to exist or even actually be email addresses at all (see "CAVEATS"), but...


Platforms: *nix

License: Freeware Size: 39.94 KB Download (132): Email::Find Download

Added: April 23, 2010 | Visits: 3.107

WWW::Yahoo::Movies WWW::Yahoo::Movies is a Perl extension to get Yahoo! Movies information. SYNOPSIS use WWW::Yahoo::Movies; my $movie = new WWW::Yahoo::Movies(); print "TITLE: ".$movie->title." - ".$movie->year."n"; WWW::Yahoo::Movies is Perl interface to the Yahoo! Movies (http://movies.yahoo.com/)....


Platforms: *nix

License: Freeware Size: 13.31 KB Download (236): WWW::Yahoo::Movies Download

Added: April 06, 2010 | Visits: 1.465

url.markr url.markr is a personal bookmark manager written in Ruby on Rails. The project has support for tagging of bookmarks, RSS feeds of links for each tag, inline editing of bookmarks, and tag autocompletion on entering a new bookmark. It has public and private bookmarks. You can view public...


Platforms: *nix

License: Freeware Size: 245.76 KB Download (94): url.markr Download

Added: April 02, 2010 | Visits: 1.116

URL::Grab URL::Grab is a Perl module that drastically simplifies the fetching of files. URL::Grab project is designed to be used in programs that need common (but not necessarily simple) URL fetching features. It is extremely simple to drop into an existing program, and provides a clean interface to...


Platforms: *nix

License: Freeware Size: 3.07 KB Download (100): URL::Grab Download

Added: August 06, 2010 | Visits: 1.156

url-sniff url-sniff script provides the ability to sniff HTML 1.1 GET request that goes throught our server..


Platforms: *nix

License: Freeware Size: 6.14 KB Download (126): url-sniff Download

Added: November 09, 2010 | Visits: 852

MP3::Find::Filesystem MP3::Find::Filesystem is a File::Find-based backend to MP3::Find. SYNOPSIS use MP3::Find::Filesystem; my $finder = MP3::Find::Filesystem->new; my @mp3s = $finder->find_mp3s( dir => /home/peter/music, query => { artist => ilyaimy, album => myxomatosis, }, ignore_case => 1, );.


Platforms: *nix

License: Freeware Size: 29.7 KB Download (96): MP3::Find::Filesystem Download

Added: August 15, 2010 | Visits: 952

MP3::Find::Base MP3::Find::Base is a base class for MP3::Find backends. SYNOPSIS package MyFinder; use base MP3::Find::Base; sub search { my $self = shift; my ($query, $dirs, $sort, $options) = @_; # do something to find and sort the mp3s... my @results = do_something(...); return @results; }...


Platforms: *nix

License: Freeware Size: 29.7 KB Download (89): MP3::Find::Base Download

Added: July 13, 2010 | Visits: 1.088

MP3::Find MP3::Find is a Perl module to search and sort MP3 files based on their ID3 tags. SYNOPSIS # select with backend you want use MP3::Find qw(Filesystem); print "$_n" foreach find_mp3s( dir => /home/peter/cds, query => { artist => ilyaimy, title => deep in the am, }, ignore_case => 1,...


Platforms: *nix

License: Freeware Size: 29.7 KB Download (96): MP3::Find Download

Added: January 21, 2010 | Visits: 1.171

NetAddr::IP::Find NetAddr::IP::Find is a Perl module to find IP addresses in plain text. SYNOPSIS use NetAddr::IP::Find; $num_found = find_ipaddrs($text, &callback); This is a module for finding IP addresses in plain text. Functions NetAddr::IP::Find exports one function, find_ipaddrs(). It works very...


Platforms: *nix

License: Freeware Size: 3.07 KB Download (96): NetAddr::IP::Find Download

Added: April 14, 2010 | Visits: 1.194

File::Find::Rule SYNOPSIS use File::Find::Rule; # find all the subdirectories of a given directory my @subdirs = File::Find::Rule->directory->in( $directory ); # find all the .pm files in @INC my @files = File::Find::Rule->file() ->name( *.pm ) ->in( @INC ); # as above, but without method chaining my...


Platforms: *nix

License: Freeware Size: 14.34 KB Download (101): File::Find::Rule Download

Added: April 02, 2010 | Visits: 1.366

File::Find::Similars File::Find::Similars is a Similar files locator. SYNOPSIS use File::Find::Similars; File::Find::Similars->init(0, @ARGV); similarity_check_name(); Similar-sized and similar-named files are picked as suspicious candidates of duplicated files. What descirbes it better than a actual...


Platforms: *nix

License: Freeware Size: 10.24 KB Download (95): File::Find::Similars Download

Added: February 14, 2010 | Visits: 1.245

Tab URL Copier Tab URL Copier is an extension which copies the URLs of all open tabs. Copies the URLs of all open tabs. Puts Copy Tab URLs item in right click menu of tabs and Edit main menu. Useful for bibliographies, quickly sending someone a list of pages to view etc. Can now open tabs from previously...


Platforms: *nix

License: Freeware Size: 9.22 KB Download (124): Tab URL Copier Download

Released: May 23, 2010  |  Added: June 02, 2010 | Visits: 1.473

Find Duplicate MP3 Find Duplicate MP3 - How to find duplicate MP3 music? What is the best way to find duplicate MP3 files? Find duplicate MP3 on computer with the best duplicate MP3 finding software. Automatically find duplicate MP3 tracks and delete duplicate MP3 files, find duplicate MP3 music and remove...


Platforms: Windows

License: Shareware Cost: $39.95 USD Size: 19.27 MB Download (119): Find Duplicate MP3 Download

Released: April 07, 2014  |  Added: December 13, 2015 | Visits: 2.084

Batch Word Find and Replace Batch Word Find & Replace software is an useful tool to FIND and REPLACE multiple words in multiple MS Word 2000, 2003, 2007, 2010 doc/docx/rtf files, you can also format backcolor, forecolor, bold, italic, underline and strikethrough any word or text in any word document with our Replacement...


Platforms: Windows, Windows 7

License: Shareware Cost: $49.95 USD Size: 2.76 MB Download (172): Batch Word Find and Replace Download

Released: October 23, 2010  |  Added: November 28, 2010 | Visits: 1.328

zButterfly zButterfly is a full-featured BitTorrent client that makes it easier than ever for users to find, download, play and share movie torrents. Unlike other BitTorrent client search engines, zButterfly offers the pre-built library of movie torrents which now amounts to over 10000 titles. Moreover, the...


Platforms: Windows

License: Freeware Size: 11.68 MB Download (171): zButterfly Download

< 1 2 3 4 5 >