search
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1840
Informatin Search - Health & Fitness 1.0
Health and fitness toolbar for FireFox from Information Search. Provides a quick way to access the topics and subjects relating to Health and Fitness ... more>> <<less
Download (1134KB)
Added: 2009-04-14 License: Freeware Price: Free
192 downloads
Mortgage Video And Search Tool 1
The world of mortgages and real estate can be extremely confusing to the newcomer. The mortgage industry is a lot more competitive than it used to be... more>> <<less
Download (1113KB)
Added: 2009-04-12 License: Freeware Price: Free
194 downloads

Okapiland Search Toolbar 1.3
Okapiland Search Toolbar provides Internet search in Composite Page Mode (CPM) that displays linked pages themselves. more>>
Okapiland Search Toolbar 1.3 will make your Firefox browser even more powerful as it is designed to provide Internet search in Composite Page Mode (CPM) that displays linked pages themselves in addition to hyperlinks.
All pages can be displayed by scrolling the pages. Internet Search is good for the quick search or clear search, but the deep search or ambiguous search requires your effort. The CPM can save your operation. To prevent unexpected intruder at displaying the linked pages, the dynamic type of contents, e.g. JavaScript or Applet, is not displayed.
Web search is provided with Yahoo! Search Web Services. Okapibar consists of a keyword input, search engine buttons, and function buttons. The search engine button selects YahooCPM or Yahoo. The function buttons are a highlight button to change the background color of words same as the key words, a compact button to change between one line and two-line layout, and a script button to show that Javascript is disable during the search in CPM.
Enhancements:
- Support Firefox 2.0, and add an improvement.
- The width of each frame is automatically adjusted at the resize of the browser.
Requirements:
- Mozilla Firefox
Added: 2007-09-26 License: MPL Price: FREE
27 downloads
WWW::Search::HotFiles 1.072
WWW::Search::HotFiles is a class for searching ZDnet HotFiles. more>>
WWW::Search::HotFiles is a class for searching ZDnet HotFiles.
Class for searching ZDnet HotFiles (shareware, freeware) via Lycos. http://www.hotfiles.lycos.com.
If you use the raw method for this backend you will need to include a "< p >" at end of your print statement, example: print $result->raw(), "< p >n";
This is so that each result returned will have a HTML break since the HTML is being extracted from tables, and, there is no < p > or < br > trailing returned HITS to properly format the results. No BIG deal really.
Print optioins: Using score will return nice star images for rating purposes at end of each description line for each HIT if desired.
Using index_date will return the files date.
Raw returns description, star rating image, date, downloads, OS version.
This class exports no public interface; all interaction should be done through WWW::Search objects.
USAGE EXAMPLE
One of several print samples for this backend (this is a WebSearch
example):
print $count. < a href="$prefix$_" >$result- >{title}< /A >< /B >< BR >
$result->{description}
$result->{index_date} $result->{score}< P >< /SMALL >< /FONT >
END
<<lessClass for searching ZDnet HotFiles (shareware, freeware) via Lycos. http://www.hotfiles.lycos.com.
If you use the raw method for this backend you will need to include a "< p >" at end of your print statement, example: print $result->raw(), "< p >n";
This is so that each result returned will have a HTML break since the HTML is being extracted from tables, and, there is no < p > or < br > trailing returned HITS to properly format the results. No BIG deal really.
Print optioins: Using score will return nice star images for rating purposes at end of each description line for each HIT if desired.
Using index_date will return the files date.
Raw returns description, star rating image, date, downloads, OS version.
This class exports no public interface; all interaction should be done through WWW::Search objects.
USAGE EXAMPLE
One of several print samples for this backend (this is a WebSearch
example):
print $count. < a href="$prefix$_" >$result- >{title}< /A >< /B >< BR >
$result->{description}
$result->{index_date} $result->{score}< P >< /SMALL >< /FONT >
END
Download (0.042MB)
Added: 2007-08-18 License: Perl Artistic License Price:
812 downloads
List::Search 0.3
List::Search is a Perl module for fast searching of sorted lists. more>>
List::Search is a Perl module for fast searching of sorted lists.
SYNOPSIS
use List::Search qw( list_search nlist_search custom_list_search );
# Create a list to search
my @list = sort qw( bravo charlie delta );
# Search for a value, returns the index of first match
print list_search( alpha, @list ); # 0
print list_search( charlie, @list ); # 1
print list_search( zebra, @list ); # -1
# Search numerically
my @numbers = sort { $a $b } ( 10, 20, 100, 200, );
print nlist_search( 20, @numbers ); # 2
# Search using some other comparison
my $cmp_code = sub { lc( $_[0] ) cmp lc( $_[1] ) };
my @custom_list = sort { $cmp_code->( $a, $b ) } qw( FOO bar BAZ bundy );
print list_search_generic( $cmp_code, foo, @custom_list );
This module lets you quickly search a sorted list. It will return the index of the first entry that matches, or if there is no exact matches then the first entry that is greater than the search key.
For example in the list my @list = qw( bob dave fred ); searching for dave will return 1 as $list[1] eq dave. Searching for charles will also return 1 as dave is the first entry that is greater than charles.
If there are none of the entries match then -1 is returned. You can either check for this or use it as an index to get the last values in the list. Whichever approach you choose will depend on what you are trying to do.
The actual searching is done using a binary search which is very fast.
<<lessSYNOPSIS
use List::Search qw( list_search nlist_search custom_list_search );
# Create a list to search
my @list = sort qw( bravo charlie delta );
# Search for a value, returns the index of first match
print list_search( alpha, @list ); # 0
print list_search( charlie, @list ); # 1
print list_search( zebra, @list ); # -1
# Search numerically
my @numbers = sort { $a $b } ( 10, 20, 100, 200, );
print nlist_search( 20, @numbers ); # 2
# Search using some other comparison
my $cmp_code = sub { lc( $_[0] ) cmp lc( $_[1] ) };
my @custom_list = sort { $cmp_code->( $a, $b ) } qw( FOO bar BAZ bundy );
print list_search_generic( $cmp_code, foo, @custom_list );
This module lets you quickly search a sorted list. It will return the index of the first entry that matches, or if there is no exact matches then the first entry that is greater than the search key.
For example in the list my @list = qw( bob dave fred ); searching for dave will return 1 as $list[1] eq dave. Searching for charles will also return 1 as dave is the first entry that is greater than charles.
If there are none of the entries match then -1 is returned. You can either check for this or use it as an index to get the last values in the list. Whichever approach you choose will depend on what you are trying to do.
The actual searching is done using a binary search which is very fast.
Download (0.005MB)
Added: 2007-07-27 License: Perl Artistic License Price:
819 downloads
TrustWatch Search by GeoTrust 0.2.4
TrustWatch Search by GeoTrust is a Firefox extension that allows you to search with Trust on Google, Yahoo! and MSN. more>>
TrustWatch Search by GeoTrust is a Firefox extension that allows you to search with Trust on Google, Yahoo! and MSN.
This extension uses the popular TrustWatch anti-phishing service so you can see real-time/in-line site rating information for all your search results. Currently support the Google, Yahoo! and MSN search engines.
Also, you can report suspicious sites for fraud or phishing and see a detailed site report about the web site at your fingertips.
Other features allow you to submit fraudulent webmail with a simple right click report function.
<<lessThis extension uses the popular TrustWatch anti-phishing service so you can see real-time/in-line site rating information for all your search results. Currently support the Google, Yahoo! and MSN search engines.
Also, you can report suspicious sites for fraud or phishing and see a detailed site report about the web site at your fingertips.
Other features allow you to submit fraudulent webmail with a simple right click report function.
Download (0.024MB)
Added: 2007-07-24 License: MPL (Mozilla Public License) Price:
859 downloads
Search::Xapian 1.0.2.0
Search::Xapian is a Perl XS frontend to the Xapian C++ search library. more>>
Search::Xapian is a Perl XS frontend to the Xapian C++ search library. The project is a fairly complete wrapper: most features of the Xapian library are made available for use from Perl.
Xapian is a highly adaptable toolkit that allows developers to easily add advanced indexing and search facilities to their own applications. It supports the Probabilistic Information Retrieval model as well as a rich set of boolean query operators. Its fast and scalable to hundreds of millions of documents.
<<lessXapian is a highly adaptable toolkit that allows developers to easily add advanced indexing and search facilities to their own applications. It supports the Probabilistic Information Retrieval model as well as a rich set of boolean query operators. Its fast and scalable to hundreds of millions of documents.
Download (0.035MB)
Added: 2007-07-05 License: Perl Artistic License Price:
842 downloads
nautilus-search-tool 0.2.2
nautilus-search-tool is a Nautilus extension to have search files on popup menu. more>>
nautilus-search-tool is a Nautilus extension to have "search files" on popup menu.
<<less Download (0.35MB)
Added: 2007-07-01 License: GPL (GNU General Public License) Price:
848 downloads
WWW::Search::Dice 2.026
WWW::Search::Dice is a class for searching Dice. more>>
WWW::Search::Dice is a class for searching Dice.
SYNOPSIS
use WWW::Search;
my $oSearch = new WWW::Search(Dice);
my $sQuery = WWW::Search::escape_query("unix and (c++ or java)");
$oSearch->native_query($sQuery,
{method => bool,
state => CA,
daysback => 14});
while (my $res = $oSearch->next_result()) {
if(isHitGood($res->url)) {
my ($company,$title,$date,$location) =
$oSearch->getMoreInfo($res->url);
print "$company $title $date $location " . $res->url . "n";
}
}
sub isHitGood {return 1;}
This class is a Dice specialization of WWW::Search. It handles making and interpreting Dice searches at http://www.dice.com.
By default, returned WWW::SearchResult objects contain only url, title and description which is a mixture of location and skills wanted. Function getMoreInfo( $url ) provides more specific info - it has to be used as
my ($company,$title,$date,$location) =
$oSearch->getMoreInfo($res->url);
<<lessSYNOPSIS
use WWW::Search;
my $oSearch = new WWW::Search(Dice);
my $sQuery = WWW::Search::escape_query("unix and (c++ or java)");
$oSearch->native_query($sQuery,
{method => bool,
state => CA,
daysback => 14});
while (my $res = $oSearch->next_result()) {
if(isHitGood($res->url)) {
my ($company,$title,$date,$location) =
$oSearch->getMoreInfo($res->url);
print "$company $title $date $location " . $res->url . "n";
}
}
sub isHitGood {return 1;}
This class is a Dice specialization of WWW::Search. It handles making and interpreting Dice searches at http://www.dice.com.
By default, returned WWW::SearchResult objects contain only url, title and description which is a mixture of location and skills wanted. Function getMoreInfo( $url ) provides more specific info - it has to be used as
my ($company,$title,$date,$location) =
$oSearch->getMoreInfo($res->url);
Download (0.023MB)
Added: 2007-06-15 License: Perl Artistic License Price:
863 downloads
WWW::Search::Brassring 2.026
WWW::Search::Brassring is a class for searching http://www.Brassring.com/jobsearch more>>
WWW::Search::Brassring is a class for searching http://www.Brassring.com/jobsearch
SYNOPSIS
use WWW::Search;
my $oSearch = new WWW::Search(Brassring);
my $sQuery = WWW::Search::escape_query("java");
$oSearch->native_query($sQuery,
{city => San Diego,
st => CA,
prox => 10, # proximity to city, 10, 25, 50 miles
pp => 10}); # hits per page, 10, 25, 50
while (my $res = $oSearch->next_result()) { print "$res->{url} $res->{title} $res->{change_date} $res->{description}n";
}
This class is a Brassring specialization of WWW::Search. It handles making and interpreting Brassring searches at http://www.brassring.com/jobsearch.
By default, returned WWW::SearchResult objects contain only url, title and description which is a mixture of location and skills wanted.
OPTIONS
Query on Keywords, Title or Company
{q => programmer}
The following search options can be activated by sending a hash as the second argument to native_query().
Restrict search by country
{ctry => United States}
Sort jobs found
Sort by relevance: {like => likep}
Sort by posting date: {like => like}
Restrict jobs found by state (US)
{st => $st} - Only jobs in st $st.
<<lessSYNOPSIS
use WWW::Search;
my $oSearch = new WWW::Search(Brassring);
my $sQuery = WWW::Search::escape_query("java");
$oSearch->native_query($sQuery,
{city => San Diego,
st => CA,
prox => 10, # proximity to city, 10, 25, 50 miles
pp => 10}); # hits per page, 10, 25, 50
while (my $res = $oSearch->next_result()) { print "$res->{url} $res->{title} $res->{change_date} $res->{description}n";
}
This class is a Brassring specialization of WWW::Search. It handles making and interpreting Brassring searches at http://www.brassring.com/jobsearch.
By default, returned WWW::SearchResult objects contain only url, title and description which is a mixture of location and skills wanted.
OPTIONS
Query on Keywords, Title or Company
{q => programmer}
The following search options can be activated by sending a hash as the second argument to native_query().
Restrict search by country
{ctry => United States}
Sort jobs found
Sort by relevance: {like => likep}
Sort by posting date: {like => like}
Restrict jobs found by state (US)
{st => $st} - Only jobs in st $st.
Download (0.023MB)
Added: 2007-06-15 License: Perl Artistic License Price:
861 downloads
WWW::Search::AOL::Classifieds::Employment 2.026
WWW::Search::AOL::Classifieds::Employment is a class for searching Jobs Classifieds on AOL. more>>
WWW::Search::AOL::Classifieds::Employment is a class for searching Jobs Classifieds on AOL.
SYNOPSIS
use WWW::Search;
my $oSearch = new WWW::Search(Aol);
my $sQuery = WWW::Search::escape_query("unix c++ java");
$oSearch->native_query($sQuery,
{qcqs => :ca:});
while (my $res = $oSearch->next_result()) {
print $res->company . "t" . $res->title . "t" . $res->change_date
. "t" . $res->location . "n";
}
This class is a Aol specialization of WWW::Search. It handles making and interpreting Aol searches at http://classifiedplus.aol.com in category employment->JobSearch.
The returned WWW::SearchResult objects contain url, title, company, location and change_date fields.
<<lessSYNOPSIS
use WWW::Search;
my $oSearch = new WWW::Search(Aol);
my $sQuery = WWW::Search::escape_query("unix c++ java");
$oSearch->native_query($sQuery,
{qcqs => :ca:});
while (my $res = $oSearch->next_result()) {
print $res->company . "t" . $res->title . "t" . $res->change_date
. "t" . $res->location . "n";
}
This class is a Aol specialization of WWW::Search. It handles making and interpreting Aol searches at http://classifiedplus.aol.com in category employment->JobSearch.
The returned WWW::SearchResult objects contain url, title, company, location and change_date fields.
Download (0.023MB)
Added: 2007-06-15 License: Perl Artistic License Price:
861 downloads
WWW::Search::Scraper::Dice 2.27
WWW::Search::Scraper::Dice is a Perl module that scrapes Dice : (skills,locations) => (title, location ,residue) more>>
WWW::Search::Scraper::Dice is a Perl module that scrapes Dice : (skills,locations) => (title, location ,residue)
SYNOPSIS
use WWW::Search;
my $oSearch = new WWW::Search::Scraper(Dice);
my $sQuery = WWW::Search::Scraper::escape_query("unix and (c++ or java)");
$oSearch->native_query($sQuery,
{method => bool,
state => CA,
daysback => 14});
while (my $res = $oSearch->next_result()) {
if(isHitGood($res->url)) {
my ($company,$title,$date,$location) =
($res->company, $res->title, $res->date, $res->location);
print "$company $title $date $location " . $res->url . "n";
}
}
This class is a Dice extension of WWW::Search::Scraper. It handles making and interpreting Dice searches at http://www.dice.com.
<<lessSYNOPSIS
use WWW::Search;
my $oSearch = new WWW::Search::Scraper(Dice);
my $sQuery = WWW::Search::Scraper::escape_query("unix and (c++ or java)");
$oSearch->native_query($sQuery,
{method => bool,
state => CA,
daysback => 14});
while (my $res = $oSearch->next_result()) {
if(isHitGood($res->url)) {
my ($company,$title,$date,$location) =
($res->company, $res->title, $res->date, $res->location);
print "$company $title $date $location " . $res->url . "n";
}
}
This class is a Dice extension of WWW::Search::Scraper. It handles making and interpreting Dice searches at http://www.dice.com.
Download (0.13MB)
Added: 2007-06-15 License: Perl Artistic License Price:
861 downloads
pro-search 0.17.2
pro-search is a crawler for FTP servers, SMB shares, HTTP servers, and DC++ networks. more>>
pro-search is a crawler for FTP servers, SMB shares, HTTP servers, and DC++ networks.
<<less Download (0.17MB)
Added: 2007-05-22 License: GPL (GNU General Public License) Price:
896 downloads
Celebrity Search 0.4 for Firefox
Celebrity Search allows you to search movie starts - actors, actresses and directors, musical performers and so on. more>>
Celebrity Search allows you to search movie starts - actors, actresses and directors, musical performers and so on.
Highlight a name of a celebrity on a web page, right click it with the mouse, and choose Search Celebrity menu item to see the info about the celebrity in a separate tab.
You can search movie starts - actors, actresses and directors, musical performers, supermodels, politicians, prominent businessmen, other publicly known people. Nice research tool.
<<lessHighlight a name of a celebrity on a web page, right click it with the mouse, and choose Search Celebrity menu item to see the info about the celebrity in a separate tab.
You can search movie starts - actors, actresses and directors, musical performers, supermodels, politicians, prominent businessmen, other publicly known people. Nice research tool.
Download (0.080MB)
Added: 2007-04-27 License: MPL (Mozilla Public License) Price:
911 downloads
City info search 0.9
City info search enables you to get all the information about any city in the USA with a mouse click. more>>
City info search enables you to get all the information about any city in the USA with a mouse click.
Get all the information about any city in the USA with a mouse click. This includes geography, population, ethnic composition, housing, climate, hospitals, airports, etc.
Usage: highlight the name on any US city on a page. Right click the mouse. Choose Get City Info.
No annoing toolbars.
<<lessGet all the information about any city in the USA with a mouse click. This includes geography, population, ethnic composition, housing, climate, hospitals, airports, etc.
Usage: highlight the name on any US city on a page. Right click the mouse. Choose Get City Info.
No annoing toolbars.
Download (0.080MB)
Added: 2007-04-27 License: MPL (Mozilla Public License) Price:
942 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above search search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed