Main > Free Download Search >

Free track keywords software for linux

track keywords

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 1524
KeywordXS 0.2

KeywordXS 0.2


KeywordXS is a small tool to get keywords for specified search terms. more>>
KeywordXS is a small tool to get keywords for specified search terms. KeywordXS will simply query a given search term and display the associated results.

It uses the Internet so that all the keywords are top actual.

<<less
Download (0.043MB)
Added: 2006-11-14 License: GPL (GNU General Public License) Price:
1074 downloads
B::Keywords 1.06

B::Keywords 1.06


B::Keywords is a Perl module that contains lists of reserved barewords and symbol names. more>>
B::Keywords is a Perl module that contains lists of reserved barewords and symbol names.

SYNOPSIS

use B::Keywords qw( @Symbols Barewords );
print join "n", @Symbols,
@Barewords;

B::Keywords supplies seven arrays of keywords: @Scalars, @Arrays, @Hashes, @Filehandles, @Symbols, @Functions, and @Barewords. The @Symbols array includes the contents of each of @Scalars, @Arrays, @Hashes, and @Filehandles. Similarly, @Barewords adds a few non-function keywords and operators to the @Functions array.

All additions and modifications are welcome.

DATA

@Scalars

@Arrays

@Hashes

@Filehandles

@Functions

The above are lists of variables, special file handles, and built in functions.

@Symbols

This is just the combination of all of the above: variables, file handles, and functions.

@Barewords

This is a list of other special keywords in perl including operators and all the control structures.

<<less
Download (0.006MB)
Added: 2007-06-25 License: Perl Artistic License Price:
851 downloads
Search::Tools::Keywords 0.06

Search::Tools::Keywords 0.06


Search::Tools::Keywords is a Perl module to extract keywords from a search query. more>>
Search::Tools::Keywords is a Perl module to extract keywords from a search query.

SYNOPSIS

use Search::Tools::Keywords;
use Search::Tools::RegExp;

my $query = the quick fox color:brown and "lazy dog" not jumped;

my $kw = Search::Tools::Keywords->new(
stopwords => the,
and_word => and,
or_word => or,
not_word => not,
stemmer => &your_stemmer_here,
ignore_first_char => +-,
ignore_last_char => ,
word_characters => $Search::Tools::RegExp::WordChar,
debug => 0,
phrase_delim => ",
charset => iso-8859-1,
lang => en_US,
locale => en_US.iso-8859-1
);

my @words = $kw->extract( $query );
# returns:
# quick
# fox
# brown
# lazy dog

Do not confuse this class with Search::Tools::RegExp::Keywords.

Search::Tools::Keywords extracts the meaningful words from a search query. Since many search engines support a syntax that includes special characters, boolean words, stopwords, and fields, search queries can become complicated. In order to separate the wheat from the chafe, the supporting words and symbols are removed and just the actual search terms (keywords) are returned.

This class is used internally by Search::Tools::RegExp. You probably dont need to use it directly. But if you do, read on.

<<less
Download (0.048MB)
Added: 2006-10-18 License: Perl Artistic License Price:
1102 downloads
Track + Task Tracker 3.0.0

Track + Task Tracker 3.0.0


Track + is an online project management and issue tracking with team collaboration, user management, multiple access levels. more>> <<less
Download (11.1MB)
Added: 2005-04-13 License: Other/Proprietary License Price:
1669 downloads
NP PPC Tracker 1.0

NP PPC Tracker 1.0


NPTracker is script to track keywords, clicks, codes and test performance of different types of advertising. Discover which keywords, search terms and referral sites actually make you money and which more>>

Free NP [KISS] Tracker Genially Simple Ad Performance Tracking
NPTracker is script to track keywords, clicks, codes and test performance of different types of advertising.
Discover which keywords, search terms and referral sites actually make you money and which ones part you with it. Simple and powerful.
NPTracker is a simple but powerful script to:
+ dynamically track performance of your PPC campaigns on a keyword level
+ reveal which keywords are profitable and which are not
+ discover what search keywords people are using when clicking on your ads
+ see exact referral sites people are coming from
+ capture traffic statistics in real-time, including IPs, browser and OS info
everything with a genuinely simple free NPTracker script.
More details about Free NP Tracker are available at http://NeoPerformancer.com/nptracker/

Requirements: PHP 4.3

<<less
Download (41.86KB)
Added: 2009-04-13 License: Freeware Price: $0
238 downloads
Tracksail 1.0

Tracksail 1.0


Tracksail project is a simple sailing game. more>>
Tracksail project is a simple sailing game.

The player guides a small boat through a track while competing for the best time with other players.

It uses a client-server model.

