<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Web Data Source &#187; target</title>
	<atom:link href="http://www.webdatasource.com/tag/target/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.webdatasource.com</link>
	<description>your link to better business solutions</description>
	<lastBuildDate>Wed, 03 Aug 2011 19:22:44 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Sitecore Lucene Search Index</title>
		<link>http://www.webdatasource.com/2011/07/sitecore-lucene-search-index/</link>
		<comments>http://www.webdatasource.com/2011/07/sitecore-lucene-search-index/#comments</comments>
		<pubDate>Wed, 27 Jul 2011 15:53:51 +0000</pubDate>
		<dc:creator>Akshay Sura</dc:creator>
				<category><![CDATA[Sitecore]]></category>
		<category><![CDATA[access]]></category>
		<category><![CDATA[AddCrawler]]></category>
		<category><![CDATA[AddIndex]]></category>
		<category><![CDATA[Basic]]></category>
		<category><![CDATA[CES]]></category>
		<category><![CDATA[class]]></category>
		<category><![CDATA[CMS]]></category>
		<category><![CDATA[Config]]></category>
		<category><![CDATA[Configuration]]></category>
		<category><![CDATA[Crawlers]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[DatabaseCrawler]]></category>
		<category><![CDATA[definition]]></category>
		<category><![CDATA[ExcludeTemplate]]></category>
		<category><![CDATA[GOOG]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[google search]]></category>
		<category><![CDATA[GUID]]></category>
		<category><![CDATA[IncludeTemplate]]></category>
		<category><![CDATA[index definitions]]></category>
		<category><![CDATA[index id]]></category>
		<category><![CDATA[indexes]]></category>
		<category><![CDATA[indexing]]></category>
		<category><![CDATA[Links]]></category>
		<category><![CDATA[location]]></category>
		<category><![CDATA[Lucene]]></category>
		<category><![CDATA[Manage]]></category>
		<category><![CDATA[master content]]></category>
		<category><![CDATA[namespace]]></category>
		<category><![CDATA[need]]></category>
		<category><![CDATA[NET]]></category>
		<category><![CDATA[PDF]]></category>
		<category><![CDATA[release]]></category>
		<category><![CDATA[SDN]]></category>
		<category><![CDATA[Search]]></category>
		<category><![CDATA[search classes]]></category>
		<category><![CDATA[search crawlers]]></category>
		<category><![CDATA[SearchConfiguration]]></category>
		<category><![CDATA[section]]></category>
		<category><![CDATA[SES]]></category>
		<category><![CDATA[Tags]]></category>
		<category><![CDATA[target]]></category>
		<category><![CDATA[template]]></category>
		<category><![CDATA[www]]></category>
		<category><![CDATA[xml]]></category>

		<guid isPermaLink="false">http://www.webdatasource.com/?p=16882</guid>
		<description><![CDATA[Sitecore has been using Lucene search since version 5, which used the Sitecore.Data.Indexing namespace and Sitecore -&#62; Indexes section in the Web.Config. Starting in Sitecore 6.4, they introduced a new Search namespace &#8211; Sitecore.Search, this uses the Sitecore -&#62; Search -&#62; Configuration -&#62; Indexes section in Web.Config. From what I know, Sitecore recommends using the [...]]]></description>
			<content:encoded><![CDATA[<p>Sitecore has been using Lucene search since version 5, which used the Sitecore.Data.Indexing namespace and Sitecore -&gt; Indexes section in the Web.Config.</p>
<p>Starting in Sitecore 6.4, they introduced a new Search namespace &#8211; Sitecore.Search, this uses the Sitecore -&gt; Search -&gt; Configuration -&gt; Indexes section in Web.Config.</p>
<p>From what I know, Sitecore recommends using the new namespace and the old namespace is going to be deprecated starting Sitecore 6.5. The following is a blurb from Sitecore 6.5 Release notes from SDN:<br />
&#8220;The Sitecore.Data.Indexing namespace has been deprecated and will be removed in a future version of the CMS in favor of the more powerful and flexible Sitecore.Search classes and corresponding index definitions. &#8220;</p>
<p>Since there is only one document on this new namespace, it&#8217;s difficult to get more information when you find yourself in a bind. I had to google search to find bits and pieces and so I am writing this post.</p>
<p>Here is the link to the PDF on this site. <a href="http://www.webdatasource.com/pdf/sitecore_search_and_indexing-a4.pdf" target="_blank">Click Here</a> (NO SDN access needed)</p>
<p>The basic configuration is given below:</p>
<pre name="code"  class="xml">      &lt;configuration type="Sitecore.Search.SearchConfiguration, Sitecore.Kernel" singleInstance="true"&gt;
        &lt;indexes hint="list:AddIndex"&gt;
          ... ... ...
          &lt;index id="IndexNAME" type="Sitecore.Search.Index, Sitecore.Kernel"&gt;
            &lt;param desc="name"&gt;$(id)&lt;/param&gt;
            &lt;param desc="folder"&gt;im_index&lt;/param&gt;
            &lt;Analyzer ref="search/analyzer"/&gt;
            &lt;locations hint="list:AddCrawler"&gt;
              &lt;master type="Sitecore.Search.Crawlers.DatabaseCrawler, Sitecore.Kernel"&gt;
                &lt;Database&gt;master&lt;/Database&gt;
                &lt;Tags&gt;master content&lt;/Tags&gt;
                &lt;Root&gt;/sitecore/content&lt;/Root&gt;
                &lt;IndexAllFields&gt;true&lt;/IndexAllFields&gt;
                &lt;include hint="list:IncludeTemplate"&gt;
                  &lt;template comment="Template1"&gt;{8917CADF-2148-4328-B595-217C5A9CCA7D}&lt;/template&gt;
                  &lt;template comment="Template2"&gt;{2A18027D-CA51-4E5D-A7C1-51096E09C16C}&lt;/template&gt;
                &lt;/include&gt;
                &lt;include hint="list:ExcludeTemplate"&gt;
                  &lt;template&gt;{8C18027D-CA51-4E5D-A7C1-510965555C}&lt;/template&gt;
                &lt;/include&gt;
                &lt;!--&lt;include hint="list:IncludeField"&gt;
                  &lt;fieldId&gt;{GUID}&lt;/fieldId&gt;
                &lt;/include&gt;--&gt;
              &lt;/master&gt;
            &lt;/locations&gt;
          &lt;/index&gt;
        &lt;/indexes&gt;
      &lt;/configuration&gt;</pre>
<p>Here is a piece of sample code to query the index:</p>
<pre name="code"  class="c-sharp">    Sitecore.Search.Index searchIndex = Sitecore.Search.SearchManager.GetIndex("Search Index Name"); //replace string with the name of the search index
    using (IndexSearchContext context = searchIndex.CreateSearchContext())
    {
        SearchHits hits = context.Search("search string");  //replace string with the actual search string
        SomeRepeater.DataSource = hits.FetchResults(0, 25); //first param is the start item, second is the count
        SomeRepeater.DataBind();
        ResultsCount = hits.FetchResults(0, hits.Length).Count();
    }</pre>
<p>Here are some useful links:</p>
<p><a href="http://sitecoreblog.alexshyba.com/2011/04/search-index-troubleshooting.html" target="_blank">Search Index Troubleshooting</a> by Alex Shyba</p>
<p><a href="http://trac.sitecore.net/IndexViewer" target="_blank">Index Viewer</a> in Sitecore Shared Source</p>
<p>&nbsp;</p>
<p>I hope this is useful. If you have any questions please don&#8217;t hesitate to get in touch!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webdatasource.com/2011/07/sitecore-lucene-search-index/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Technology that Really Makes Your Life Easier &#8211; DropBox</title>
		<link>http://www.webdatasource.com/2009/12/technology-that-really-makes-your-life-easier-dropbox/</link>
		<comments>http://www.webdatasource.com/2009/12/technology-that-really-makes-your-life-easier-dropbox/#comments</comments>
		<pubDate>Fri, 18 Dec 2009 12:40:09 +0000</pubDate>
		<dc:creator>Akshay Sura</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[access]]></category>
		<category><![CDATA[account]]></category>
		<category><![CDATA[address]]></category>
		<category><![CDATA[anyone]]></category>
		<category><![CDATA[backup storage]]></category>
		<category><![CDATA[different computers]]></category>
		<category><![CDATA[document]]></category>
		<category><![CDATA[dropbox]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[family member]]></category>
		<category><![CDATA[few glitches]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[flash drive]]></category>
		<category><![CDATA[getdropbox]]></category>
		<category><![CDATA[group project]]></category>
		<category><![CDATA[kind]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[macintosh]]></category>
		<category><![CDATA[macintosh computer]]></category>
		<category><![CDATA[photos]]></category>
		<category><![CDATA[problem]]></category>
		<category><![CDATA[program]]></category>
		<category><![CDATA[public folder]]></category>
		<category><![CDATA[service]]></category>
		<category><![CDATA[storage space]]></category>
		<category><![CDATA[stress]]></category>
		<category><![CDATA[System]]></category>
		<category><![CDATA[target]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[work]]></category>
		<category><![CDATA[www]]></category>

		<guid isPermaLink="false">http://www.webdatasource.com/?p=16822</guid>
		<description><![CDATA[Have you ever been working on a file on your laptop, then go to retrieve it at work and realize you left the laptop at home? Do you have several computers in the home, and have to kick a family member off of one computer so you can email a document to yourself or save [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">Have you ever been working on a file on your laptop, then go to retrieve it at work and realize you left the laptop at home? Do you have several computers in the home, and have to kick a family member off of one computer so you can email a document to yourself or save it to a flash drive so you can work on it on another computer?</p>
<p style="text-align: justify;">Well, I&#8217;m completely sold on a new idea that has solved this problem for me. It&#8217;s made my life much simpler, and it generally works as advertised.</p>
<p style="text-align: justify;">It&#8217;s called Dropbox, and if you work on several different computers, it will change the way you work – for the better.</p>
<p style="text-align: justify;">Go to <a href="http://www.getdropbox.com" target="_blank">www.getdropbox.com</a>, download the program onto any windows, Linux or Macintosh computer.   The program creates a folder on your computer – anywhere you designate.  Download the program on each of the computers you use, and sign in with the same email address.</p>
<p style="text-align: justify;">Whenever you are working on any file, you simply save it to your Dropbox folder, and it is available nearly immediately on any of the computers where you have Dropbox installed.</p>
<p style="text-align: justify;">Dropbox accepts nearly any kind of file, making it easily accessible. Whenever you update a file and save it to your Dropbox, the updated version is saved to all computers. You can also access your Dropbox folder from any other computer by going to <a href="http://www.getdropbox.com" target="_blank">www.getdropbox.com</a> and logging in with your email address.</p>
<p style="text-align: justify;">While there are a few glitches from time to time (it took me a couple of tries to get one of my computers synched), the system is overall great. It provides online backup storage, seamless document access, and stress saving file synching.</p>
<p style="text-align: justify;">You can make files public if you wish, providing a link to a public folder in your account. The recipients do not need to have a dropbox account to access the files. You can share photos with family or work on a group project without having a single flash drive involved.</p>
<p style="text-align: justify;">There is a free level of service, or you can upgrade to paid status if you need more storage space.</p>
<p style="text-align: justify;">For anyone who regularly uses more than one computer, Dropbox is a service you&#8217;ll want to check out.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webdatasource.com/2009/12/technology-that-really-makes-your-life-easier-dropbox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Has Apple Become “The Man?”</title>
		<link>http://www.webdatasource.com/2009/11/has-apple-become-the-man/</link>
		<comments>http://www.webdatasource.com/2009/11/has-apple-become-the-man/#comments</comments>
		<pubDate>Tue, 17 Nov 2009 02:49:16 +0000</pubDate>
		<dc:creator>Akshay Sura</dc:creator>
				<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[airlines]]></category>
		<category><![CDATA[amp]]></category>
		<category><![CDATA[Apple App]]></category>
		<category><![CDATA[Apple Become]]></category>
		<category><![CDATA[application]]></category>
		<category><![CDATA[application development]]></category>
		<category><![CDATA[bandwagon]]></category>
		<category><![CDATA[block]]></category>
		<category><![CDATA[breaking the mold]]></category>
		<category><![CDATA[company]]></category>
		<category><![CDATA[corporate policies]]></category>
		<category><![CDATA[desertion]]></category>
		<category><![CDATA[doesn]]></category>
		<category><![CDATA[Don]]></category>
		<category><![CDATA[ethos]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[grandma]]></category>
		<category><![CDATA[ground]]></category>
		<category><![CDATA[href]]></category>
		<category><![CDATA[IBM]]></category>
		<category><![CDATA[indication]]></category>
		<category><![CDATA[innovation]]></category>
		<category><![CDATA[ipod]]></category>
		<category><![CDATA[joe hewitt]]></category>
		<category><![CDATA[Man]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[mind]]></category>
		<category><![CDATA[new technology]]></category>
		<category><![CDATA[outsider]]></category>
		<category><![CDATA[platform]]></category>
		<category><![CDATA[platforms]]></category>
		<category><![CDATA[project]]></category>
		<category><![CDATA[protectionist policies]]></category>
		<category><![CDATA[reputation]]></category>
		<category><![CDATA[smart phones]]></category>
		<category><![CDATA[smartphone]]></category>
		<category><![CDATA[smartphones]]></category>
		<category><![CDATA[standard]]></category>
		<category><![CDATA[store]]></category>
		<category><![CDATA[style]]></category>
		<category><![CDATA[suitcase]]></category>
		<category><![CDATA[target]]></category>
		<category><![CDATA[thinking outside the box]]></category>
		<category><![CDATA[thought]]></category>
		<category><![CDATA[TYouch]]></category>
		<category><![CDATA[value]]></category>
		<category><![CDATA[week]]></category>

		<guid isPermaLink="false">http://www.webdatasource.com/?p=16817</guid>
		<description><![CDATA[Apple has built its reputation on innovation, on breaking the mold, on thinking outside the box. But can they keep their outsider ethos when they are the standard instead of the new technology on the block? If recent and continuing developments with the Apple App Store for iPhone and the iPod TYouch are any indication, [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">Apple has built its reputation on innovation, on breaking the mold, on thinking outside the box. But can they keep their outsider ethos when they are the standard instead of the new technology on the block?</p>
<p style="text-align: justify;">If recent and continuing developments with the Apple App Store for iPhone and the iPod TYouch are any indication, then Apple is taking on the protectionist policies more commonly associated with those big, clunky, running-scared companies that Apple has traditionally loved to hate (Think Microsoft  and IBM).</p>
<p style="text-align: justify;">The recent desertion of Joe Hewitt from the Facebook App for iPhone is a great example of how those who value open, creative and unrestricted access are being increasingly put off by Apple’s corporate policies.</p>
<p style="text-align: justify;">Hewitt is not just “one of the developers” on the Facebook for iPhone app, he is the application. And he bolted from the project – not because he doesn’t like what he was doing, but entirely because of Apple’s review policies. (See <a href="http://www.techcrunch.com/2009/11/11/joe-hewitt-developer-of-facebooks-massively-popular-iphone-app-quits-the-project/" target="_blank">http://www.techcrunch.com/2009/11/11/joe-hewitt-developer-of-facebooks-massively-popular-iphone-app-quits-the-project/</a> for more).</p>
<p style="text-align: justify;">The repressive and protectionist policies of Apple (and let’s don’t forget – AT&amp;T behind the scenes) is disturbing not only because it is so contrary to the supposed ethos of Apple and all that it stands for, but also because Apple is the standard for smart phones and application development for smartphones.</p>
<p style="text-align: justify;">If Apple is able to continue their policies that value profit over innovation, then other platforms will feel free to adopt similar models – the standard has been set. It only takes a look at how quickly airlines jumped on the bandwagon to charge customers to check a bag to see that oppressive reviews of new applications could be in the works for every smartphone platform.</p>
<p style="text-align: justify;">Don’t think it can’t happen – three years ago, did it even cross you mind that you might one day have to pay an extra $25 just to take a suitcase along when you flew to grandma’s for a week?</p>
<p style="text-align: justify;">And the other frightening thought in all of this – where does Apple’s innovation go from here? Can we expect more trendsetting and ground breaking products from a company that has joined the ranks of the “profit at all costs” behemoths? Not likely.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webdatasource.com/2009/11/has-apple-become-the-man/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sitecore Recognized as Top Content Management System (CMS)</title>
		<link>http://www.webdatasource.com/2009/10/sitecore-recognized-as-top-content-management-system-cms/</link>
		<comments>http://www.webdatasource.com/2009/10/sitecore-recognized-as-top-content-management-system-cms/#comments</comments>
		<pubDate>Wed, 14 Oct 2009 02:35:19 +0000</pubDate>
		<dc:creator>Akshay Sura</dc:creator>
				<category><![CDATA[Sitecore]]></category>
		<category><![CDATA[analytic tools]]></category>
		<category><![CDATA[business]]></category>
		<category><![CDATA[business software]]></category>
		<category><![CDATA[CMS]]></category>
		<category><![CDATA[company]]></category>
		<category><![CDATA[content]]></category>
		<category><![CDATA[content management system]]></category>
		<category><![CDATA[contexts]]></category>
		<category><![CDATA[dynamic environment]]></category>
		<category><![CDATA[ecommerce]]></category>
		<category><![CDATA[ecommerce products]]></category>
		<category><![CDATA[enjoyable experience]]></category>
		<category><![CDATA[environment]]></category>
		<category><![CDATA[experience]]></category>
		<category><![CDATA[flexibility]]></category>
		<category><![CDATA[forecasting]]></category>
		<category><![CDATA[forrester research]]></category>
		<category><![CDATA[functionality]]></category>
		<category><![CDATA[global approach]]></category>
		<category><![CDATA[independent research firm]]></category>
		<category><![CDATA[knowledge]]></category>
		<category><![CDATA[Management]]></category>
		<category><![CDATA[marketing]]></category>
		<category><![CDATA[marketing departments]]></category>
		<category><![CDATA[multilingual]]></category>
		<category><![CDATA[own website]]></category>
		<category><![CDATA[powerful solution]]></category>
		<category><![CDATA[Presentation]]></category>
		<category><![CDATA[Recognized]]></category>
		<category><![CDATA[research]]></category>
		<category><![CDATA[separation]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[solution]]></category>
		<category><![CDATA[System]]></category>
		<category><![CDATA[target]]></category>
		<category><![CDATA[technical knowledge]]></category>
		<category><![CDATA[using graphics]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[WebDatamation]]></category>
		<category><![CDATA[workflow]]></category>

		<guid isPermaLink="false">http://www.webdatasource.com/?p=16806</guid>
		<description><![CDATA[For businesses that use websites as a key strategic component of their business, a Content Management System or CMS is a vital. We at Webdatamation have long pointed to the power and flexibility of Sitecore as an outstanding solution in the CMS arena. We&#8217;ve been using Sitecore for our own website and for client&#8217;s websites [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">For businesses that use websites as a key strategic component of their business, a Content Management System or CMS is a vital. We at <a href="http://www.webdatamation.com" target="_blank">Webdatamation</a> have long pointed to the power and flexibility of Sitecore as an outstanding solution in the CMS arena.</p>
<p style="text-align: justify;">We&#8217;ve been using Sitecore for our own website and for client&#8217;s websites because of its incredible power and functionality. Now Sitecore has also been recognized by independent research firm <a href="http://www.sitecore.net/en/News/Press-releases/2009/Sitecore-included-in-Forrester-Report.aspx?mobile=0" target="_blank">Forrester Research</a> as a top CMS.</p>
<p style="text-align: justify;">Forrester Research points out what the experts at Webdatamation could tell you &#8212; the flexibility and power of Sitecore make it strong in areas where competitors are weak.</p>
<p style="text-align: justify;">The system is excellent for ease in creating content and integrating the content into a site, managing the workflow, and integrating content.</p>
<p style="text-align: justify;">Sitecore also gets high marks for its ability to effectively target sites and content, having a global approach, integrating numerous sites, and for its community controls.</p>
<p style="text-align: justify;">Sitecore leads out in multilingual content and in providing the means for making a separation between content and the presentation. This creates a dynamic environment for delivering the message and for using graphics and text in other contexts for different purposes.</p>
<p style="text-align: justify;"><a href="http://www.webdatamation.com/" target="_blank">Webdatamation</a> chose Sitecore in part because it is a powerful solution for both simple websites as well as complex, fully powered sites.</p>
<p style="text-align: justify;">The features of Sitecore allow for a highly flexible website that can integrate all of the Web 2.0 features.  Marketing departments can add website content or sales information to a company site easily without a great deal of technical knowledge, and still maintain a professional and responsive site.</p>
<p style="text-align: justify;">It&#8217;s simple to integrate any analytic tools  and other business software into the Sitecore system, and it&#8217;s compatible with ecommerce products so that customers and site visitors have a seamless and enjoyable experience on your site.</p>
<p style="text-align: justify;">We also like Sitecore because of their constant updates, research and trend forecasting. We know that our customers will have all the latest tools at their fingertips as soon as they are available.</p>
<p style="text-align: justify;">If you haven&#8217;t yet seen what Sitecore can do for you, contact us at <a href="http://www.webdatamation.com/Contact%20Us.aspx" target="_blank">Webdatamation</a> and let us give you a glimpse.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webdatasource.com/2009/10/sitecore-recognized-as-top-content-management-system-cms/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IPhone App Development</title>
		<link>http://www.webdatasource.com/2009/07/iphone-app-development/</link>
		<comments>http://www.webdatasource.com/2009/07/iphone-app-development/#comments</comments>
		<pubDate>Mon, 06 Jul 2009 15:48:39 +0000</pubDate>
		<dc:creator>NetBee</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[accelerometer]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[Apple Apps]]></category>
		<category><![CDATA[apps]]></category>
		<category><![CDATA[brand]]></category>
		<category><![CDATA[brand loyalty]]></category>
		<category><![CDATA[check]]></category>
		<category><![CDATA[credit]]></category>
		<category><![CDATA[crowd]]></category>
		<category><![CDATA[device]]></category>
		<category><![CDATA[early adopters]]></category>
		<category><![CDATA[expertise]]></category>
		<category><![CDATA[external links]]></category>
		<category><![CDATA[gaming device]]></category>
		<category><![CDATA[high resolution]]></category>
		<category><![CDATA[href]]></category>
		<category><![CDATA[marketing]]></category>
		<category><![CDATA[mobile gaming]]></category>
		<category><![CDATA[name]]></category>
		<category><![CDATA[percent]]></category>
		<category><![CDATA[price]]></category>
		<category><![CDATA[process]]></category>
		<category><![CDATA[program software]]></category>
		<category><![CDATA[promotion]]></category>
		<category><![CDATA[proprietary company]]></category>
		<category><![CDATA[radio]]></category>
		<category><![CDATA[revenue]]></category>
		<category><![CDATA[sdk]]></category>
		<category><![CDATA[seo search engine optimization]]></category>
		<category><![CDATA[smartphone]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[software development kit]]></category>
		<category><![CDATA[target]]></category>
		<category><![CDATA[third party]]></category>
		<category><![CDATA[understanding]]></category>
		<category><![CDATA[weather]]></category>

		<guid isPermaLink="false">http://www.webdatasource.com/?p=16748</guid>
		<description><![CDATA[<p style="text-align: justify;">Developing apps for the iPhone can be fun and entertaining, but more importantly, it can be profitable for your businesses.</p>
<p style="text-align: justify;">iPhone owners are a desirable demographic for any business, but technology ones in particular. These customers like to see themselves as unique and creative, and they are generally early adopters.</p>
<p style="text-align: justify;">If you can create a clever, functional or fun app for the iPhone, either free or paid, and connect it organically with your company and your company name or logo, then you will have a great match that will build not only your brand and brand loyalty, but will connect you to the iPhone community.</p>
<p style="text-align: justify;">If you don’t have the expertise or understanding of development but want to reach the iPhone market, come to <a href="http://www.webdatamation.com" target="_blank">Webdatamation </a>with an idea for an iPhone app, and let us take it from there.</p>
<p style="text-align: justify;">Apple is a proprietary company, and all apps for the iPhone are sold in the Apple Apps Store. You can offer an app for free, or you can charge for it. There is no charge to you if you offer the app for free, and if you charge, then Apple keeps 30 percent of the sales price and you keep 70 percent.</p>
<p style="text-align: justify;">There’s another possibility as well – give away a stripped down version for free, then charge a fee for a more developed, feature filled version.</p>]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">Developing apps for the iPhone can be fun and entertaining, but more importantly, it can be profitable for your businesses.</p>
<p style="text-align: justify;">iPhone owners are a desirable demographic for any business, but technology ones in particular. These customers like to see themselves as unique and creative, and they are generally early adopters.</p>
<p style="text-align: justify;">If you can create a clever, functional or fun app for the iPhone, either free or paid, and connect it organically with your company and your company name or logo, then you will have a great match that will build not only your brand and brand loyalty, but will connect you to the iPhone community.</p>
<p style="text-align: justify;">If you don’t have the expertise or understanding of development but want to reach the iPhone market, come to <a href="http://www.webdatamation.com" target="_blank">Webdatamation </a>with an idea for an iPhone app, and let us take it from there.</p>
<p style="text-align: justify;">Apple is a proprietary company, and all apps for the iPhone are sold in the Apple Apps Store. You can offer an app for free, or you can charge for it. There is no charge to you if you offer the app for free, and if you charge, then Apple keeps 30 percent of the sales price and you keep 70 percent.</p>
<p style="text-align: justify;">There’s another possibility as well – give away a stripped down version for free, then charge a fee for a more developed, feature filled version.</p>
<p style="text-align: justify;">It’s not a bad deal in many ways, since you set your own price for the app, you pay no hosting fees, Apple will send you a revenue check each month, and you don’t need to open a credit card account or worry about marketing.</p>
<p style="text-align: justify;">Apple has a development program, Software Development Kit or SDK, that developers use to develop iPhone apps. Third party programs are out there that streamline the development process, not just for iPhone, but for android as well.</p>
<p style="text-align: justify;">Games, from simple to more complex, are the top apps for the iPhone. With its high resolution screen and accelerometer, the iPhone is the perfect mobile gaming device. Weather, shopping and radio programs are also popular.</p>
<p style="text-align: justify;">Smartphone apps are a great way to get your name out into the hands of the techy crowd and do some fun and subtle promotion of your product and site that people voluntarily bring into their lives. It’s a win for marketing and a win for your customer, so iPhone app development is a great way to go.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webdatasource.com/2009/07/iphone-app-development/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Unique Search &#8211; Targeting Semantic Root Phrases and Keywords</title>
		<link>http://www.webdatasource.com/2008/11/unique-search-targeting-semantic-root-phrases-and-keywords/</link>
		<comments>http://www.webdatasource.com/2008/11/unique-search-targeting-semantic-root-phrases-and-keywords/#comments</comments>
		<pubDate>Fri, 14 Nov 2008 13:49:49 +0000</pubDate>
		<dc:creator>Jeffrey Smith</dc:creator>
				<category><![CDATA[Search Engines]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[SEO Design Solutions]]></category>
		<category><![CDATA[competitor]]></category>
		<category><![CDATA[continuity]]></category>
		<category><![CDATA[conversion]]></category>
		<category><![CDATA[eggs in one basket]]></category>
		<category><![CDATA[exodus]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[low hanging fruit]]></category>
		<category><![CDATA[magic phrase]]></category>
		<category><![CDATA[niche]]></category>
		<category><![CDATA[odds]]></category>
		<category><![CDATA[premise]]></category>
		<category><![CDATA[relevance]]></category>
		<category><![CDATA[search behavior]]></category>
		<category><![CDATA[target]]></category>
		<category><![CDATA[wikipedia]]></category>
		<category><![CDATA[yahoo msn]]></category>

		<guid isPermaLink="false">http://www.seodesignsolutions.com/blog/?p=494</guid>
		<description><![CDATA[<p style="text-align: justify;">There is a saying we throw around the office, <strong>target the root and devour the low hanging fruit</strong>. Simply put, low hanging fruit (keywords with high conversion and low competition) are one of the best kept secrets of <a href="http://www.seodesignsolutions.com/">SEO</a>.</p>
<p style="text-align: justify;">There are more keywords under the surface than their are keywords revealed. Leave it to most businesses to always want to go bigger, better and over the top in an attempt to conquer the most powerful or <a href="http://www.seodesignsolutions.com/blog/link-building/optimizing-the-most-searched-keywords-to-target-your-niche/">most searched keywords</a> in a niche or take on the major players for vanity plate keywords.</p>
<p style="text-align: justify;">Not to say that the competitive nature in most of us doesn’t get the best of us, who doesn’t want to rank higher in Google, Yahoo, MSN or Ask? The key is asking yourself about <strong>time to market, topical continuity, relevance and conversion </strong>and if you would rather keep your eggs in one basket or spread around the risk to offset the odds.</p>]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">There is a saying we throw around the office, <strong>target the root and devour the low hanging fruit</strong>. Simply put, low hanging fruit (keywords with high conversion and low competition) are one of the best kept secrets of <a href="http://www.seodesignsolutions.com/">SEO</a>.</p>
<p style="text-align: justify;">There are more keywords under the surface than their are keywords revealed. Leave it to most businesses to always want to go bigger, better and over the top in an attempt to conquer the most powerful or <a href="http://www.seodesignsolutions.com/blog/link-building/optimizing-the-most-searched-keywords-to-target-your-niche/">most searched keywords</a> in a niche or take on the major players for vanity plate keywords.</p>
<p style="text-align: justify;">Not to say that the competitive nature in most of us doesn’t get the best of us, who doesn’t want to rank higher in Google, Yahoo, MSN or Ask? The key is asking yourself about <strong>time to market, topical continuity, relevance and conversion </strong>and if you would rather keep your eggs in one basket or spread around the risk to offset the odds.</p>
<p style="text-align: justify;">Does a visitor care how many competing page there are for the query they execute (such as 1 of 10 of 100,000 results or 1 of 10 of 100,000,000?), hardly, but does an SEO or a business targeting that keyword, you bet they do, since they have to climb that mountain to reach the top 10.</p>
<p style="text-align: justify;">Going back to behavior, is the need to necessitate a keyword victory over a competitor really matter if the keyword performs poorly? I can assure you, not every keyword is laced in gold. The idea that as soon as you get that one magic phrase, your business is in the clear is a reality that can change.</p>
<p style="text-align: justify;">The premise of search behavior shifting can leave a 6 month exodus of trying to achieve one specific keyword or phrase flat if people simply stop searching for that exact phrase, which leads to my conclusion.</p>
<p style="text-align: justify;"><strong>Don’t Assume, You Either Know or You Don’t Know:</strong></p>
<p style="text-align: justify;">Hedging your SEO efforts, such as tackling 50 keywords vs. 5 is one way eliminate the dependency on any one keyword or another to save the day. Just create focused content with a clearly delineated objective, since there is no limit to how thorough your content can be [think wikipedia but on a smaller scale].</p>
<p style="text-align: justify;"><strong>The assumption in the heading suggests:</strong></p>
<p style="text-align: justify;">1) You never know exactly how search engine algorithms are going to slice and dice your pages or how many or few keywords each page can rank for. We can speculate, but organic SEO can really deliver traffic.</p>
<p style="text-align: justify;">This means that relevance for a query can align from <strong>a keyword from the title</strong>, another <strong>keyword from the URL string</strong>, another keyword gets latched on from <strong>a description tag </strong> and yet another portion of the <strong>keyword in the body</strong> copy of the document. Even though the snippets returned in the search result is what is above the surface, you never know how deep a search query can go into your site, one page or all of your pages to assess relevance.</p>
<p style="text-align: justify;">The point being, unless you have a crystal ball or write the algorithm (which I doubt) then such things are constantly being tweaked and adjusted to return more relevant results. So, the more narrow your keyword focus, the more of the market you potentially miss.</p>
<p style="text-align: justify;">2) If site architecture, content and linking are implemented properly (optimized) then each page can rank specifically for numerous “exact match” and “broad match” (general) keywords and phrases with the same effort of just a few keywords. The key is each page owns a focus or range or phrases it targets, then you coordinate the pages to work as a collective masterpiece.</p>
<p style="text-align: justify;">The takeaway is, <strong>the web is a work in progress</strong> so don’t obsess and just target 10 phrases, with a bit more energy and effort <strong>you can target 100 long-tail phrases that may collectively deliver 10 times the traffic daily</strong> than a vanity plate (common sense keyword) based on (partial) keyword research.</p>
<p style="text-align: justify;">The way you find gems like that are (1) check your bounce rates and look for semantic similarities to base your next batch of posts or articles (if you have a blog). The search algorithm sees your pages differently than you do, however the idea is to work with it, not against it.</p>
<p style="text-align: justify;">Keyword tools can only call it as they see it, but since the majority of searches are based on the subjective mindset and search behavior of millions of unique minds, the common threads are not as common as we surmise.</p>
<p style="text-align: justify;">For every common sense keyword or root phrase based on captured data, there are 100 more long-tail equivalents you could rank for as well with a few slight tweaks to titles, links and layout. So, does tunnel vision on the top 2 or number 1 keyword in your market have you obsessed?</p>
<p style="text-align: justify;">If so, then it may be time to step back, reassess your ranking objectives and implement a <a href="http://www.seodesignsolutions.com/blog/link-building/should-you-build-links-for-competitive-terms-or-the-long-tail-of-search/">long-tail SEO campaign</a> to get you over the hump until your major keywords take the stage in the top 10.</p>
<p style="text-align: justify;">
]]></content:encoded>
			<wfw:commentRss>http://www.webdatasource.com/2008/11/unique-search-targeting-semantic-root-phrases-and-keywords/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Every Word is a Keyword for SEO</title>
		<link>http://www.webdatasource.com/2008/11/every-word-is-a-keyword-for-seo/</link>
		<comments>http://www.webdatasource.com/2008/11/every-word-is-a-keyword-for-seo/#comments</comments>
		<pubDate>Sun, 09 Nov 2008 14:58:44 +0000</pubDate>
		<dc:creator>Jeffrey Smith</dc:creator>
				<category><![CDATA[Search Engines]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[SEO Design Solutions]]></category>
		<category><![CDATA[common denominators]]></category>
		<category><![CDATA[common sense]]></category>
		<category><![CDATA[conclusion]]></category>
		<category><![CDATA[conversion]]></category>
		<category><![CDATA[cross sections]]></category>
		<category><![CDATA[feat]]></category>
		<category><![CDATA[hanging]]></category>
		<category><![CDATA[hot spots]]></category>
		<category><![CDATA[information retrieval]]></category>
		<category><![CDATA[keyphrase]]></category>
		<category><![CDATA[keyword research tools]]></category>
		<category><![CDATA[language barriers]]></category>
		<category><![CDATA[low hanging fruit]]></category>
		<category><![CDATA[manorisms]]></category>
		<category><![CDATA[market focus]]></category>
		<category><![CDATA[match]]></category>
		<category><![CDATA[Metrics]]></category>
		<category><![CDATA[mind]]></category>
		<category><![CDATA[opportunity]]></category>
		<category><![CDATA[page]]></category>
		<category><![CDATA[personal experience]]></category>
		<category><![CDATA[personal preferences]]></category>
		<category><![CDATA[popularity]]></category>
		<category><![CDATA[relevance]]></category>
		<category><![CDATA[relevant traffic]]></category>
		<category><![CDATA[reputation]]></category>
		<category><![CDATA[springboard]]></category>
		<category><![CDATA[synergy]]></category>
		<category><![CDATA[target]]></category>
		<category><![CDATA[target audience]]></category>
		<category><![CDATA[traditional appeal]]></category>
		<category><![CDATA[type]]></category>
		<category><![CDATA[website]]></category>
		<category><![CDATA[words search]]></category>

		<guid isPermaLink="false">http://www.seodesignsolutions.com/blog/?p=433</guid>
		<description><![CDATA[<p style="text-align: justify;">You have to look beyond keyword research if you want to be one of those companies that always appears at the top of search results. This implies knowing how to create traditional appeal in non traditional ways.</p>
<p style="text-align: justify;">However, what does that mean specifically? We know that doubling conversion does not necessarily mean you have to double your traffic.</p>
<p style="text-align: justify;">It means that you just have to create more <strong>lucrative cross-sections or co-occurrence of keywords</strong> (or pages) that appeal to your target audience. This feat is easily accomplished with <a href="http://www.seodesignsolutions.com/">SEO</a> and within the <strong>context of your pages</strong> using <a href="http://www.seodesignsolutions.com/blog/search-engine-optimization/how-to-grow-an-organic-search-ranking-using-thematic-search-modifiers/">cross-sections of keywords</a> that will draw an audience based on the content and market focus.</p>]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">You have to look beyond keyword research if you want to be one of those companies that always appears at the top of search results. This implies knowing how to create traditional appeal in non traditional ways.</p>
<p style="text-align: justify;">However, what does that mean specifically? We know that doubling conversion does not necessarily mean you have to double your traffic.</p>
<p style="text-align: justify;">It means that you just have to create more <strong>lucrative cross-sections or co-occurrence of keywords</strong> (or pages) that appeal to your target audience. This feat is easily accomplished with <a href="http://www.seodesignsolutions.com/">SEO</a> and within the <strong>context of your pages</strong> using <a href="http://www.seodesignsolutions.com/blog/search-engine-optimization/how-to-grow-an-organic-search-ranking-using-thematic-search-modifiers/">cross-sections of keywords</a> that will draw an audience based on the content and market focus.</p>
<p style="text-align: justify;">This is the principle of funneling, which implies funneling relevant traffic based on “broad match” and “exact match” traffic as a result of information retrieval. What happens next is pure synergy, a person inputs words, search engine identifies patterns and based on indicators of reputation and relevance return a page from a website.</p>
<p style="text-align: justify;">Considering there are millions of ways for each visitor to arrive at the same page or same conclusion, depending on their personal experience or manorisms. Since no two people are alike (although there are common denominators) each inevitably searches their own way.</p>
<p style="text-align: justify;">Also, since most searches are unique (meaning they have never been executed before) that represents a tremendous opportunity for sites that target low hanging fruit (available keywords) while targeting more aggressive key phrases.</p>
<p style="text-align: justify;">Keep in mind that every word when combined with another word is a potential keyphrase. Also, since you have no control over what a person may type in a search engine to find your website, you essentially do your best based on traditional keyword research tools, common sense and other metrics to gauge popularity and anticipated traffic.</p>
<p style="text-align: justify;">However language barriers, personal preferences and other components of distinction can create <strong>hot spots</strong> as a website can double as a hub or springboard for other useful content. The gist is, by targeting enough <a href="http://www.seodesignsolutions.com/blog/seo-resources/targeting-keywords-within-your-reach/">low hanging fruit</a> (root keywords within range), you systematically increase the volume of traffic and potential interactions with prospects.</p>
<p style="text-align: justify;">This is the way a website can showcase a stable increase in traffic each month. By using content as spider bait, linking to more relevant pages in the context of each post and targeting non-traditional, less competitive keyword combinations.</p>
<p style="text-align: justify;">Every top 10 ranking you produce is an indicator of your websites strength to search engines. Eventually your pages become powerhouses and funnel tremendous surges of link juice into different areas of the website which continually emerge is unique and uncharacteristic ways.</p>
<p style="text-align: justify;">The conclusion here is to look beyond keyword research and tap into the raw and latent potential of LSI (<a href="http://www.seodesignsolutions.com/blog/search-engine-optimization/semantic-optimization-of-keywords-for-organic-seo/">latent semantic indexing</a> and phrase rank) within each of the pages in your website.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webdatasource.com/2008/11/every-word-is-a-keyword-for-seo/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Personalize Your Link Building</title>
		<link>http://www.webdatasource.com/2008/10/personalize-your-link-building/</link>
		<comments>http://www.webdatasource.com/2008/10/personalize-your-link-building/#comments</comments>
		<pubDate>Wed, 08 Oct 2008 01:38:00 +0000</pubDate>
		<dc:creator>Julie Joyce</dc:creator>
				<category><![CDATA[Search Engine Land Columns]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[age groups]]></category>
		<category><![CDATA[amount]]></category>
		<category><![CDATA[amount of time]]></category>
		<category><![CDATA[analysis]]></category>
		<category><![CDATA[approach]]></category>
		<category><![CDATA[best bet]]></category>
		<category><![CDATA[bit]]></category>
		<category><![CDATA[building]]></category>
		<category><![CDATA[child]]></category>
		<category><![CDATA[city]]></category>
		<category><![CDATA[connection]]></category>
		<category><![CDATA[core]]></category>
		<category><![CDATA[cultural relativism]]></category>
		<category><![CDATA[culture]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[doubt]]></category>
		<category><![CDATA[essence]]></category>
		<category><![CDATA[ethnographic method]]></category>
		<category><![CDATA[focus]]></category>
		<category><![CDATA[functional reasons]]></category>
		<category><![CDATA[group]]></category>
		<category><![CDATA[help]]></category>
		<category><![CDATA[identity]]></category>
		<category><![CDATA[interest]]></category>
		<category><![CDATA[link]]></category>
		<category><![CDATA[link partner]]></category>
		<category><![CDATA[marketing]]></category>
		<category><![CDATA[mindset]]></category>
		<category><![CDATA[online]]></category>
		<category><![CDATA[order]]></category>
		<category><![CDATA[output]]></category>
		<category><![CDATA[outsider]]></category>
		<category><![CDATA[person]]></category>
		<category><![CDATA[persona]]></category>
		<category><![CDATA[Personas]]></category>
		<category><![CDATA[physical cues]]></category>
		<category><![CDATA[process]]></category>
		<category><![CDATA[question]]></category>
		<category><![CDATA[restaurant]]></category>
		<category><![CDATA[site]]></category>
		<category><![CDATA[someone]]></category>
		<category><![CDATA[something]]></category>
		<category><![CDATA[start from scratch]]></category>
		<category><![CDATA[target]]></category>
		<category><![CDATA[target audience]]></category>
		<category><![CDATA[target market]]></category>
		<category><![CDATA[usability]]></category>
		<category><![CDATA[use]]></category>
		<category><![CDATA[way]]></category>

		<guid isPermaLink="false">http://searchengineland.com/?p=14848</guid>
		<description><![CDATA[<p style="text-align: justify;">The ethnographic method is an approach of studying a person or group of people by participating in the culture of interest while still remaining a bit of an outsider. At its core is the focus on cultural relativism, which is seeing something through the eyes of the involved. Thus, to get to know someone or a group of people, you have to lose your own set of beliefs and views and start from scratch as you seek out the functional reasons why things happen.</p>

<p style="text-align: justify;">This method is critical for successfully connecting to people, especially online when you have no physical cues to tell you about a person. In essence, you have to lose your own identity at first, in order to get a better idea of how to best connect to someone new. When you approach a potential link partner, you know very little about that person except for a few clues picked up in the analysis of the site that he or she controls. Your best bet is to pick up that information as quickly as possible, because you have a very limited amount of time to make or break that connection.
Personas makes use of the ethnographic method in SEO and are intensely valuable. This process helps you learn about your audience and mindset, and the resulting personas can help you to compare the output of your efforts to the target market in question. It’s commonplace to use personas in areas like usability and social media, but they also can be a tremendous help when written specifically for link development. An audience IS an audience, after all.
<p style="text-align: justify;"><strong>Writing personas</strong></p>]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">The ethnographic method is an approach of studying a person or group of people by participating in the culture of interest while still remaining a bit of an outsider. At its core is the focus on cultural relativism, which is seeing something through the eyes of the involved. Thus, to get to know someone or a group of people, you have to lose your own set of beliefs and views and start from scratch as you seek out the functional reasons why things happen.</p>
<p style="text-align: justify;">This method is critical for successfully connecting to people, especially online when you have no physical cues to tell you about a person. In essence, you have to lose your own identity at first, in order to get a better idea of how to best connect to someone new. When you approach a potential link partner, you know very little about that person except for a few clues picked up in the analysis of the site that he or she controls. Your best bet is to pick up that information as quickly as possible, because you have a very limited amount of time to make or break that connection.<br />
Personas makes use of the ethnographic method in SEO and are intensely valuable. This process helps you learn about your audience and mindset, and the resulting personas can help you to compare the output of your efforts to the target market in question. It’s commonplace to use personas in areas like usability and social media, but they also can be a tremendous help when written specifically for link development. An audience IS an audience, after all.</p>
<p style="text-align: justify;"><strong>Writing personas</strong></p>
<p style="text-align: justify;">To get started on writing a few personas, you have to think about your target audience for link building, in the same way that you’d think about it for anything else related to marketing. Who are these people, what are their age groups, what is their “culture”, what will speak to them and open up the connection in a positive manner? If you’re in doubt about your target audience, talk to the owner of the site you’re working on. Once you get basic information, start to dream up a few actual people who fit the profiles that you have, and flesh them out as much as you can.</p>
<p style="text-align: justify;">A typical persona should contain as much identifying information as possible without being so unique that it cannot be used to speak to a larger group. That’s the tricky part, but you can overcome it by imagining common characteristics of users (they like punk rock) rather than specifics that will only fit a tiny percentage of your audience (they like early Avail). Start out by identifying a few different segments of your audience, writing a persona for each. Once you have these, take one and read it until you can get into the mindset of it, and write your link request accordingly. Remember that this persona represents your target link partners, so make use of language and references that this group will respond to, and adjust as needed.</p>
<p style="text-align: justify;"><strong>Sample persona</strong></p>
<p style="text-align: justify;">Below is a persona created by one of my link builders for use on a restaurant review site:</p>
<blockquote style="text-align: justify;"><p>Caren is a 43 year old mother of 3. Her children are 15, 17, and 21. Before having children, Caren obtained a degree in elementary education and taught until her second child was born. Since then, she has been a stay at home mom. She has been in charge of cleaning, cooking, carpooling to and from soccer and rugby practices. Her oldest child is attending a university in the city. Her husband is the local family doctor and can still be found making house calls. Caren’s happiness comes from her family and baking. She bakes often and makes the occasional trip into the city to check in on her oldest child.</p></blockquote>
<p style="text-align: justify;">This persona does make use of some serious specific. However, that’s just so we can get into the mindset of knowing how to approach someone like Caren. If you take the basics, you’ll see our target market for link building here, which is a woman in her 40s who wants a few restaurant suggestions for when she’s in the big city every now and then. We hope to approach the Carens of the world in such a way that they will find it in their hearts to link to our site. Thus, we probably aren’t going to speak to them as if they’re college-age males who are heavily into sports. We also can make more informed decisions on other relevant sites to approach for link building once we’re in Caren’s mindset, as we think about other interests that someone like Caren might have. Once you have the basics (woman in her 40s making a few trips to the big city), you’re well on your way to identifying other types of interests that Caren might have. Armed with this information, your link building efforts should be just the slightest bit easier.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webdatasource.com/2008/10/personalize-your-link-building/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A Beginner’s Guide to Pay Per Click (PPC) Advertising</title>
		<link>http://www.webdatasource.com/2008/10/a-beginners-guide-to-pay-per-click-ppc-advertising/</link>
		<comments>http://www.webdatasource.com/2008/10/a-beginners-guide-to-pay-per-click-ppc-advertising/#comments</comments>
		<pubDate>Wed, 01 Oct 2008 23:00:38 +0000</pubDate>
		<dc:creator>Manish Pandey</dc:creator>
				<category><![CDATA[Search Engines]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[SEO MegaCorp News Blog]]></category>
		<category><![CDATA[advertisements]]></category>
		<category><![CDATA[advertiser]]></category>
		<category><![CDATA[advertisers]]></category>
		<category><![CDATA[advertising]]></category>
		<category><![CDATA[advertising campaigns]]></category>
		<category><![CDATA[all sorts]]></category>
		<category><![CDATA[amount of money]]></category>
		<category><![CDATA[battle]]></category>
		<category><![CDATA[business]]></category>
		<category><![CDATA[business websites]]></category>
		<category><![CDATA[campaign]]></category>
		<category><![CDATA[click]]></category>
		<category><![CDATA[engine]]></category>
		<category><![CDATA[entities]]></category>
		<category><![CDATA[fact]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[ground]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[internet usage]]></category>
		<category><![CDATA[key reasons]]></category>
		<category><![CDATA[Live]]></category>
		<category><![CDATA[market]]></category>
		<category><![CDATA[Merely]]></category>
		<category><![CDATA[mind]]></category>
		<category><![CDATA[MSN]]></category>
		<category><![CDATA[niche]]></category>
		<category><![CDATA[nothing]]></category>
		<category><![CDATA[online]]></category>
		<category><![CDATA[Overture]]></category>
		<category><![CDATA[Pay]]></category>
		<category><![CDATA[Per-Click]]></category>
		<category><![CDATA[phrases]]></category>
		<category><![CDATA[place]]></category>
		<category><![CDATA[planning]]></category>
		<category><![CDATA[popularity]]></category>
		<category><![CDATA[PPC]]></category>
		<category><![CDATA[presence]]></category>
		<category><![CDATA[product]]></category>
		<category><![CDATA[Search]]></category>
		<category><![CDATA[search pages]]></category>
		<category><![CDATA[search result]]></category>
		<category><![CDATA[service]]></category>
		<category><![CDATA[share]]></category>
		<category><![CDATA[side]]></category>
		<category><![CDATA[someone]]></category>
		<category><![CDATA[success]]></category>
		<category><![CDATA[success stories]]></category>
		<category><![CDATA[target]]></category>
		<category><![CDATA[text]]></category>
		<category><![CDATA[text advertisement]]></category>
		<category><![CDATA[traffic]]></category>
		<category><![CDATA[visitor]]></category>
		<category><![CDATA[way]]></category>
		<category><![CDATA[web marketing tools]]></category>
		<category><![CDATA[website]]></category>
		<category><![CDATA[Websites]]></category>
		<category><![CDATA[World]]></category>
		<category><![CDATA[Yahoo]]></category>

		<guid isPermaLink="false">http://www.seomegacorp.com/blog/2008/a-beginners-guide-to-pay-per-click-ppc-advertising/</guid>
		<description><![CDATA[<p style="text-align: justify;"><strong>Pay Per Click or PPC is among the most popular of all web-marketing tools. It is nothing but a small two or three line text advertisement which contains keywords and phrases. These small advertisements are usually found on the right side of search pages on leading search engines. Quite often one or two links are also highlighted on search pages. These links are termed ‘sponsored links’ and can be seen in leading search engines such as <a href="http://www.google.com">Google</a>, <a href="http://www.live.com">MSN Live</a> and <a href="http://search.yahoo.com">Yahoo</a>. These sponsored links are nothing but PPC advertisements.</strong></p>
<p style="text-align: justify;">The three entities involved in PPC advertising are the visitor, the host that carries the advertisement and the advertiser, who has advertised a product or service on the host website, usually a leading search engine. In this form of advertising, advertisers have to bid on keywords and phrases. Whenever someone searches a product or service using certain keywords, the search result page will feature those advertisements which contain the keywords using which the visitor actually searched in the first place.</p>]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;"><strong>Pay Per Click or PPC is among the most popular of all web-marketing tools. It is nothing but a small two or three line text advertisement which contains keywords and phrases. These small advertisements are usually found on the right side of search pages on leading search engines. Quite often one or two links are also highlighted on search pages. These links are termed ‘sponsored links’ and can be seen in leading search engines such as <a href="http://www.google.com">Google</a>, <a href="http://www.live.com">MSN Live</a> and <a href="http://search.yahoo.com">Yahoo</a>. These sponsored links are nothing but PPC advertisements.</strong></p>
<p style="text-align: justify;">The three entities involved in PPC advertising are the visitor, the host that carries the advertisement and the advertiser, who has advertised a product or service on the host website, usually a leading search engine. In this form of advertising, advertisers have to bid on keywords and phrases. Whenever someone searches a product or service using certain keywords, the search result page will feature those advertisements which contain the keywords using which the visitor actually searched in the first place.</p>
<p style="text-align: justify;">The internet is fast becoming the battle ground for business to garner their share of the market. With increasing internet usage, people around the world are searching for all sorts of products and services online these days. It has therefore become important for almost every business to have a significant online presence. Merely having an online presence though will not guarantee business. Websites need to attract traffic and this is where PPC advertising steps in.</p>
<p style="text-align: justify;">PPC advertising is growing rapidly at a mind boggling pace. Its popularity can be gauged from the fact that out of the total amount of money that is spent on search engine advertising, a whopping 81% is spent on PPC advertising. These figures do not come as a surprise to those businesses that have benefited from PPC advertising. There are several success stories of businesses that have been able to make the most out of PPC advertising campaigns.</p>
<p style="text-align: justify;"><strong>The key reasons for the popularity of PPC advertising include:</strong></p>
<ol style="text-align: justify;">
<li>The risk involved is low since the investment is minimal.</li>
<li>These advertising programs are fast to implement when compared to other media.</li>
<li>Advertisers can manipulate ad positions and also control costs with them.</li>
<li>Instantaneous results are a good possibility with PPC advertising.</li>
<li>PPC advertisements give an opportunity for businesses to test their products for online marketing feasibility.</li>
</ol>
<p style="text-align: justify;">PPC: A Brief History</p>
<p style="text-align: justify;">Contrary to popular perception PPC advertisements are not a recent phenomenon. They have been in existence for well over a decade now. The term was increasingly heard during the mid 1990s when the dotcom boom happened. One of the companies that pioneered the concept was goto.com which later on was rechristened Overture. In 2003 Yahoo took over Overture. The actual PPC scene began to see hectic activities once Google launched its ‘Ad Words solution to PPC. Almost every major search engine is into this form of advertising these days.</p>
<p style="text-align: justify;">The minimum price for click which is popularly referred to as ‘cost per click’ varies from one search engine to another. It also depends on the competition involved for a particular keyword list or phrase. It is for this reason that particular keywords and phrases are known to cost more on leading search engines.</p>
<p style="text-align: justify;">Steps Involved in an Effective PPC Advertising Campaign</p>
<p style="text-align: justify;">Although PPC advertising can look a relatively simple process, there are several issues that you will need to deal with once you decide on an advertising campaign. From choosing the right keywords to designing an attractive landing page, you will need to take care of several aspects.</p>
<p style="text-align: justify;"><em>A PPC Ad.</em><br />
Several businesses have taken advantage of PPC advertising to make profits. With proper planning, you can implement a meaningful PPC advertising campaign, which can in turn mean more profits to your business. Let us look at the steps involved in making an effective PPC advertising campaign.</p>
<ol style="text-align: justify;">
<li>Selection of the appropriate keywords or phrases is the first step involved in PPC advertising. Remember, keywords and phrases are the cornerstones of success in a PPC advertising campaign. They are the foundation on which the entire campaign is built upon and developed. If you are already advertising on other media, then you also need to ensure that your PPC advertising campaign also complements them too.</li>
<li>Before you implement your PPC advertising campaign, you must first of all decide your budget. Proper planning will ensure that you do not overspend, while at the same time get effective results from your advertising campaign.</li>
<li>You must be clear as to who your target consumers are. This way you will ensure that you reach potential consumers through effective advertisements.</li>
<li>One way to target your target consumers would be to decide on a niche. Even if your niche market were to be small, a well directed and created PPC advertising campaigns can work wonders for your niche business area.</li>
<li>It is not enough if you just advertise and then assume that it would be effective in getting more business. You should constantly monitor your PPC advertising campaign. Always remember that the internet is a dynamic place, where things change very fast. You therefore need to make sure that your PPC campaign is in tune with the changing trends.</li>
<li>You must have a close look at statistical reports that are associated with your online advertising campaign. This will help you gauge the effectiveness of your PPC advertising campaign.</li>
<li>The best way to go about creating a PPC advertising campaign would be to hire the services of professionals. This is so because they will be experienced in creating the right copy or content for your PPC advertisement. A well written and concise copy can make the difference between success and failure in a PPC advertising campaign.</li>
<li>Along with working on your PPC advertisement, you should also simultaneously make sure that your website is attractive and easy to navigate, since your PPC advertisement will be leading web visitors to your website.</li>
</ol>
<p style="text-align: justify;">This form of advertising ensures a win-win situation of all the parties involved and it is no wonder that it is growing at a rapid rate. With increasing internet connections, the future holds immense possibilities for PPC advertising.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webdatasource.com/2008/10/a-beginners-guide-to-pay-per-click-ppc-advertising/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Keyword Exercises for SEO</title>
		<link>http://www.webdatasource.com/2008/09/keyword-exercises-for-seo/</link>
		<comments>http://www.webdatasource.com/2008/09/keyword-exercises-for-seo/#comments</comments>
		<pubDate>Thu, 25 Sep 2008 14:09:44 +0000</pubDate>
		<dc:creator>Jeffrey Smith</dc:creator>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[SEO Design Solutions]]></category>
		<category><![CDATA[authority]]></category>
		<category><![CDATA[chronology]]></category>
		<category><![CDATA[click]]></category>
		<category><![CDATA[closing]]></category>
		<category><![CDATA[cloud]]></category>
		<category><![CDATA[competition]]></category>
		<category><![CDATA[consumers]]></category>
		<category><![CDATA[content]]></category>
		<category><![CDATA[conversion]]></category>
		<category><![CDATA[description]]></category>
		<category><![CDATA[example]]></category>
		<category><![CDATA[exercise]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[hot on the trail]]></category>
		<category><![CDATA[impact]]></category>
		<category><![CDATA[intent]]></category>
		<category><![CDATA[keyword]]></category>
		<category><![CDATA[Keywords]]></category>
		<category><![CDATA[landing]]></category>
		<category><![CDATA[link]]></category>
		<category><![CDATA[Metrics]]></category>
		<category><![CDATA[page]]></category>
		<category><![CDATA[percentage]]></category>
		<category><![CDATA[percentages]]></category>
		<category><![CDATA[performance]]></category>
		<category><![CDATA[performance benchmarks]]></category>
		<category><![CDATA[phenomenon]]></category>
		<category><![CDATA[phrase]]></category>
		<category><![CDATA[position]]></category>
		<category><![CDATA[premise]]></category>
		<category><![CDATA[product]]></category>
		<category><![CDATA[propensity]]></category>
		<category><![CDATA[query]]></category>
		<category><![CDATA[relevance score]]></category>
		<category><![CDATA[scroll]]></category>
		<category><![CDATA[Search]]></category>
		<category><![CDATA[Search Engines]]></category>
		<category><![CDATA[search result]]></category>
		<category><![CDATA[service]]></category>
		<category><![CDATA[sheer volume]]></category>
		<category><![CDATA[site]]></category>
		<category><![CDATA[snippet]]></category>
		<category><![CDATA[synergy]]></category>
		<category><![CDATA[target]]></category>
		<category><![CDATA[time]]></category>
		<category><![CDATA[top 10 websites]]></category>
		<category><![CDATA[vacuum]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://www.seodesignsolutions.com/blog/?p=329</guid>
		<description><![CDATA[<p style="text-align: justify;">Don’t be fooled by people trying to tell you that tracking <a href="http://www.seodesignsolutions.com/">SEO</a> metrics based on keywords and keyword performance is obsolete. Keywords and the traffic they produce are alive and well and depending on the position (above the fold or below the fold) and the percentage of traffic they receive is tangible to assess conversion and performance benchmarks.</p>
<p style="text-align: justify;">Over 80% of consumers hot on the trail of a product or service have a higher propensity of clicking <strong>the top 3 search results</strong> when presented with the top 10 websites for their query. If a user has to scroll below the fold the click through numbers taper down to the remaining percentages.</p>
<p style="text-align: justify;">However, depending on factors such as:</p>
<p style="text-align: justify;">1) the competition for the phrase</p>
<p style="text-align: justify;">2) the relevance to the searchers intent and</p>
<p style="text-align: justify;">3) the <a href="http://www.seodesignsolutions.com/blog/seo/impulse-surfing-click-triggers-and-keywords/">emotional click-triggers</a> from the snippet/description in the search result (and how sticky it is) impact who gets the click.</p>
<p style="text-align: justify;">Obviously, the more keywords that encroach on a topic, the higher percentage for conversion you have from those topics, when each of the pages becomes buoyant after gaining some authority in search engines (typically 2-4 months).</p>]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">Don’t be fooled by people trying to tell you that tracking <a href="http://www.seodesignsolutions.com/">SEO</a> metrics based on keywords and keyword performance is obsolete. Keywords and the traffic they produce are alive and well and depending on the position (above the fold or below the fold) and the percentage of traffic they receive is tangible to assess conversion and performance benchmarks.</p>
<p style="text-align: justify;">Over 80% of consumers hot on the trail of a product or service have a higher propensity of clicking <strong>the top 3 search results</strong> when presented with the top 10 websites for their query. If a user has to scroll below the fold the click through numbers taper down to the remaining percentages.</p>
<p style="text-align: justify;">However, depending on factors such as:</p>
<p style="text-align: justify;">1) the competition for the phrase</p>
<p style="text-align: justify;">2) the relevance to the searchers intent and</p>
<p style="text-align: justify;">3) the <a href="http://www.seodesignsolutions.com/blog/seo/impulse-surfing-click-triggers-and-keywords/">emotional click-triggers</a> from the snippet/description in the search result (and how sticky it is) impact who gets the click.</p>
<p style="text-align: justify;">Obviously, the more keywords that encroach on a topic, the higher percentage for conversion you have from those topics, when each of the pages becomes buoyant after gaining some authority in search engines (typically 2-4 months).</p>
<p style="text-align: justify;">In closing, here is a brief <strong>SEO keyword exercise</strong> you can use to spread your semantic net a bit wider to funnel and capture more broad and exact match traffic for your pages.</p>
<p style="text-align: justify;">This phenomenon is based on keyword stemming and Pair phrase indexing. The translation here; the more related keywords you have on a page or that reference a page, <strong>the higher the relevance for the related keywords</strong>.</p>
<p style="text-align: justify;">I have mentioned before that <em>any word on the page is a keyword</em> when combined with the right synergy of <a href="http://www.seodesignsolutions.com/blog/seo/creating-synergy-with-your-content-on-page-off-page-seo/">on page and off page</a> factors.</p>
<p style="text-align: justify;">So, you never know what may emerge from the vacuum when a query is executed and just how <a href="http://www.google.com/">Google</a>, <a href="http://www.yahoo.com/">Yahoo</a> or <a href="http://www.msn.com/">MSN</a> may extract content and keywords from 1 page, 3 pages 10 pages or more from your site to combine an aggregate relevance score for your website vs. your competition.</p>
<p style="text-align: justify;">It is not always clear cut and dried as this (such as the chronology of content and sheer volume) to outrank your competition. However, if you are constantly producing quality content in quantity with this in mind, the likelihood of your site hitting hub status as a resource for search engines to share with their readers is only a matter of time.</p>
<p style="text-align: justify;">Keyword stemming is the premise of topical content reaching critical mass and sending key indicators to search engines that the subject is thoroughly present and saturated within your website.</p>
<p style="text-align: justify;">The more semantic derivatives that exist in your pages, the higher your relevance for the keywords or niche in question.</p>
<p style="text-align: justify;">As an example, just think of Wikipedia and how they <strong>virtually rank for every imaginable keyword</strong> as a result of (a) their massive internal index of pages and (b) the way they structure their site and (c) the way they cross link to their own content using <a href="http://www.seodesignsolutions.com/blog/internet-marketing/exact-match-is-nice-but-with-key-phrases-think-unique/">synonyms and exact match</a> anchor text (the text in the link).</p>
<p style="text-align: justify;">As a result, the topical pools of information they leave behind in the cloud (via cloud computing) drive traffic to related web pages based on this basic premise. We know from SEO that When a keyword is present on a page, the density, frequency and prominence all have an impact as well as <strong>how many related pages on the topic</strong> exist in your site.</p>
<p style="text-align: justify;">What we are proposing is, since <a href="http://www.seodesignsolutions.com/blog/search-engine-optimization/semantic-optimization-of-keywords-for-organic-seo/">semantic phrases</a> overlap and reinforce relevance, the idea is to use the additional keywords discovered from a thesaurus to shore up islands of content for search engines.</p>
<p style="text-align: justify;">For example, by adding <strong>15 new related keywords</strong> to a page that already has relevance for related keywords, the amount of broad match traffic you can attract is exponential.</p>
<p style="text-align: justify;">Over time, new relationships form between pages and phrases to raise the bar for how your site fares in search engines.</p>
<p style="text-align: justify;"><strong>Now, for the exercise</strong></p>
<p style="text-align: justify;">1 &#8211; pick a <a href="http://www.seodesignsolutions.com/blog/search-engine-optimization/how-to-grow-an-organic-search-ranking-using-thematic-search-modifiers/">keyword</a> you want to reinforce.</p>
<p style="text-align: justify;">2 &#8211; use the search command site:website.com keyword in a Google search box to find the target page with the highest occurrence of the keyword (to serve as the preferred landing page since search engines already have opted for that page).</p>
<p style="text-align: justify;">3 &#8211; open the <a href="http://thesaurus.reference.com/">thesaurus tool</a> and type in the keyword to find alternative phrases</p>
<p style="text-align: justify;">4 &#8211; from the pages below the first result from step 2 (the other 9 below the number 1 spot), edit the page and add or change content to <strong>include the new keywords</strong> from the thesaurus.</p>
<p style="text-align: justify;">5- from those new / related keywords, <strong>link back to the preferred landing / target page</strong>.</p>
<p style="text-align: justify;">6 &#8211; use this tactic to funnel more traffic, it works since search results often combine a word from the title, another keyword from the description, a word or two from the actual page when searching for the top 1000 websites for any given query.</p>
<p style="text-align: justify;">This is like discovering traffic you never knew existing, since it was latent within your website from lack of expression. More synonyms mean traffic with a very specific intent can find you when they need it most (when executing a focused search).</p>
<p style="text-align: justify;">
]]></content:encoded>
			<wfw:commentRss>http://www.webdatasource.com/2008/09/keyword-exercises-for-seo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

