<?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; Google</title>
	<atom:link href="http://www.webdatasource.com/tag/google/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>Google Scores &#8220;Instant&#8221; Home Run</title>
		<link>http://www.webdatasource.com/2010/10/google-scores-instant-home-run/</link>
		<comments>http://www.webdatasource.com/2010/10/google-scores-instant-home-run/#comments</comments>
		<pubDate>Wed, 06 Oct 2010 14:11:15 +0000</pubDate>
		<dc:creator>Akshay Sura</dc:creator>
				<category><![CDATA[Search Engines]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[bad publicity]]></category>
		<category><![CDATA[Bing]]></category>
		<category><![CDATA[business model]]></category>
		<category><![CDATA[computing]]></category>
		<category><![CDATA[continual innovation]]></category>
		<category><![CDATA[David Barksdale]]></category>
		<category><![CDATA[Engineer]]></category>
		<category><![CDATA[engineer david]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[gmail]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[handling]]></category>
		<category><![CDATA[Instant]]></category>
		<category><![CDATA[latest security]]></category>
		<category><![CDATA[leaps]]></category>
		<category><![CDATA[Model]]></category>
		<category><![CDATA[paradigm]]></category>
		<category><![CDATA[perception]]></category>
		<category><![CDATA[Privacy]]></category>
		<category><![CDATA[privacy intrusions]]></category>
		<category><![CDATA[publicity]]></category>
		<category><![CDATA[relevant results]]></category>
		<category><![CDATA[reliability]]></category>
		<category><![CDATA[reliability engineer]]></category>
		<category><![CDATA[Run]]></category>
		<category><![CDATA[Search]]></category>
		<category><![CDATA[search engine business]]></category>
		<category><![CDATA[search world]]></category>
		<category><![CDATA[second time]]></category>
		<category><![CDATA[security breech]]></category>
		<category><![CDATA[step]]></category>
		<category><![CDATA[Suggests]]></category>
		<category><![CDATA[technology curve]]></category>
		<category><![CDATA[time savings]]></category>

		<guid isPermaLink="false">http://www.webdatasource.com/?p=16872</guid>
		<description><![CDATA[While Bing by Microsoft seemed to some like a huge step forward in the search world, Google&#8217;s Instant is a whole new world of search. Rendering the &#8220;enter&#8221; key nearly useless, Instant anticipates your query and combines its Google Suggests recommendations that would appear as you typed in past queries with an instant live search [...]]]></description>
			<content:encoded><![CDATA[<p>While Bing by Microsoft seemed to some like a huge step forward in the search world, Google&#8217;s Instant is a whole new world of search.</p>
<p>Rendering the &#8220;enter&#8221; key nearly useless, Instant anticipates your query and combines its Google Suggests recommendations that would appear as you typed in past queries with an instant live search for those queries as you type.</p>
<p>Google advertises a 2 – 5 second time savings per search, and &#8220;smarter&#8221; predictions that allow you to find what you&#8217;re actually looking for faster.  The results are, according to Google, automatically localized, giving you relevant results each time, without having to type in limiting words or phrases.</p>
<p>Once again, Google has defined the paradigm for search.</p>
<p>Will this be enough to counter the bad publicity over privacy intrusions by a Google Site Reliability Engineer David Barksdale? This latest security breech and the perception of a &#8220;hush hush&#8221; handling of the problem (Barksdale was &#8220;quietly&#8221; fired) adds to the perception that Google may be careless with security.</p>
<p>It&#8217;s a concern, but not a major one.  Google is keeping careful tabs on its business and its business model. They are on top of what is going on in the search engine business in particular and the cloud computing business in general.</p>
<p>Because of Google&#8217;s continual innovation and leaps ahead of the technology curve, I predict that Google, Google Instant, Android, Apps, Gmail and all the other innovative Google features will become even more popular in coming months and years.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webdatasource.com/2010/10/google-scores-instant-home-run/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Android takes Over Smart Phone Market</title>
		<link>http://www.webdatasource.com/2010/09/android-takes-over-smart-phone-market/</link>
		<comments>http://www.webdatasource.com/2010/09/android-takes-over-smart-phone-market/#comments</comments>
		<pubDate>Mon, 13 Sep 2010 14:31:16 +0000</pubDate>
		<dc:creator>Akshay Sura</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[business]]></category>
		<category><![CDATA[business owners]]></category>
		<category><![CDATA[business phone]]></category>
		<category><![CDATA[curve]]></category>
		<category><![CDATA[developers]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[fever]]></category>
		<category><![CDATA[GOOG]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[hardware]]></category>
		<category><![CDATA[hardware manufacturers]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[manufacturer]]></category>
		<category><![CDATA[person]]></category>
		<category><![CDATA[platform]]></category>
		<category><![CDATA[project]]></category>
		<category><![CDATA[resource]]></category>
		<category><![CDATA[Sales]]></category>
		<category><![CDATA[smart phone]]></category>
		<category><![CDATA[smart phone users]]></category>
		<category><![CDATA[staying power]]></category>
		<category><![CDATA[technology products]]></category>

		<guid isPermaLink="false">http://www.webdatasource.com/?p=16857</guid>
		<description><![CDATA[I&#8217;ve been touting the benefits of Android for a while now, and now smart phone users around the world have caught that Android fever. In August, Android shipments beat out iPhone shipments for the first time, which is important for business owners and developers. DigiTimes reports that Android shipments around the world will surpass 55 [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">I&#8217;ve been touting the benefits of Android for a while now, and now smart phone users around the world have caught that Android fever.</p>
<p style="text-align: justify;">In August, Android shipments beat out iPhone shipments for the first time, which is important for business owners and developers. DigiTimes reports that Android shipments around the world will surpass 55 million.</p>
<p style="text-align: justify;">If that&#8217;s true, it means a 561 percent growth over last year&#8217;s shipments.</p>
<p style="text-align: justify;">You want to keep posted on smart phone sales so you can not only choose the platform to use for your personal and business phone, but also so you can develop apps for the most popular phone platforms.</p>
<p style="text-align: justify;">You want to focus attention on the phones that are growing the fastest and look to have the longest staying power – complicated apps can take up to 6 months to develop, and as with all technology products, you&#8217;ll want to stay ahead of the curve, not behind. Now, iPhone apps are still a huge portion of the market, so you don&#8217;t want to ignore the platform, but Anroid is a force that looks to have staying power, at least for the foreseeable future. As Android grows, developers and hardware manufacturers are undoubtedly going to focus more attention and more resources on the platform, making it a solid choice for future projects.</p>
<p style="text-align: justify;">One development you will want to watch for is more countries open to purchasing Android apps. Currently, customers in only 13 out of 46 countries that sell Android phones can actually purchase applications for the phone.</p>
<p style="text-align: justify;">In order to grow the Android market, Google will need to find a way to fix that little problem.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webdatasource.com/2010/09/android-takes-over-smart-phone-market/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Apple&#8217;s Aggressive Patent Stand Inhibits Innovation</title>
		<link>http://www.webdatasource.com/2010/04/apples-aggressive-patent-stand-inhibits-innovation/</link>
		<comments>http://www.webdatasource.com/2010/04/apples-aggressive-patent-stand-inhibits-innovation/#comments</comments>
		<pubDate>Wed, 21 Apr 2010 14:06:25 +0000</pubDate>
		<dc:creator>Akshay Sura</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[address]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[apple iphone]]></category>
		<category><![CDATA[care]]></category>
		<category><![CDATA[company]]></category>
		<category><![CDATA[court]]></category>
		<category><![CDATA[CTR]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[Direct]]></category>
		<category><![CDATA[doesn]]></category>
		<category><![CDATA[Droid]]></category>
		<category><![CDATA[GOOG]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[HTC]]></category>
		<category><![CDATA[moniker]]></category>
		<category><![CDATA[multi]]></category>
		<category><![CDATA[platform]]></category>
		<category><![CDATA[profits]]></category>
		<category><![CDATA[REALLY]]></category>
		<category><![CDATA[ROI]]></category>
		<category><![CDATA[smaller companies]]></category>
		<category><![CDATA[Smart]]></category>
		<category><![CDATA[steve jobs]]></category>
		<category><![CDATA[strategy]]></category>
		<category><![CDATA[US]]></category>
		<category><![CDATA[World]]></category>

		<guid isPermaLink="false">http://www.webdatasource.com/?p=16838</guid>
		<description><![CDATA[We&#8217;ve already noted how Apple – once the edgy, cool company for the outsider who was just slightly smarter than the average – is now the industry behemoth with the lion&#8217;s share of the market. But while Apple likes to promote itself as a freedom-loving, innovation above all company, that moniker applies only to the [...]]]></description>
			<content:encoded><![CDATA[<p align="justify">We&#8217;ve already noted how Apple – once the edgy, cool company for the outsider who was just slightly smarter than the average – is now the industry behemoth with the lion&#8217;s share of the market.</p>
<p align="justify">But while Apple likes to promote itself as a freedom-loving, innovation above all company, that moniker applies only to the users of its products (and now, it only applies to small pockets of those users).</p>
<p align="justify">Apple itself is a company that is closed, exclusive, and protective – all values that don&#8217;t blend with the ethos it tries to project, and doesn&#8217;t fit well with innovation and development.</p>
<p align="justify">Take the recent lawsuit that Apple filed against HTC. They have accused the Taiwanese company of infringing on their patents. They&#8217;ve used a careful strategy, filed in two courts, and have addressed tick tack little issues, like sliding a button to unlock a phone.</p>
<p align="justify">But what is Apple really after? Well, Apple has found that they like zero competition – it drives profits immensely. So now that the Google Android platform has proven to be a formidable opponent to the iPhone, Apple has decided that instead of fighting the Android on features, price and user interface, they will fight the platform in court.</p>
<p align="justify">Rather than going after Google directly, they are starting with the smaller companies that use the Android OS, chipping away at the base. Experts like patent attorneys and intellectual property consultants see Apple filing multiple suits over several years, starting with those that don&#8217;t have the money and power to fight back.</p>
<p align="justify">Instead of using patents to increase and forward innovation, Apple uses patents as weapons in a war to limit innovation through competition and try to whittle the electronic world down into a one-screen theater, where Apple is all that can play.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webdatasource.com/2010/04/apples-aggressive-patent-stand-inhibits-innovation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Android Apps Will Make Your Life Easier</title>
		<link>http://www.webdatasource.com/2010/01/new-android-apps-will-make-your-life-easier/</link>
		<comments>http://www.webdatasource.com/2010/01/new-android-apps-will-make-your-life-easier/#comments</comments>
		<pubDate>Tue, 26 Jan 2010 15:37:40 +0000</pubDate>
		<dc:creator>Akshay Sura</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[accelerometer]]></category>
		<category><![CDATA[advanced applications]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[chomp]]></category>
		<category><![CDATA[ChompSMS]]></category>
		<category><![CDATA[commitment]]></category>
		<category><![CDATA[Dophin]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[Droid]]></category>
		<category><![CDATA[filedroid]]></category>
		<category><![CDATA[free apps]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[google maps]]></category>
		<category><![CDATA[imusic]]></category>
		<category><![CDATA[intense marketing]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[larry dignan]]></category>
		<category><![CDATA[marketing campaign]]></category>
		<category><![CDATA[mobile web]]></category>
		<category><![CDATA[organizational features]]></category>
		<category><![CDATA[platform]]></category>
		<category><![CDATA[SMS]]></category>
		<category><![CDATA[sms text messages]]></category>
		<category><![CDATA[speed reliability]]></category>
		<category><![CDATA[touch sensitivity]]></category>
		<category><![CDATA[voice commands]]></category>
		<category><![CDATA[WebDatamation]]></category>
		<category><![CDATA[Wedatamation]]></category>
		<category><![CDATA[zdnet]]></category>

		<guid isPermaLink="false">http://www.webdatasource.com/?p=16826</guid>
		<description><![CDATA[With the Verizon release of Droid, the Android platform is cemented as a powerful operating system that will be around to improve and expand. Google and Verizon have made a significant commitment to the Android platform with the release of the sleek Droid phone and the associated intense marketing campaign. Meant to provide a serious [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">With the Verizon release of Droid, the Android platform is cemented as a powerful operating system that will be around to improve and expand.</p>
<p style="text-align: justify;">Google and Verizon have made a significant commitment to the Android platform with the release of the sleek Droid phone and the associated intense marketing campaign. Meant to provide a serious competition to the iPhone, Droid features an accelerometer, high speed internet, turn by turn driving directions from Google maps, a host of organizational features, speech recognition technology, as well as voice commands for many purposes, including Google Search by voice.</p>
<p style="text-align: justify;">On top of all those features, there are now more than 10,000 apps for the Android platform, including Wedatamation&#8217;s own <a href="http://www/webdatamation.com/filedroid.aspx" target="_blank">FileDroid</a> file explorer for the Android platform.</p>
<p style="text-align: justify;">You&#8217;ll want to check out some of these other great Android apps if you are taking the leap to Google&#8217;s new, high tech offering in the smart phone world.</p>
<p style="text-align: justify;">Some of the top free apps for Android include Dolphin, iMusic, FeedR, and ChompSMS.</p>
<p style="text-align: justify;">Larry Dignan of ZDnet likes Dophin for mobile web browsing better than nearly any other browser. With speed, reliability and multi-touch sensitivity, there&#8217;s a lot to love about the nimble Dolphin browser.</p>
<p style="text-align: justify;">The Chomp SMS program is a better way to send SMS text messages in an Android environment. It doesn&#8217;t drain the phone&#8217;s battery the way the native texting program does, and has other great features that make it a no-brainer addition (especially at the price of &#8220;free&#8221;).</p>
<p style="text-align: justify;">FeedR is an intuitive app/widget to manage various RSS feeds. It works with feeds that come installed, but you can add your own and manage the list with ease. It is able to update automatically, without user input.</p>
<p style="text-align: justify;">With iMusic, you can download and listen to MP3s for free; as many as you like, as often as you like. You do sign an agreement to erase the songs after you listen, or just listen to the song directly from the web and skip the download.</p>
<p style="text-align: justify;">There are dozens of other highly functional and advanced applications for the Android platform, and more are added each week.</p>
<p style="text-align: justify;">Consider not only using those apps, but creating or having one created that features your own business.  <a href="http://www.webdatamation.com" target="_blank">Webdatamation</a>&#8216;s developers can work with you on those apps, or let your own people have a good time coming up with a game or useful app that gets your name out in the Android world.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webdatasource.com/2010/01/new-android-apps-will-make-your-life-easier/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Wave Invites</title>
		<link>http://www.webdatasource.com/2009/11/google-wave-invites/</link>
		<comments>http://www.webdatasource.com/2009/11/google-wave-invites/#comments</comments>
		<pubDate>Fri, 13 Nov 2009 20:56:38 +0000</pubDate>
		<dc:creator>Akshay Sura</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[comment]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[google wave]]></category>
		<category><![CDATA[google wave invite]]></category>
		<category><![CDATA[Invites]]></category>
		<category><![CDATA[post]]></category>
		<category><![CDATA[wave]]></category>

		<guid isPermaLink="false">http://www.webdatasource.com/?p=16814</guid>
		<description><![CDATA[I have 5 Google Wave invites. If you want one, add a comment to this post and I will pick 5 people at random to send out the invites. Please make sure you include your email.]]></description>
			<content:encoded><![CDATA[<p>I have 5 Google Wave invites. If you want one, add a comment to this post and I will pick 5 people at random to send out the invites. Please make sure you include your email.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webdatasource.com/2009/11/google-wave-invites/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Be Smart – Plan for Phone Browsers</title>
		<link>http://www.webdatasource.com/2009/10/be-smart-%e2%80%93-plan-for-phone-browsers/</link>
		<comments>http://www.webdatasource.com/2009/10/be-smart-%e2%80%93-plan-for-phone-browsers/#comments</comments>
		<pubDate>Thu, 22 Oct 2009 13:38:00 +0000</pubDate>
		<dc:creator>Akshay Sura</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[access]]></category>
		<category><![CDATA[accurate view]]></category>
		<category><![CDATA[ALT]]></category>
		<category><![CDATA[apple iphone]]></category>
		<category><![CDATA[availability]]></category>
		<category><![CDATA[broadband]]></category>
		<category><![CDATA[broadband providers]]></category>
		<category><![CDATA[Browsers]]></category>
		<category><![CDATA[business]]></category>
		<category><![CDATA[cascading style sheet]]></category>
		<category><![CDATA[cell]]></category>
		<category><![CDATA[cell phone plans]]></category>
		<category><![CDATA[cell phone users]]></category>
		<category><![CDATA[center]]></category>
		<category><![CDATA[click]]></category>
		<category><![CDATA[content]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[customer]]></category>
		<category><![CDATA[daily basis]]></category>
		<category><![CDATA[duplication]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[fact]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[gums]]></category>
		<category><![CDATA[handheld devices]]></category>
		<category><![CDATA[internet capabilities]]></category>
		<category><![CDATA[internet connections]]></category>
		<category><![CDATA[internet content]]></category>
		<category><![CDATA[kind]]></category>
		<category><![CDATA[loading]]></category>
		<category><![CDATA[mobile device]]></category>
		<category><![CDATA[Openwave]]></category>
		<category><![CDATA[optimize]]></category>
		<category><![CDATA[page]]></category>
		<category><![CDATA[parameters]]></category>
		<category><![CDATA[PDA]]></category>
		<category><![CDATA[Phones]]></category>
		<category><![CDATA[Plan]]></category>
		<category><![CDATA[planning]]></category>
		<category><![CDATA[presence]]></category>
		<category><![CDATA[program]]></category>
		<category><![CDATA[provider]]></category>
		<category><![CDATA[relevant links]]></category>
		<category><![CDATA[sense]]></category>
		<category><![CDATA[sheet]]></category>
		<category><![CDATA[Simulator]]></category>
		<category><![CDATA[small articles]]></category>
		<category><![CDATA[Smart]]></category>
		<category><![CDATA[smart phones]]></category>
		<category><![CDATA[smartphone]]></category>
		<category><![CDATA[talk]]></category>
		<category><![CDATA[type]]></category>
		<category><![CDATA[use]]></category>
		<category><![CDATA[version]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[web crawlers]]></category>
		<category><![CDATA[web presence]]></category>

		<guid isPermaLink="false">http://www.webdatasource.com/?p=16809</guid>
		<description><![CDATA[Consider: Some cell phone plans are offering Internet capabilities for only $10 a month. Each provider is announcing the availability of different types of Smart Phones on what is nearly a daily basis. Many people can access email easily on their handheld devices and will soon expect to be able to access other internet content [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">Consider: Some cell phone plans are offering Internet capabilities for only $10 a month. Each provider is announcing the availability of different types of Smart Phones on what is nearly a daily basis. Many people can access email easily on their handheld devices and will soon expect to be able to access other internet content wherever they are and whenever they want it.</p>
<p style="text-align: justify;">What does this mean for the average business with a web presence? It means that you want to optimize your site – not just for Google and other web crawlers, but also for small screen browsers.</p>
<p style="text-align: justify;">Although there was some talk of needing a “mobile device only” version of every website, this kind of duplication is not necessary.  In fact, a cascading style sheet, or CSS, can be written into your web page, instructing the device as it loads your page, to optimize your site for the phone or PDA that is requesting it. So writing in CSS is the first step to optimizing your page for hand held devices and smart phones.</p>
<p style="text-align: justify;">Use a program like the Openwave Phone Simulator to test your web page and see how it will look on a “generic” cell phone type device. If you know the specific parameters of a particular type of device (say, an Apple iPhone), then you can increase the parameters and get an accurate view.</p>
<p style="text-align: justify;">Then optimize your content. Remember that too much text is too much for a smartphone device, and keep the articles short (no more than 500 words, on average). Many small articles with relevant links are better than one long article.</p>
<p style="text-align: justify;">Make sure that the most important elements in your page will load in the center of the phone’s screen, and are accessible without scrolling.  Make sure your pages load quickly. Cell phones and smart phones have slower internet connections than most broadband providers, and you don’t want a clunky website that gums up the works. The customer will click the “close” box after a few seconds.</p>
<p style="text-align: justify;">Many cell phone users will block the photos on your site from loading, so be sure to have relevant and interesting ALT tags that identify your photos. You want your page to make sense to the viewer who has no photo access.</p>
<p style="text-align: justify;">With a little planning,  you will have a great website that is optimize for both PC and smartphone use.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webdatasource.com/2009/10/be-smart-%e2%80%93-plan-for-phone-browsers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Keep SEO Ready for Google&#8217;s Caffeine</title>
		<link>http://www.webdatasource.com/2009/09/keep-seo-ready-for-googles-caffeine/</link>
		<comments>http://www.webdatasource.com/2009/09/keep-seo-ready-for-googles-caffeine/#comments</comments>
		<pubDate>Fri, 11 Sep 2009 00:04:39 +0000</pubDate>
		<dc:creator>Akshay Sura</dc:creator>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[anything]]></category>
		<category><![CDATA[billing]]></category>
		<category><![CDATA[Bing]]></category>
		<category><![CDATA[Caffeine]]></category>
		<category><![CDATA[Canon]]></category>
		<category><![CDATA[Carefully]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[engine]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[June]]></category>
		<category><![CDATA[meta]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[money]]></category>
		<category><![CDATA[optimization]]></category>
		<category><![CDATA[page]]></category>
		<category><![CDATA[past]]></category>
		<category><![CDATA[Ranking]]></category>
		<category><![CDATA[Relevant]]></category>
		<category><![CDATA[Search]]></category>
		<category><![CDATA[SERP]]></category>
		<category><![CDATA[style]]></category>
		<category><![CDATA[World]]></category>

		<guid isPermaLink="false">http://www.webdatasource.com/?p=16790</guid>
		<description><![CDATA[<p style="text-align: justify;">Microsoft made some major strides in the search engine world when it introduced Bing in June of this year, but Google is still the number one search engine in the world.</p>
<p style="text-align: justify;">As we all know, Google is committed to retaining that top billing, and they have responded to Bing and created some innovations of their own. Bottom line for both search engines is more relevant results for their users, and that means that SEO – search engine optimization -- is even more important than ever.</p>]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">Microsoft made some major strides in the search engine world when it introduced Bing in June of this year, but Google is still the number one search engine in the world.</p>
<p style="text-align: justify;">As we all know, Google is committed to retaining that top billing, and they have responded to Bing and created some innovations of their own. Bottom line for both search engines is more relevant results for their users, and that means that SEO – search engine optimization &#8212; is even more important than ever.</p>
<p style="text-align: justify;">While details will be coming forward for the next many months, many bloggers and some other sites have noticed a drop in their SERP rankings with Caffeine and Bing. This doesn’t need to happen, however.</p>
<p style="text-align: justify;">In fact, smaller websites actually have a better chance of raising their rankings, if they use carefully targeted SEO.</p>
<p style="text-align: justify;"><strong>Relevant Content</strong><br />
Good content becomes even more important than it has been in the past. If your site can match more precisely what the user wants to find, then you have a better chance of a high ranking.</p>
<p style="text-align: justify;">Be specific in your content pages, and they will have a better chance of rising to the top. Carefully choose your keywords; if anything, specific keywords have become more important.</p>
<p style="text-align: justify;">Be sure to include long tail keywords that get specific about your offerings: red mardi gras beads for parties instead of mardi gras beads or party beads. Think about brands, too: Canon digital cameras instead of digital cameras.</p>
<p style="text-align: justify;">The titles of your pages are important. Each page should have a unique title specifically matched to the content you’re featuring. And you don’t want to ignore the Meta descriptions, even though they still don’t figure into the SEO searches. But if your page lands high up on that SERP, then you want to have an engaging, accurate and catchy Meta description to encourage the click.</p>
<p style="text-align: justify;">The bottom line – although it will take more months to really see how Caffeine and Bing are going to respond, SEO continues to be highly important to web design. Money spent on SEO is money well invested, with the new search engines as much as the old.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webdatasource.com/2009/09/keep-seo-ready-for-googles-caffeine/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Firefox Mobile</title>
		<link>http://www.webdatasource.com/2009/09/firefox-mobile/</link>
		<comments>http://www.webdatasource.com/2009/09/firefox-mobile/#comments</comments>
		<pubDate>Tue, 01 Sep 2009 13:20:54 +0000</pubDate>
		<dc:creator>Akshay Sura</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[backing]]></category>
		<category><![CDATA[breath]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Explorer]]></category>
		<category><![CDATA[Fenncec]]></category>
		<category><![CDATA[Fennec]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[HTC]]></category>
		<category><![CDATA[interface]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[licensing]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[PC Firefox]]></category>
		<category><![CDATA[percent]]></category>
		<category><![CDATA[platform]]></category>
		<category><![CDATA[RIM]]></category>
		<category><![CDATA[share]]></category>
		<category><![CDATA[smartphone]]></category>
		<category><![CDATA[stranglehold]]></category>
		<category><![CDATA[stutter]]></category>
		<category><![CDATA[Symbian]]></category>
		<category><![CDATA[System]]></category>
		<category><![CDATA[Touch]]></category>
		<category><![CDATA[version]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.webdatasource.com/?p=16788</guid>
		<description><![CDATA[<p style="text-align: justify;">Mozilla’s Firefox web browser is a serious competitor to Microsoft’s Internet Explorer, despite initial skepticism from techies that anyone could break the stranglehold Microsoft had developed on the browser business. Sure, it helps that Firefox is “partnered” with the mega-giant Google for some financial backing, but it takes a big shield to stop a big club.</p>]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">Mozilla’s Firefox web browser is a serious competitor to Microsoft’s Internet Explorer, despite initial skepticism from techies that anyone could break the stranglehold Microsoft had developed on the browser business. Sure, it helps that Firefox is “partnered” with the mega-giant Google for some financial backing, but it takes a big shield to stop a big club.</p>
<p style="text-align: justify;">Although only about 20 percent of internet users use the Firefox browser, many of those users are the serious internet surfers. Those in the industry almost universally prefer the open source app to the Microsoft browser.</p>
<p style="text-align: justify;">So when Mozilla announced in 2008 that they would soon release a mobile version of their browser, they generated some buzz. There were some stutter steps with the first versions, but as with all Firefox products, the bugs get worked out pretty quickly.</p>
<p style="text-align: justify;">The latest release is Fennec Alpha 1, and it has been revamped with a CSS user interface. What does this mean? Well, even though the browser only works on Windows Mobile Smart Phones like the HTC Touch Pro currently, the CSS interface means that it will be easily adapted to a wide range of different devices, unlike the original version.</p>
<p style="text-align: justify;">So, if you have another operating system on your phone, no fear. Firefox is making use of  that CSS based interface to create mobile browsers for other systems. Recently, a Firefox official noted that Symbian phones make up nearly half of the smartphone sales, so Firefox will need to “have a presence on the Symbian platform.” So expect a Symbian version to be officially announced in the near future.</p>
<p style="text-align: justify;">Still, there are plenty of other smartphone owners who prefer Firefox as a browser – will Fennec be coming soon to an iPhone near you? Probably not – and you android users need not hold your breath, either.</p>
<p style="text-align: justify;">Firefox officials cite licensing and technical issues that prevent them from developing Fennec for iPhone, RIM and Android. Still, it will be great to see if all the things we love about the PC Firefox browser are integrated into Fennec quickly enough for them to gain a big market share.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webdatasource.com/2009/09/firefox-mobile/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Latest Android Phone at T-Mobile</title>
		<link>http://www.webdatasource.com/2009/08/latest-android-phone-at-t-mobile/</link>
		<comments>http://www.webdatasource.com/2009/08/latest-android-phone-at-t-mobile/#comments</comments>
		<pubDate>Thu, 27 Aug 2009 02:40:50 +0000</pubDate>
		<dc:creator>Akshay Sura</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[apps]]></category>
		<category><![CDATA[bluetooth]]></category>
		<category><![CDATA[contract]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[dictionary]]></category>
		<category><![CDATA[g1]]></category>
		<category><![CDATA[g2]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[hardware keyboard]]></category>
		<category><![CDATA[HTC]]></category>
		<category><![CDATA[improvement]]></category>
		<category><![CDATA[job]]></category>
		<category><![CDATA[Magic]]></category>
		<category><![CDATA[market]]></category>
		<category><![CDATA[memory]]></category>
		<category><![CDATA[micro sd memory card]]></category>
		<category><![CDATA[mobile users]]></category>
		<category><![CDATA[myTouchG]]></category>
		<category><![CDATA[new smartphones]]></category>
		<category><![CDATA[physical keyboard]]></category>
		<category><![CDATA[pricepoint]]></category>
		<category><![CDATA[retailer]]></category>
		<category><![CDATA[reviewers]]></category>
		<category><![CDATA[smartphone]]></category>
		<category><![CDATA[snag]]></category>
		<category><![CDATA[stereo support]]></category>
		<category><![CDATA[support]]></category>
		<category><![CDATA[System]]></category>
		<category><![CDATA[t mobile]]></category>
		<category><![CDATA[touchscreen]]></category>
		<category><![CDATA[useful services]]></category>
		<category><![CDATA[Video]]></category>
		<category><![CDATA[virtual keyboard]]></category>
		<category><![CDATA[WebDatamation]]></category>

		<guid isPermaLink="false">http://www.webdatasource.com/?p=16780</guid>
		<description><![CDATA[<p style="text-align: justify;">T-Mobile users will be glad to know that they can now get the long-promised myTouchG3 phone. In fact, those who pre-ordered should have already received the sleek touchscreen smartphone, and those want to grab one can go to the T-Mobile retailer near them and snag a new one for $199 and a two-year contract.</p>]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">T-Mobile users will be glad to know that they can now get the long-promised myTouchG3 phone. In fact, those who pre-ordered should have already received the sleek touchscreen smartphone, and those want to grab one can go to the T-Mobile retailer near them and snag a new one for $199 and a two-year contract.</p>
<p style="text-align: justify;">This model mirrors the HTC Magic found outside the U.S., with a 3.2 inch touchscreen display and a virtual keyboard.</p>
<p style="text-align: justify;">Reviewers say the phone, which has gone through several name changes on its way to market, is an improvement on the first T-Mobile G1 in nearly every category, and is smaller as well.</p>
<p style="text-align: justify;">While some will regretfully note the lack of a hardware keyboard, others point out that most of the new smartphones at this pricepoint have virtual, not physical, keyboards. While users may be used to this feature (or lack of a feature) some would prefer the physical keyboard.</p>
<p style="text-align: justify;">The Bluetooth stereo support is standard on the new phone, and it has an adequate video and still camera, at 3.2 megapixels.</p>
<p style="text-align: justify;">It accepts a micro SD memory card, although you have to open the battery cover to find it. The autofill choices are more numerous on the G2, and the dictionary seems to do a better job of finding the word you’re after, making typing go more quickly.</p>
<p style="text-align: justify;">The OS is still Android 1.5, and there are a growing number of apps for the system.</p>
<p style="text-align: justify;">This new offering fully committed to Google’s Android operating system only reinforces the fact that Android will be supported in the future and continue to be stronger.  Apps like <a href="http://www.webdatamation.com" target="_blank">Webdatamation</a>’s <a href="http://www.webdatamation.com/filedroid.aspx" target="_blank">FileDroid</a>, will continue to provide an avenue for businesses to reach new customers and provide useful services to the smartphone community.</p>
<p style="text-align: justify;">Ask about Android development next time to speak to one of our staff.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.webdatasource.com/2009/08/latest-android-phone-at-t-mobile/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