<<less
Download (MB)
Added: 2006-11-23 License: GPL (GNU General Public License) Price:
1067 downloads
Yahoo::Marketing::Keyword 0.08

Yahoo::Marketing::Keyword 0.08


Yahoo::Marketing::Keyword is an object to represent a Yahoo Marketing Keyword. more>>
Yahoo::Marketing::Keyword is an object to represent a Yahoo Marketing Keyword.

SYNOPSIS

See http://ysm.techportal.searchmarketing.yahoo.com/docs/reference/dataObjects.asp for documentation of the various data objects.

METHODS

new

Creates a new instance

get/set methods

ID
adGroupID
advancedMatchON
alternateText
sponsoredSearchMaxBid
status
text
update
url
watchON

get (read only) methods

accountID
canonicalSearchText
createTimestamp
deleteTimestamp
editorialStatus
lastUpdateTimestamp
phraseSearchText
sponsoredSearchMaxBidTimestamp

<<less
Download (0.066MB)
Added: 2006-12-08 License: Perl Artistic License Price:
1050 downloads
Lingua::EN::Keywords::Yahoo 0.5

Lingua::EN::Keywords::Yahoo 0.5


Lingua::EN::Keywords::Yahoo it can automatically extracts keywords from text using the Yahoo! API. more>>
Lingua::EN::Keywords::Yahoo it can automatically extracts keywords from text using the Yahoo! API.

SYNOPSIS

use Lingua::EN::Keywords::Yahoo qw(keywords);

my @keywords = keywords($text);
or
my @keywords = keywords($text, $query);
Where $query is an optional term to help with the extraction process.

This uses the Yahoo! keywords API to extract keywords from text.

To quote the Yahoo! page: "The Term Extraction Web Service provides a list of significant words or phrases extracted from a larger content."

<<less
Download (0.003MB)
Added: 2006-12-07 License: Perl Artistic License Price:
1051 downloads
Search::Tools::RegExp::Keywords 0.06

Search::Tools::RegExp::Keywords 0.06


Search::Tools::RegExp::Keywords is a Perl module to access regular expressions for keywords. more>>
Search::Tools::RegExp::Keywords is a Perl module to access regular expressions for keywords.

SYNOPSIS

my $regexp = Search::Tools::RegExp->new();

my $kw = $regexp->build(the quick brown fox);

for my $w ($kw->keywords)
{
my $r = $kw->re( $w );
}

Search::Tools::RegExp::Keywords provides access to the regular expressions for a query keyword.

A Search::Tools::RegExp::Keywords object is returned by the Search::Tools::RegExp build() method. This class is typically not used in isolation.

<<less
Download (0.048MB)
Added: 2006-10-18 License: Perl Artistic License Price:
1101 downloads
Technorati Tracker 1.1

Technorati Tracker 1.1


Technorati Tracker examines the traffic your blog is receiving from Technorati. more>>
Technorati Tracker examines the traffic your blog is receiving from Technorati.
This open source web analytics software will examine an Apache web server log and will display hits generated by clicks from technorati.com and will also track the visits by Technoratibot.
Output:
Each hit from Technorati will be displayed in a row with these columns:
- Time
- IP Address
- Section (Tags, Search, Blog Finder, Popular)
- Keywords
At the bottom of the page, a bar chart will be displayed comparing the number of hits from each section on Technorati. Technoratibot visits are in bold and indicated by a section label of Technoratibot.
Instructions:
- Download the script to your machine.
- Edit the line that reads:
LOG_FILE="/var/log/httpd/access_log"
so the CGI script will know where your Apache web server log file resides. Upload technorati_tracker.cgi to a directory on your web server where you can run CGI scripts. Change permissions to make the file executable (chmod +x or chmod 755).
Enhancements:
- Technorati launched a new section called Explore that displays recent blog posts based on category tags.
- This release has been updated to track hits from the new section.
<<less
Download (0.020MB)
Added: 2006-01-31 License: MIT/X Consortium License Price:
1362 downloads
PloneKeywordExplorer 0.2

PloneKeywordExplorer 0.2


PloneKeywordExplorer provides an alternative to the usual Plone search. more>>
PloneKeywordExplorer provides an alternative to the usual Plone search. Searches are restricted to combinations of keywords.

The search is iterative. Keywords can be added and removed from the search at any time, allowing the user to conveniently explore the document space. The result set can be narrowed down to a few documents in a few steps.

PloneKeywordExplorer depends on well-chosen keywords, and supports finding documents that dont have keywords associated. When you click on the [no keywords], you get a list of all documents that do not have keywords. You can browse through this list and start annotating your documents.
<<less
Download (0.061MB)
Added: 2007-02-09 License: GPL (GNU General Public License) Price:
987 downloads
Search::Tools::RegExp::Keyword 0.06

