search dotties weight loss zone
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 2264
Weight Loss Recipe Book 3.1
Weight Loss Recipe Book is a free, online, community-built recipe book. more>>
Weight Loss Recipe Book is a free, online, community-built recipe book. Weight Loss Recipe Book contains everything you need to allow your web site visitors to submit recipes and everything your administrator needs to administer the recipes.
When a visitor submits a recipe, the recipe is added to a database and awaits approval from the administrator before being added to the public site.
Main features:
- Community built, meaning you just have to approve entries and watch your web site expand!
- Captcha validation to prevent automated entries into the recipe book.
- Complete administrator system - add administrators, recipe categories, manage recipes and more!
- Best of all, Weight Loss Recipe Book is totally free!
<<lessWhen a visitor submits a recipe, the recipe is added to a database and awaits approval from the administrator before being added to the public site.
Main features:
- Community built, meaning you just have to approve entries and watch your web site expand!
- Captcha validation to prevent automated entries into the recipe book.
- Complete administrator system - add administrators, recipe categories, manage recipes and more!
- Best of all, Weight Loss Recipe Book is totally free!
Download (0.061MB)
Added: 2006-05-08 License: Freeware Price:
1267 downloads
Search::VectorSpace 0.02
Search::VectorSpace is a very basic vector-space search engine. more>>
Search::VectorSpace is a very basic vector-space search engine.
SYNOPSIS
use Search::VectorSpace;
my @docs = ...;
my $engine = Search::VectorSpace->new( docs => @docs, threshold => .04);
$engine->build_index();
while ( my $query = ) {
my %results = $engine->search( $query );
print join "n", keys %results;
}
This module takes a list of documents (in English) and builds a simple in-memory search engine using a vector space model. Documents are stored as PDL objects, and after the initial indexing phase, the search should be very fast. This implementation applies a rudimentary stop list to filter out very common words, and uses a cosine measure to calculate document similarity. All documents above a user-configurable similarity threshold are returned.
<<lessSYNOPSIS
use Search::VectorSpace;
my @docs = ...;
my $engine = Search::VectorSpace->new( docs => @docs, threshold => .04);
$engine->build_index();
while ( my $query = ) {
my %results = $engine->search( $query );
print join "n", keys %results;
}
This module takes a list of documents (in English) and builds a simple in-memory search engine using a vector space model. Documents are stored as PDL objects, and after the initial indexing phase, the search should be very fast. This implementation applies a rudimentary stop list to filter out very common words, and uses a cosine measure to calculate document similarity. All documents above a user-configurable similarity threshold are returned.
Download (0.004MB)
Added: 2007-04-06 License: Perl Artistic License Price:
933 downloads
Lucene::Search::Highlight 0.01
Lucene::Search::Highlight is a Perl module with highlight terms in Lucene search results. more>>
Lucene::Search::Highlight is a Perl module with highlight terms in Lucene search results.
SYNOPSIS
Load highlight classes into namespace
use Lucene::Search::Highlight;
Create Formatter and Query Scorer
my $formatter = new
Lucene::Search::Highlight::SimpleHTMLFormatter("< b >", "< /b >");
my $scorer = new
Lucene::Search::Highlight::QueryScorer($query);
Create Highlighter
my $highlighter = new
Lucene::Search::Highlight::Highlighter($formatter, $scorer);
Get best fragements with highlighted terms
my $fragement = $highlighter->getBestFragment($analyzer, $field, $text);
my $fragements = $highlighter->getBestFragments($analyzer, $field, $text, $num_fragements, $separator);
<<lessSYNOPSIS
Load highlight classes into namespace
use Lucene::Search::Highlight;
Create Formatter and Query Scorer
my $formatter = new
Lucene::Search::Highlight::SimpleHTMLFormatter("< b >", "< /b >");
my $scorer = new
Lucene::Search::Highlight::QueryScorer($query);
Create Highlighter
my $highlighter = new
Lucene::Search::Highlight::Highlighter($formatter, $scorer);
Get best fragements with highlighted terms
my $fragement = $highlighter->getBestFragment($analyzer, $field, $text);
my $fragements = $highlighter->getBestFragments($analyzer, $field, $text, $num_fragements, $separator);
Download (0.006MB)
Added: 2007-04-03 License: Perl Artistic License Price:
936 downloads
Search::Glimpse 0.02
Search::Glimpse is a Perl extension to communicate with Glimpse server. more>>
Search::Glimpse is a Perl extension to communicate with Glimpse server.
SYNOPSIS
use Search::Glimpse;
my $glimpse = Search::Glimpse->new;
my @results = $glimpse->search("search this string");
ABSTRACT
This module is an extension to use glimpse server from Perl.
Quick hack to connect to glimpse server.
new
Creates a new glimpse object.
search
Search on a glimpse object
hits
Returns the number of hits...
files
Returns the number of files...
<<lessSYNOPSIS
use Search::Glimpse;
my $glimpse = Search::Glimpse->new;
my @results = $glimpse->search("search this string");
ABSTRACT
This module is an extension to use glimpse server from Perl.
Quick hack to connect to glimpse server.
new
Creates a new glimpse object.
search
Search on a glimpse object
hits
Returns the number of hits...
files
Returns the number of files...
Download (0.004MB)
Added: 2007-04-05 License: Perl Artistic License Price:
933 downloads
Sethi Search Utility 0.8.7
Sethi Search Utility provides a simple command line utility to submit a search to Google, Yahoo!, or MSN. more>>
Sethi Search Utility provides a simple command line utility to submit a search to Google, Yahoo!, or MSN.
Sethi Search Utility is a simple command line utility to submit a search to Google, Yahoo!, or MSN and show the (text) results on standard output. Support for several search engines is included.
Its currently in serious need of a re-write, especially to avoid scraping and become a good engine using the search APIs provided.
Enhancements:
- The Google configuration was updated.
<<lessSethi Search Utility is a simple command line utility to submit a search to Google, Yahoo!, or MSN and show the (text) results on standard output. Support for several search engines is included.
Its currently in serious need of a re-write, especially to avoid scraping and become a good engine using the search APIs provided.
Enhancements:
- The Google configuration was updated.
Download (MB)
Added: 2007-04-05 License: GPL (GNU General Public License) Price:
558 downloads
Search::FreeText 0.05
Search::FreeText is a free text indexing module for medium-to-large text corpuses. more>>
Search::FreeText is a free text indexing module for medium-to-large text corpuses.
SYNOPSIS
my $test = new Search::FreeText(-db => [DB_File, "stories.db"]);
$text->open_index();
$text->clear_index();
$text->index_document(1, "Hello world");
$text->index_document(2, "World in motion");
$text->index_document(3, "Cruel crazy beautiful world");
$text->index_document(4, "Hey crazy");
$text->close_index();
$text->open_index();
foreach ($text->search("Crazy", 10)) {
print "$_->[0], $_->[1]n";
};
$text->close_index();
This module provides free text searching in a relatively open manner. It allows a persistent inverted file index to be constructed and managed (within limits), and then to be searched fairly efficiently. The module depends on a DBM module of some kind to manage the inverted file (DB_File is usually the best choice, as it is quite fast, quite scaleable, and accepts the long values that are needed for performance.
The free text searching algorithm used is the BM25 weighting scheme described in Robertson, S. E., Walker, S., Beaulieu, M. M., Gatford, M., and Payne, A. (1995). Okapi at TREC-4, in NIST Special Publication 500-236, the Fourth Text Retrieval Conference (TREC-4), pages 73-96.
Much of the module depends on an open lexical analysis system, which is implemented by Search::FreeText::LexicalAnalysis. This is where all the word splitting and stemming is handled (Lingua::Stem is used for the stemming).
Using the module is quite simple: you can open an index and close it, and while it is open you add documents as strings, each with a key of your own choosing. You can search the corpus using a string, and you get back a list of matches, each an array of your own document key and a relevance measure. So, for example, the keys might be database table keys, URLs, file names, anything like that will do. This makes Search::FreeText a very useful package to implement fairly efficient and high quality search systems.
<<lessSYNOPSIS
my $test = new Search::FreeText(-db => [DB_File, "stories.db"]);
$text->open_index();
$text->clear_index();
$text->index_document(1, "Hello world");
$text->index_document(2, "World in motion");
$text->index_document(3, "Cruel crazy beautiful world");
$text->index_document(4, "Hey crazy");
$text->close_index();
$text->open_index();
foreach ($text->search("Crazy", 10)) {
print "$_->[0], $_->[1]n";
};
$text->close_index();
This module provides free text searching in a relatively open manner. It allows a persistent inverted file index to be constructed and managed (within limits), and then to be searched fairly efficiently. The module depends on a DBM module of some kind to manage the inverted file (DB_File is usually the best choice, as it is quite fast, quite scaleable, and accepts the long values that are needed for performance.
The free text searching algorithm used is the BM25 weighting scheme described in Robertson, S. E., Walker, S., Beaulieu, M. M., Gatford, M., and Payne, A. (1995). Okapi at TREC-4, in NIST Special Publication 500-236, the Fourth Text Retrieval Conference (TREC-4), pages 73-96.
Much of the module depends on an open lexical analysis system, which is implemented by Search::FreeText::LexicalAnalysis. This is where all the word splitting and stemming is handled (Lingua::Stem is used for the stemming).
Using the module is quite simple: you can open an index and close it, and while it is open you add documents as strings, each with a key of your own choosing. You can search the corpus using a string, and you get back a list of matches, each an array of your own document key and a relevance measure. So, for example, the keys might be database table keys, URLs, file names, anything like that will do. This makes Search::FreeText a very useful package to implement fairly efficient and high quality search systems.
Download (0.010MB)
Added: 2007-04-05 License: Perl Artistic License Price:
932 downloads
Search::Tools::Snipper 0.06
Search::Tools::Snipper is a Perl module to extract keywords in context. more>>
Search::Tools::Snipper is a Perl module to extract keywords in context.
SYNOPSIS
my $query = [ qw/ quick dog / ];
my $text = the quick brown fox jumped over the lazy dog;
my $s = Search::Tools::Snipper->new(
occur => 3,
context => 8,
word_len => 5,
max_chars => 300,
query => $query
);
print $s->snip( $text );
Search::Tools::Snipper extracts keywords and their context from a larger block of text. The larger block may be plain text or HTML/XML.
<<lessSYNOPSIS
my $query = [ qw/ quick dog / ];
my $text = the quick brown fox jumped over the lazy dog;
my $s = Search::Tools::Snipper->new(
occur => 3,
context => 8,
word_len => 5,
max_chars => 300,
query => $query
);
print $s->snip( $text );
Search::Tools::Snipper extracts keywords and their context from a larger block of text. The larger block may be plain text or HTML/XML.
Download (0.048MB)
Added: 2006-10-18 License: Perl Artistic License Price:
1101 downloads
WWW::Search::GoTo 1.07
WWW::Search::GoTo is Perl class for searching GoTo.com. more>>
WWW::Search::GoTo is Perl class for searching GoTo.com.
SYNOPSIS
require WWW::Search;
$search = new WWW::Search(GoTo);
This class is an GoTo specialization of WWW::Search. It handles making and interpreting GoTo searches www-GoTo.com.
Nothing special about GoTo: no search options. It is much like Google in that it attempts to returm relavent search results using simple queries.
This class exports no public interface; all interaction should be done through WWW::Search objects.
<<lessSYNOPSIS
require WWW::Search;
$search = new WWW::Search(GoTo);
This class is an GoTo specialization of WWW::Search. It handles making and interpreting GoTo searches www-GoTo.com.
Nothing special about GoTo: no search options. It is much like Google in that it attempts to returm relavent search results using simple queries.
This class exports no public interface; all interaction should be done through WWW::Search objects.
Download (0.004MB)
Added: 2006-11-30 License: Perl Artistic License Price:
1058 downloads
WWW::Search::Scraper::Google 2.27
WWW::Search::Scraper::Google is a Perl module that scrapes www.Google.com more>>
WWW::Search::Scraper::Google is a Perl module that scrapes www.Google.com.
SYNOPSIS
require WWW::Search::Scraper;
$search = new WWW::Search::Scraper(Google);
This class is an Google specialization of WWW::Search. It handles making and interpreting Google searches http://www.Google.com.
<<lessSYNOPSIS
require WWW::Search::Scraper;
$search = new WWW::Search::Scraper(Google);
This class is an Google specialization of WWW::Search. It handles making and interpreting Google searches http://www.Google.com.
Download (0.13MB)
Added: 2006-11-24 License: Perl Artistic License Price:
1066 downloads
WWW::Search::Scraper::YahooFinance 2.27
WWW::Search::Scraper::YahooFinance is a Perl module that scrapes Finance.Yahoo.com more>>
WWW::Search::Scraper::YahooFinance is a Perl module that scrapes Finance.Yahoo.com
SYNOPSIS
require WWW::Search::Scraper;
$search = new WWW::Search::Scraper(YahooFinance);
($dow, $nasdaq, $sap, $tenYrBond, $nyseVolume, $nasdaqVolume)
= $scraper->getMarketSummary();
This class is an YahooFinance extension of WWW::Search::Scraper. It handles making and interpreting Yahoo Finance searches http://Finance.Yahoo.com.
The Search capabilities of module are not yet implemented; only the getMarketSummary method is implemented.
OPTIONS
getMarketSummary
Gets the "Market Summary" data off of finance.yahoo.com.
$scraper = new WWW::Search::Scraper(YahooFinance);
($dow, $nasdaq, $sap, $tenYrBond, $nyseVolume, $nasdaqVolume)
= $scraper->getMarketSummary();
<<lessSYNOPSIS
require WWW::Search::Scraper;
$search = new WWW::Search::Scraper(YahooFinance);
($dow, $nasdaq, $sap, $tenYrBond, $nyseVolume, $nasdaqVolume)
= $scraper->getMarketSummary();
This class is an YahooFinance extension of WWW::Search::Scraper. It handles making and interpreting Yahoo Finance searches http://Finance.Yahoo.com.
The Search capabilities of module are not yet implemented; only the getMarketSummary method is implemented.
OPTIONS
getMarketSummary
Gets the "Market Summary" data off of finance.yahoo.com.
$scraper = new WWW::Search::Scraper(YahooFinance);
($dow, $nasdaq, $sap, $tenYrBond, $nyseVolume, $nasdaqVolume)
= $scraper->getMarketSummary();
Download (0.13MB)
Added: 2006-12-18 License: Perl Artistic License Price:
1041 downloads
Search::Tools 0.01
Search::Tools are tools for building search applications. more>>
Search::Tools are tools for building search applications.
SYNOPSIS
use Search::Tools;
my $re = Search::Tools->regexp(query => the quick brown fox);
my $snipper = Search::Tools->snipper(query => $re);
my $hiliter = Search::Tools->hiliter(query => $re);
for my $result (@search_results)
{
print $hiliter->light( $snipper->snip( $result->summary ) );
}
Search::Tools is a set of utilities for building search applications. Rather than adhering to a particular search application, the goal of Search::Tools is to provide general-purpose methods for common search application features. Think of Search::Tools like a toolbox rather than a hammer.
Examples include:
Parsing search queries for the meaningful keywords
Rich regular expressions for locating keywords in the original indexed documents
Contextual snippets showing query keywords
Highlighting of keywords in context
Search::Tools is derived from some of the features in HTML::HiLiter and SWISH::HiLiter, but has been re-written with an eye to accomodating more general purpose features.
<<lessSYNOPSIS
use Search::Tools;
my $re = Search::Tools->regexp(query => the quick brown fox);
my $snipper = Search::Tools->snipper(query => $re);
my $hiliter = Search::Tools->hiliter(query => $re);
for my $result (@search_results)
{
print $hiliter->light( $snipper->snip( $result->summary ) );
}
Search::Tools is a set of utilities for building search applications. Rather than adhering to a particular search application, the goal of Search::Tools is to provide general-purpose methods for common search application features. Think of Search::Tools like a toolbox rather than a hammer.
Examples include:
Parsing search queries for the meaningful keywords
Rich regular expressions for locating keywords in the original indexed documents
Contextual snippets showing query keywords
Highlighting of keywords in context
Search::Tools is derived from some of the features in HTML::HiLiter and SWISH::HiLiter, but has been re-written with an eye to accomodating more general purpose features.
Download (0.038MB)
Added: 2006-08-31 License: Perl Artistic License Price:
1149 downloads
WWW::Search::Scraper::NorthernLight 2.27
WWW::Search::Scraper::NorthernLight it scrapes NorthernLight.com. more>>
WWW::Search::Scraper::NorthernLight it scrapes NorthernLight.com.
SYNOPSIS
require WWW::Search::Scraper;
$search = new WWW::Search::Scraper(NorthernLight);
This class is an NorthernLight specialization of WWW::Search. It handles making and interpreting NorthernLight searches http://www.NorthernLight.com.
This class exports no public interface; all interaction should be done through WWW::Search objects.
<<lessSYNOPSIS
require WWW::Search::Scraper;
$search = new WWW::Search::Scraper(NorthernLight);
This class is an NorthernLight specialization of WWW::Search. It handles making and interpreting NorthernLight searches http://www.NorthernLight.com.
This class exports no public interface; all interaction should be done through WWW::Search objects.
Download (0.13MB)
Added: 2006-08-25 License: Perl Artistic License Price:
1155 downloads
WWW::Search::Google 0.22
WWW::Search::Google is a Perl module to search Google via SOAP. more>>
WWW::Search::Google is a Perl module to search Google via SOAP.
SYNOPSIS
use WWW::Search;
my $search = WWW::Search->new(Google, key => $key);
$search->native_query("leon brocard");
while (my $result = $search->next_result()) {
print $result->title, "n";
print $result->url, "n";
print $result->description, "n";
print "n";
}
This class is a Google specialization of WWW::Search. It handles searching Google http://www.google.com/ using its new SOAP API http://www.google.com/apis/.
All interaction should be done through WWW::Search objects.
Note that you must register for a Google Web API account and have a valid Google API license key before using this module.
This module reports errors via croak().
This module uses Net::Google to do all the dirty work.
<<lessSYNOPSIS
use WWW::Search;
my $search = WWW::Search->new(Google, key => $key);
$search->native_query("leon brocard");
while (my $result = $search->next_result()) {
print $result->title, "n";
print $result->url, "n";
print $result->description, "n";
print "n";
}
This class is a Google specialization of WWW::Search. It handles searching Google http://www.google.com/ using its new SOAP API http://www.google.com/apis/.
All interaction should be done through WWW::Search objects.
Note that you must register for a Google Web API account and have a valid Google API license key before using this module.
This module reports errors via croak().
This module uses Net::Google to do all the dirty work.
Download (0.003MB)
Added: 2006-11-21 License: Perl Artistic License Price:
1067 downloads
Search::QueryParser 0.91
Search::QueryParser parses a query string into a data structure suitable for external search engines. more>>
Search::QueryParser parses a query string into a data structure suitable for external search engines.
SYNOPSIS
my $qp = new Search::QueryParser;
my $s = +mandatoryWord -excludedWord +field:word "exact phrase";
my $query = $qp->parse($s) or die "Error in query : " . $qp->err;
$someIndexer->search($query);
# query with comparison operators and implicit plus (second arg is true)
$query = $qp->parse("txt~^foo.* date>=01.01.2001 date<<less
SYNOPSIS
my $qp = new Search::QueryParser;
my $s = +mandatoryWord -excludedWord +field:word "exact phrase";
my $query = $qp->parse($s) or die "Error in query : " . $qp->err;
$someIndexer->search($query);
# query with comparison operators and implicit plus (second arg is true)
$query = $qp->parse("txt~^foo.* date>=01.01.2001 date<<less
Download (0.007MB)
Added: 2006-06-15 License: Perl Artistic License Price:
1226 downloads
Yahoo::Search::Response 1.7.10
Yahoo::Search::Response is a container object for the result set of one query to the Yahoo! Search API. more>>
Yahoo::Search::Response is a container object for the result set of one query to the Yahoo! Search API. (This package is included in, and automatically loaded by, the Yahoo::Search package.)
Package Use
You never need to use this package directly -- it is loaded automatically by Yahoo::Search.
Object Creation
Response objects are created by the Fetch() method of a Request (Yahoo::Search::Request) object, e.g. by
my $Response = Yahoo::Search->new(...)->Request()->Fetch();
or by shortcuts to the same, such as:
my $Response = Yahoo::Search->Query(...);
<<lessPackage Use
You never need to use this package directly -- it is loaded automatically by Yahoo::Search.
Object Creation
Response objects are created by the Fetch() method of a Request (Yahoo::Search::Request) object, e.g. by
my $Response = Yahoo::Search->new(...)->Request()->Fetch();
or by shortcuts to the same, such as:
my $Response = Yahoo::Search->Query(...);
Download (0.035MB)
Added: 2006-12-06 License: Perl Artistic License Price:
1053 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 dotties weight loss zone 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