<?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>beu blog &#187; Innovation</title>
	<atom:link href="http://www.beussery.com/blog/index.php/tags/innovation/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.beussery.com/blog</link>
	<description>{atlanta, seo, google, gadgets, technology &#38; geekery}</description>
	<lastBuildDate>Tue, 07 Feb 2012 19:09:52 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<atom:link rel="hub" href="http://pubsubhubbub.appspot.com"/><atom:link rel="hub" href="http://superfeedr.com/hubbub"/>		<item>
		<title>Asynchronicity</title>
		<link>http://www.beussery.com/blog/index.php/2010/10/asyn/</link>
		<comments>http://www.beussery.com/blog/index.php/2010/10/asyn/#comments</comments>
		<pubDate>Thu, 14 Oct 2010 19:01:17 +0000</pubDate>
		<dc:creator>Brian Ussery</dc:creator>
				<category><![CDATA[analytics]]></category>
		<category><![CDATA[Innovation]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.beussery.com/blog/?p=755</guid>
		<description><![CDATA[Be sure to check out Steve Souders&#8217;s latest blog post. In it, he stresses the importance of deferring JavaScript until after a pages have rendered and all the work that still needs to be done when it comes to high performance JavaScript. Google made &#8220;asynchronous&#8221; the new marketing industry BUZZ word for 2010 when they [...]]]></description>
			<content:encoded><![CDATA[<p>Be sure to check out <a href="http://www.stevesouders.com/">Steve Souders&#8217;s</a> latest blog post.  In it, he stresses the importance of deferring JavaScript until after a pages have rendered and all the work that still needs to be done when it comes to high performance JavaScript.</p>
<p>Google made &#8220;asynchronous&#8221; the new marketing industry <a href="http://www.adamsherk.com/public-relations/most-overused-press-release-buzzwords/">BUZZ</a> word for 2010 when they rolled out an asynchronous version of Google Analytics.  Asynchronous scripts are still just scripts after all and not bulletproof.  Asynchronous Google Analytics isn&#8217;t an open license to do as you please.  Over the past year, I&#8217;ve noticed a major increase in the number of &#8220;<a href="http://www.google.com/images?um=1&#038;hl=en&#038;safe=off&#038;rlz=1B7GGGL_enUS342US343&#038;biw=1363&#038;bih=780&#038;tbs=isch%3A1&#038;sa=1&#038;q=%22top+gun%22&#038;aq=f&#038;aqi=g10&#038;aql=&#038;oq=&#038;gs_rfai=">mavericky</a>&#8221; asynchronous Google Analytics implementations.  When implemented properly Google Analytics is a great tool but implementation is critical.</p>
<p>Simply adding ASYNC attributes doesn&#8217;t &#8220;make&#8221; scripts asynchronous.  &#8220;<a href="http://code.google.com/apis/analytics/docs/tracking/asyncUsageGuide.html#Syntax"><tt><strong>_gaq</strong></tt></a>&#8221; is actually what makes Google Analytics ASYNC syntax possible.  Unfortunately, few browsers <a href="http://www.browserscope.org/?category=network&#038;v=top">support</a> the ASYNC attribute.  Either way, ASYNC scripts are executed upon response arrival and not deferred which can result in blocking.  DEFER attributes on the other hand, can block the onload event and also decrease <a href="http://code.google.com/speed/page-speed/">PageSpeed</a>.  Another point to consider when trying to get content in front of users more quickly is, &#8220;<a href="http://www.stevesouders.com/blog/2010/09/30/render-first-js-second/">If asynchronous scripts arrive while the page is loading, the browser has to stop rendering in order to parse and execute those scripts</a>.&#8221;</p>
<p>Bottom line, &#8220;mavericky&#8221; implementations can actually have a negative impact on user experience.  Even worse, this data can be missing from both analytics and the Google Webmaster Tools site performance tab depending on how onload event firing is impacted.  Oh yeah, and don&#8217;t forget rankings!  <a href="http://www.youtube.com/user/GoogleWebmasterHelp#p/u/53/LLmO1GE4GvI">Matt Cutts</a> said, Google Analytics doesn&#8217;t impact rankings because when properly implemented it waits to load scripts until after the onload event but, that may not be the case if improperly implemented.  <a href="http://maileohye.com/google-site-performance-compilation-answers/">Maile Ohye</a> has confirmed that one of the ways Google calculates performance is via the onload event.  According to Google, &#8220;To ensure the most streamlined operation of the asynchronous snippet with respect to other scripts,&#8221; the asynchronous snippet should either be placed just before the close of the HEAD tag or just before the close of the BODY tag in your (X)HTML document.  I&#8217;d suggest not taking any chances this Holiday season because this year speed is more important than ever before and testing.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.beussery.com/blog/index.php/2010/10/asyn/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Details About Google Instant Search</title>
		<link>http://www.beussery.com/blog/index.php/2010/09/google-instant/</link>
		<comments>http://www.beussery.com/blog/index.php/2010/09/google-instant/#comments</comments>
		<pubDate>Mon, 20 Sep 2010 20:17:20 +0000</pubDate>
		<dc:creator>Brian Ussery</dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[Innovation]]></category>
		<category><![CDATA[Google Instant]]></category>

		<guid isPermaLink="false">http://www.beussery.com/blog/?p=746</guid>
		<description><![CDATA[Search while you type isn&#8217;t a new concept, it has been around for years but, it doesn&#8217;t really work for users. Predictive text on the other hand does work for users, it&#8217;s really simple and extremely fast. Google&#8217;s new Instant search results combine predictive analysis with instant results and a new scroll to search feature [...]]]></description>
			<content:encoded><![CDATA[<p>Search while you type isn&#8217;t a new concept, it has been around for years but, it doesn&#8217;t really work for users.  Predictive text on the other hand does work for users, it&#8217;s really simple and extremely fast.  Google&#8217;s new <a href="http://www.google.com/instant/">Instant</a> search results combine predictive analysis with instant results and a new scroll to search feature that automatically suggests predicted queries to users all in real time.  These predictions are based on years of data and billions of previous searches but, Google&#8217;s results are the same.  What makes Instant search radically different, is speed and most of all the feedback it gives users.  </p>
<p>For example, Instant search provides users with feedback about misspellings and provides suggested spellings for queries before users even search.  This is no accident, Google knows users intend to spell queries correctly and has been working behind the scenes on spelling improvements for some time.  Improvements like these have been integrated in and rolled out with Google Instant.  Instant feedback about misspellings is great for users but, may come as a shock to webmasters focused on tricking users with misspellings as their SEO strategy.  Google Instant is <a href="http://www.mattcutts.com/blog/thoughts-on-google-instant/">no threat </a> to ethical, white hat SEO efforts or unique quality content that users value.  Bottom line, users &#8220;<a href="http://www.ninebyblue.com/blog/seo-is-dead-andor-irrelevant-with-google-instant/">aren’t going to fundamentally change what they’re looking for.</a>&#8220;</p>
<p>In addition to improved spelling, Google has also recently improved how they handle proper nouns.  Better handling of proper nouns helps Google extract more information, especially about <a href="http://www.seobythesea.com/?p=4179">named entities</a>.  Proper nouns and named entities often share a common trait, they&#8217;re capitalized.  Google already has entity related <a href="http://patft.uspto.gov/netacgi/nph-Parser?Sect1=PTO2&#038;Sect2=HITOFF&#038;p=1&#038;u=%2Fnetahtml%2FPTO%2Fsearch-bool.html&#038;r=8&#038;f=G&#038;l=50&#038;co1=AND&#038;d=PTXT&#038;s1=google.ASNM.&#038;OS=AN/google&#038;RS=AN/google">patents</a> and recently acquired <a href="http://www.metaweb.com/">MetaWeb</a> a company that specializes in this field.  Mapping multiple named entities to one &#8220;thing&#8221;, increases data captured about each entity as well as the whole.  Improved understanding of named entities, improves data about potentially vital pages and increase the quality of results even in the absence of relevant keywords.  All of these help Google Instant entice users to explore more of the space around their query.  Combining better spelling with better quality and better targeted results, decreases the percentage of &#8220;unique queries&#8221;.  These unique queries are difficult to monetize and often result in a poor experience.</p>
<p>The day before Google launched Instant search, CEO Eric Schmidt said, &#8220;Never underestimate the importance of fast!&#8221;  When it comes to speed, Google Instant makes other sites, including Yahoo and Bing seem much slower by comparison.  Google Instant is so fast in fact, it increases the perceived latency of other sites.  This factor could help increase Google&#8217;s market share especially, if dedicated users start leaving other engines for Google.  Increased focused on site performance is no doubt more critical than ever before.</p>
<p>A few other notes, Instant has Google&#8217;s improved triggering for realtime queries and that could tie directly into their &#8220;Social Layer&#8221; scheduled for release in Q4 2010.  You&#8217;ll find Google Squared technology in Instant results for queries like [inventor of airplane].  You may notice, the scroll to search feature actually <a href="http://www.seobook.com/how-google-instant-changes-seo-landscape">pushes results down the page</a> and the footer search box is no more.  It&#8217;s possible that Google Instant&#8217;s GUI emphasizes images, video and highly positioned AdWords ads (colored background) more, because they flash in and out of view in certain cases.  </p>
<p><a href="http://www.pubcon.com/sessions.cgi?action=view&#038;conference=pubcon27&#038;record=804">What does the near future hold for SEO, PPC and analytics?</a>  In coming months expect to see, more data missing from analytics and fragmented with <a href="www.google.com/webmasters/tools/">Google Webmaster Tools</a> and/or other sources.  It&#8217;s quite possible Google Instant thwarts automated queries on some levels and for that reason, ranking reporting software may be even more inaccurate.  AdWords impression data will be less accurate for testing and virtually worthless in terms of historical comparison.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.beussery.com/blog/index.php/2010/09/google-instant/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Instant Event Live Blog</title>
		<link>http://www.beussery.com/blog/index.php/2010/09/google-instant-event-live-blog/</link>
		<comments>http://www.beussery.com/blog/index.php/2010/09/google-instant-event-live-blog/#comments</comments>
		<pubDate>Wed, 08 Sep 2010 17:06:50 +0000</pubDate>
		<dc:creator>Brian Ussery</dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[Innovation]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Google Instant]]></category>

		<guid isPermaLink="false">http://www.beussery.com/blog/?p=689</guid>
		<description><![CDATA[Google Instant Event Live blog, please excuse typos and spelling errors. According to Marissa Mayer 11 hours can be saved for every second spent searching thanks to Google Instant. Google Instant revolutionizes how users interact with Google. This new search feature has 3 main components: Instant results &#8211; Results appear instantly to the user. Predictions [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Google Instant Event Live blog, please excuse typos and spelling errors.</strong></p>
<p>According to Marissa Mayer 11 hours can be saved for every second spent searching thanks to Google Instant.  Google Instant revolutionizes how users interact with Google.  This new search feature has 3 main components:
<ul>
<li>Instant results &#8211; Results appear instantly to the user.</li>
<li>Predictions &#8211; Google is able to predict what users search for as they search.</li>
<li>Scroll to search &#8211; This feature offers users options for their query.  Google Instant is a better, faster, cleaner experience but like riding a bike&#8230; you never forget how to ride.</li>
</ul>
<p><img src="http://www.beussery.com/blog/ui.jpg" alt="google instant efficiency" width="649" height="368"/></p>
<p><img src="http://www.beussery.com/blog/example.jpg" alt="Google Serps" width="649" height="368"/></p>
<p><img src="http://www.beussery.com/blog/gs.jpg" alt="Google Incremental Search" width="649" height="368"/></p>
<p>All of these new features render the &#8220;search&#8221; button almost useless.  Google is still seamless users just have additional options.  Google Instant provides feedback that users can use find what they are looking for online.  Feedback from Google Instant is also used via mobile but this feature won&#8217;t be available until Fall 2010.  Google &#8220;Trusted Tester&#8221; video illustrates testers interaction with Google Instant which will roll out later today.</p>
<p>Up next is Ben Gomes to talk about technical challenges with Google Instant.  According to Ben, Google Instant had to be efficient.  To do this Google focused on user interface design, search as an application and efficiency to scale.  In order to test all of this Google tested more than 100 testers in their usability lab.  These &#8220;Trusted Testers&#8221; were monitored using eye tracking technology.</p>
<p><img src="http://www.beussery.com/blog/process.jpg" alt="Google Autocomplete" width="649" height="368"/></p>
<p>In the past Google has relied on (X)HTML but Google Instant is AJAX based.  To do this Google first sends autocomplete search requests, autocomplete predicitions and then receives results page.  In addition, Google detects when the system breaks.
</p>
<p>If Google returns search results with every letter and there are 20 characters per query on average, how can Google do this and not melt down their servers.</p>
<p>When it comes to scale and efficiency Google can maintain low cost per query by anticipating the query.  Google does this because efficiency matters to users and users matter to Google.  For that reason Google has already rolled out 500 updates this year.  Today is the biggest change to hit Google in terms of user interaction in years.  Google Instant makes search available to users.</p>
<p>According to Marissa Mayer, Interaction, Comprehensiveness and Understanding (users, web, squared) are the future of search.  Google Instant is first step into the future of search.  According to Marissa, users will save 350 million hours a year.</p>
<p>The event is closing with a video by Google&#8217;s creative lab inspired by Bob Dylan&#8230;.  Results as you type, no clicks, search on!</p>
<p><strong>Q&#038;A</strong><br />
Does this change PPC?  No change in how ads are served or ranked.
</p>
<p>Are 20% of queries still unique?  Not sure but if you make search easier and faster more folks search</p>
<p>@Wired asks how Google Instant ties into search history?  Marissa Mayer, fields and says the inputs remain unchanged.</p>
<p>How much personal data is required for speed improvements?  How much does this tax data centers?<br />
Marissa Mayer says personal data requirements are the same.  Google is using prediction not personal data.  Johanna answers the data center question and confirms the cost has increased but engineering has been able to maintain.</p>
<p>Sergey Brin fields &#8220;human computer interaction&#8221; question in terms of speed of advancement in this area.  According to Sergey techno advancements and openmindenesss are resulting in major advances that will change the way you interact with these kinds of devices.</p>
<p>What impact will Google Instant have on SEO?  According to Ben, there will be little impact in terms of SEO.</p>
<p>When will this be available in China?  Marissa says Google&#8217;s goal is to roll out on Google.com.hk</p>
<p>Do you believe users want faster search?  <strong>YES</strong>  By speeding up search Google expects more traffic and more queries.  Marissa says as users adapt to Google Instant the won&#8217;t go back. </p>
<p>Question from author of &#8220;Inside Larry and Sergy&#8217;s Brain&#8221; asks about privacy and what impact Instant has.  According to Google Co-Founder Sergey Brin Google spends lots of time focused on privacy and Google Instant is no different.</p>
<p>BBC asks how Google Instant will change behavior?  According to Ben neighboring queries become more important.</p>
<p>During testing how many users didn&#8217;t want to use Google Instant?  How does Google Instant relate to caffeine.  According to Mayer, few didn&#8217;t like.  Ben follows up by saying the two have an indirect conncetion.</p>
<p>How does this impact SEM (SEO &#038;PPC)?  Little&#8230;</p>
<p>Next question, &#8220;Sergey did you ever think you would reach this point&#8221;.  Based on Moore&#8217;s Law of Computation is has been amazing and a tribute to people who work on computing everywhere.</p>
<p>How is Google getting folks to contribute content?  Sergy, great question.  That has been one focus for a long time, for example AdSense.  For more user gen content Google has worked on projects like Blogger, Google Docs.  In addition, there are lots of places where users gen content.</p>
<p>Are there plans to make faster?  Ben says we are going to enjoy the speed but you &#8220;ain&#8217;t seen nothing yet&#8221;.</p>
<p>Ad Age asks about brand impact and rankings in terms of page 2?  Ben says user intent doesn&#8217;t change no matter what predictions are going on behind the scenes.  Johanna points out the Google Instant gets users to results faster.  Google totaly focuses on users and that is good for ads.</p>
<p>Will Google server less ads? No</p>
<p>Will this change result in more searches and more adds clicked?  Ben says focus on user and all else will follow.</p>
<p>When will Google release Google Instant in Japan and China because characters can cause problems?  Marissa Mayer, says expect all these in addition to mobile in a few months.</p>
<p> Is this part of a bigger plan?  Mayer, yes&#8230;  In fact we look at queries from years ago.  Ben says we are always working to make things better.</p>
<p>ONE FINAL QUESTION, oh who could it be?  Danny Sullivan asks about what happens when results are not correct?  According to Google, users learn how to pull things up from the top except for Danny&#8217;s Dogpile question.  Google asks Danny, why he is using <a href="http://www.google.com">Google</a> to search for [search engines] <img src='http://www.beussery.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Google Instant Meetup later today at 111 Minna in SFO</p>
]]></content:encoded>
			<wfw:commentRss>http://www.beussery.com/blog/index.php/2010/09/google-instant-event-live-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Brand Named Entity Navigational Query Update 2010</title>
		<link>http://www.beussery.com/blog/index.php/2010/08/google-update/</link>
		<comments>http://www.beussery.com/blog/index.php/2010/08/google-update/#comments</comments>
		<pubDate>Wed, 25 Aug 2010 04:01:12 +0000</pubDate>
		<dc:creator>Brian Ussery</dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[Innovation]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[google update]]></category>
		<category><![CDATA[named entity query]]></category>

		<guid isPermaLink="false">http://www.beussery.com/blog/?p=679</guid>
		<description><![CDATA[Malcolm Coles pointed out a new feature in Google SERPs and posed some interesting questions last week. I don&#8217;t think Google is treating &#8220;brand names&#8221; as site operator queries. Site operator queries only return results for a single site. Either way, both Malcolm&#8217;s and Matt&#8216;s examples appear to be navigational and/or what are referred to [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Malcolm Coles pointed out a new <a href="http://googlewebmastercentral.blogspot.com/2010/08/showing-more-results-from-domain.html">feature</a> in Google SERPs and posed some interesting <a href="http://www.malcolmcoles.co.uk/blog/google-treating-brand-names-in-search-terms-as-site-searches/">questions</a> last week.</strong>  I don&#8217;t think Google is treating &#8220;brand names&#8221; as site operator queries.  Site operator queries only return <a href="http://www.google.com/search?hl=en&#038;q=site%3Agoogle.com&#038;sourceid=navclient-ff&#038;rlz=1B7GGGL_enUS342US343&#038;ie=UTF-8">results</a> for a single site.  Either way, both Malcolm&#8217;s and <a href="http://searchengineland.com/google-search-results-dominated-by-one-domain-49025">Matt</a>&#8216;s examples appear to be navigational and/or what are referred to as &#8220;named entity queries.&#8221;</p>
<p>Queries provide numerous signals that engines can use for insight about user intent.   They are for the most part either informational, navigational or transactional (action) in intent but, some queries fall into more than one category.  These queries are often classed as named entities.  Problem is, it&#8217;s difficult to surmise intent from a single query that may have multiple interpretations.  Google already has related <a href="http://www.seobythesea.com/?p=4179">patents</a> and recently purchased <a href="http://www.metaweb.com/">Metaweb</a>, a company specializing in this <a href="http://en.wikipedia.org/wiki/Named_entity_recognition">field</a>.  One aspect that I haven&#8217;t seen mentioned elsewhere in plain English, is that company names, product names, organization names, <strong>brand names</strong> and/or combinations thereof are named entities.  Named entities are easy to extract online because they are often capitalized.  If leveraged properly, they could provide a number of associative <a href="http://appft.uspto.gov/netacgi/nph-Parser?Sect1=PTO2&#038;Sect2=HITOFF&#038;u=%2Fnetahtml%2FPTO%2Fsearch-adv.html&#038;r=1&#038;p=1&#038;f=G&#038;l=50&#038;d=PG01&#038;S1=20100198837.PGNR.&#038;OS=dn/20100198837&#038;RS=DN/20100198837">signals</a> that are well worth considering.</p>
<p>All that said, I&#8217;m not sure that is what is happening today.  When statistic probability significantly favors one site over all others in terms of user intent, it makes sense that engines would return multiple results for that site instead of just two.  Google may have introduced named entity elements or may simply be handling navigational queries in a way that seems&#8230; well more logical.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.beussery.com/blog/index.php/2010/08/google-update/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>AT&amp;T Limiting Innovation</title>
		<link>http://www.beussery.com/blog/index.php/2010/06/att-unlimite/</link>
		<comments>http://www.beussery.com/blog/index.php/2010/06/att-unlimite/#comments</comments>
		<pubDate>Wed, 16 Jun 2010 21:58:26 +0000</pubDate>
		<dc:creator>Brian Ussery</dc:creator>
				<category><![CDATA[Innovation]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[at&t]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[mobile]]></category>

		<guid isPermaLink="false">http://www.beussery.com/blog/?p=620</guid>
		<description><![CDATA[AT&#038;T all but killed innovation for customers new and old earlier this month when it eliminated &#8220;Unlimited&#8221; mobile data as a core offering to new customers. With this move, AT&#038;T has placed third party limitations between not only the developer and the platform but also the consumer and Apple. Because of AT&#038;T&#8217;s move, it&#8217;s going [...]]]></description>
			<content:encoded><![CDATA[<p><strong><a href="http://www.att.com">AT&#038;T</a> all but killed innovation for customers new and old earlier this month when it eliminated &#8220;Unlimited&#8221; mobile data as a core offering to new customers.</strong>  With this move, AT&#038;T has placed third party limitations between not only the developer and the platform but also the consumer and Apple.  Because of AT&#038;T&#8217;s move, it&#8217;s going to cost mobile application developers more to develop new apps.  Fewer folks are likely to download these new apps due to cost concerns and fewer free apps are likely to be available.  Such restrictions make consumers think twice about using the mobile web, much less extra services like iTunes and Android Market.</p>
<p>While none of this is good news, unless you&#8217;re AT&#038;T, things could get interesting.  AT&#038;T is and has been Apple&#8217;s proprietary service provider since day one and Apple&#8217;s CEO, Steve Jobs just recently &#8220;<a href="http://www.apple.com/hotnews/thoughts-on-flash/">defriended</a>&#8221; Adobe for an overall lack of innovation.  What comes next, seems pretty clear! <img src='http://www.beussery.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  Oh well, maybe next year will be &#8220;the year for mobile&#8221;.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.beussery.com/blog/index.php/2010/06/att-unlimite/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced (Requested URI is rejected)

Served from: beussery.com @ 2012-02-09 06:01:34 -->