Search::Tools::RegExp::Keyword 0.06


Search::Tools::RegExp::Keyword is a Perl module to access regular expressions for a keyword. more>>
Search::Tools::RegExp::Keyword is a Perl module to access regular expressions for a keyword.

SYNOPSIS

my $regexp = Search::Tools::RegExp->new();

my $kw = $regexp->build(the quick brown fox);

for my $w ($kw->keywords)
{
my $re = $kw->re( $w ); # $re is S::T::R::Keyword object

# each of these are regular expressions ... suitable for framing
my $h = $re->html;
my $p = $re->plain;
unless ( $re->word =~ m/^$h$/ )
{
die "something terribly wrong with the html regexp: $h";
}
unless ( $re->word =~ m/^$p$/ )
{
die "something terribly wrong with the plain regexp: $p";
}
}

Search::Tools::RegExp::Keyword provides access to the regular expressions for a query keyword.

<<less
Download (0.048MB)
Added: 2006-10-18 License: Perl Artistic License Price:
1102 downloads
Geo::Track::Log 0.02

Geo::Track::Log 0.02


Geo::Track::Log is a Perl module that represent track logs and find a location based on a track log and a date. more>>
Geo::Track::Log is a Perl module that represent track logs and find a location based on a track log and a date.

SYNOPSIS

use Geo::Track::Log;
my $log = new Geo::Track::Log;

# add a point to a track log.
$log->addPoint( {
timestamp => 2004-12-25 12:00:00,
lat => 0.0,
long=> 0.0,
} );

$log->addPoint( {
timestamp => 2004-12-25 13:00:00,
lat => 0.0,
long=> 1.0,
} );

Get our location at a time
my ($pt, $sPt, $ePt) = $log->whereWasI(2004-12-25 12:30:00);
or (a synonym)
my ($pt, $sPt, $ePt) = $log->interpolate(2004-12-25 12:30:00);
(see DESCRIPTION for more)

Load tracklog from a Garnix format file
$log->loadTrackFromGarnix(file handle);

Load Waypoint from a Garnix format file
$log->loadWayFromGarnix(file handle);

Fix the funky Garnix line format
my $pt = $log->fixGarnixTrackLine ( qq( 44? 3 33.23" -123? 5 0.07" 148.0 WGS84 00:50:19-2004/07/12 [1];) )

Load a GPX (GPS XML) format file
$log->loadTrackFromGPX(file handle);

return the earliest point, by time
my $pt = $log->minTimeStamp();

return the latest point, by time
my $pt = $log->maxTimeStamp();

What percent of the way is time $d between the time at points $sPt and $dPt?
my $pct = $self->getPercent($d, $sPt, $ePt);

<<less
Download (0.017MB)
Added: 2006-06-15 License: Perl Artistic License Price:
1226 downloads
Keyword Marketing Buddy 2.3

Keyword Marketing Buddy 2.3


Keyword Marketing Buddy is a great tool that lets you compare the popularity of several different keyword groups at once. more>>
Keyword Marketing Buddy is a great tool that lets you compare the popularity of several different keyword groups at once.
Enter in a few general keywords, and Keyword Marketing Buddy will generate a list of keywords related to the original keywords and order them according to popularity. Keyword Marketing Buddy will even tell you how many searches each keyword gets a month.
Main features:
- Keyword Marketing Buddy is easy to install. Just unzip and upload, or if youre using it on a local server, just unzip!
- The user gives Keyword Marketing Buddy a list of keywords, and the Buddy automatically generates a list of related keywords. For virtually no work at all, you get a lot of great ideas for other keywords you might want to market to.
- Use Keyword Marketing Buddy for your own research, or add it to your web site for added functionality for your visitors.
- Each search produces an easy-to-copy list of comma-separated keyword, popularity pairs, so you can import your lists to a spreadsheet, or imort it into our Keyword Market Value Analyzer.
- Set the maximum number of keywords that can be entered in at one time.
<<less
Download (0.005MB)
Added: 2006-03-01 License: Freeware Price:
1333 downloads
Advance Stock Tracker 0.2.8

Advance Stock Tracker 0.2.8


Advanced Stock Tracking System (AST) is a Web-based application for keeping track of stocks. more>>
Advanced Stock Tracking System (AST) is a Web-based application for keeping track of stocks.

Advance Stock Tracker features a portfolio with dividend tracking, a worksheet to keep track of prospects, a stock comparison utility, and a search engine for the stock market based heavily on technical analysis.

<<less
Download (1.3MB)
Added: 2007-05-07 License: GPL (GNU General Public License) Price:
917 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5