<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>keithyau</title>
	<atom:link href="http://keithyau.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://keithyau.wordpress.com</link>
	<description>IT training, eCommerce solutions and technical stuffs</description>
	<lastBuildDate>Wed, 03 Aug 2011 10:22:32 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='keithyau.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://0.gravatar.com/blavatar/40fdf0e2b425e8a9a8f664d4ebc910b9?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>keithyau</title>
		<link>http://keithyau.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://keithyau.wordpress.com/osd.xml" title="keithyau" />
	<atom:link rel='hub' href='http://keithyau.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Drupal Adding apache solr index for field-collection</title>
		<link>http://keithyau.wordpress.com/2011/08/03/drupal-adding-apache-solr-index-for-field-collection/</link>
		<comments>http://keithyau.wordpress.com/2011/08/03/drupal-adding-apache-solr-index-for-field-collection/#comments</comments>
		<pubDate>Wed, 03 Aug 2011 10:22:26 +0000</pubDate>
		<dc:creator>keithyau</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://keithyau.wordpress.com/2011/08/03/drupal-adding-apache-solr-index-for-field-collection/</guid>
		<description><![CDATA[If images / content are bounded by field collection module, you can try approach below to index to solr enjoy &#160; //Index product images $field_collection_items = field_get_items(&#8216;node&#8217;, $node, &#8216;field_image_set&#8217;); $field_collection_item_ids = array(); $i = 0; foreach ($field_collection_items as $field_collection_item){ $field_collection_item_ids[$i] = $field_collection_item['value']; $i++; } $field_collection_item_fields = entity_load(&#8216;field_collection_item&#8217;, $field_collection_item_ids); $image_fields = array(); $i = 0; foreach [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=keithyau.wordpress.com&amp;blog=5494800&amp;post=233&amp;subd=keithyau&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div class='posterous_autopost'>
<p><span style="font-size:medium;">If images / content are bounded by field collection module, you can try approach below to index to solr</span></p>
<p><span style="font-size:medium;">enjoy</span></p>
<p>&nbsp;</p>
<p><span style="color:#ff0000;">//Index product images</span></p>
<p><span style="color:#ff0000;"><span> </span>$field_collection_items = field_get_items(&#8216;node&#8217;, $node, &#8216;field_image_set&#8217;);</span></p>
<p><span style="color:#ff0000;"><span> </span>$field_collection_item_ids = array();</span></p>
<p><span style="color:#ff0000;"><span> </span>$i = 0;</span></p>
<p><span style="color:#ff0000;"><span> </span>foreach ($field_collection_items as $field_collection_item){</span></p>
<p><span style="color:#ff0000;"><span> </span>$field_collection_item_ids[$i] = $field_collection_item['value'];</span></p>
<p><span style="color:#ff0000;"><span> </span>$i++;</span></p>
<p><span style="color:#ff0000;"><span> </span>}</span></p>
<p><span style="color:#ff0000;"><span> </span>$field_collection_item_fields = entity_load(&#8216;field_collection_item&#8217;, $field_collection_item_ids);</span></p>
<p><span style="color:#ff0000;"><span> </span> $image_fields = array();</span></p>
<p><span style="color:#ff0000;"><span> </span>$i = 0;</span></p>
<p><span style="color:#ff0000;"><span> </span>foreach ($field_collection_item_fields as $field_collection_item_field){</span></p>
<p><span style="color:#ff0000;"><span> </span>$image_fields[$i] = field_get_items(&#8216;field_collection_item&#8217;, $field_collection_item_field, &#8216;field_image&#8217;);</span></p>
<p><span style="color:#ff0000;"><span> </span>$i++;</span></p>
<p><span style="color:#ff0000;"><span> </span>}</span></p>
<p>&nbsp;</p>
<p><span style="color:#ff0000;"><span> </span>$i = 0;</span></p>
<p><span style="color:#ff0000;"><span> </span>foreach ($image_fields as $image_field){<span> </span></span></p>
<p><span style="color:#ff0000;"><span> </span>foreach ($image_field as $image)</span></p>
<p><span style="color:#ff0000;"><span> </span>$path = file_create_url($image['uri']);</span></p>
<p><span style="color:#ff0000;"><span> </span>$document-&gt;setMultiValue(&#8216;sm_field_image_&#8217;.$i++, $path); //Set multiple field_image values</span></p>
<p><span style="color:#ff0000;"><span> </span>}</span></p>
<p>&nbsp;</p>
</p>
</div>
<br />Filed under: <a href='http://keithyau.wordpress.com/category/uncategorized/'>Uncategorized</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/keithyau.wordpress.com/233/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/keithyau.wordpress.com/233/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/keithyau.wordpress.com/233/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/keithyau.wordpress.com/233/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/keithyau.wordpress.com/233/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/keithyau.wordpress.com/233/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/keithyau.wordpress.com/233/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/keithyau.wordpress.com/233/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/keithyau.wordpress.com/233/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/keithyau.wordpress.com/233/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/keithyau.wordpress.com/233/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/keithyau.wordpress.com/233/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/keithyau.wordpress.com/233/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/keithyau.wordpress.com/233/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=keithyau.wordpress.com&amp;blog=5494800&amp;post=233&amp;subd=keithyau&amp;ref=&amp;feed=1" width="1" height="1" /><div class="sharedaddy sd-like-enabled"></div>]]></content:encoded>
			<wfw:commentRss>http://keithyau.wordpress.com/2011/08/03/drupal-adding-apache-solr-index-for-field-collection/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e0c38730792fb4e3595a3fd00e0b141f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">keithyau</media:title>
		</media:content>
	</item>
		<item>
		<title>Adding index to apache solr by Drupal hook</title>
		<link>http://keithyau.wordpress.com/2011/08/03/adding-index-to-apache-solr-by-drupal-hook/</link>
		<comments>http://keithyau.wordpress.com/2011/08/03/adding-index-to-apache-solr-by-drupal-hook/#comments</comments>
		<pubDate>Wed, 03 Aug 2011 09:43:17 +0000</pubDate>
		<dc:creator>keithyau</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://keithyau.wordpress.com/2011/08/03/adding-index-to-apache-solr-by-drupal-hook/</guid>
		<description><![CDATA[1. Add index by setMultiValue function scp_solr_search_apachesolr_update_index(&#38;$document, $node){ $document-&#62;setMultiValue(&#8216;sm_field_xxxx&#8217;, $node-&#62;field_xxxx['und'][0]['value']); 2. Add modify query function scp_solr_search_apachesolr_modify_query(&#38;$query, $caller){ $query-&#62;params['fl'] .= &#8216;,sm_field_xxxx&#8217;; 3. update solr and done ~! * scp_solr_search is my module name Enjoy Filed under: Uncategorized<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=keithyau.wordpress.com&amp;blog=5494800&amp;post=232&amp;subd=keithyau&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div class='posterous_autopost'>1. Add index by setMultiValue
<p /> function scp_solr_search_apachesolr_update_index(&amp;$document, $node){ <br />$document-&gt;setMultiValue(&#8216;sm_field_xxxx&#8217;, <br />$node-&gt;field_xxxx['und'][0]['value']);
<p /> 2. Add modify query
<p /> function scp_solr_search_apachesolr_modify_query(&amp;$query, $caller){ <br /> $query-&gt;params['fl'] .= &#8216;,sm_field_xxxx&#8217;;
<p /> 3. update solr and done ~!
<p />* scp_solr_search is my module name Enjoy</div>
<br />Filed under: <a href='http://keithyau.wordpress.com/category/uncategorized/'>Uncategorized</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/keithyau.wordpress.com/232/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/keithyau.wordpress.com/232/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/keithyau.wordpress.com/232/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/keithyau.wordpress.com/232/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/keithyau.wordpress.com/232/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/keithyau.wordpress.com/232/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/keithyau.wordpress.com/232/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/keithyau.wordpress.com/232/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/keithyau.wordpress.com/232/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/keithyau.wordpress.com/232/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/keithyau.wordpress.com/232/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/keithyau.wordpress.com/232/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/keithyau.wordpress.com/232/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/keithyau.wordpress.com/232/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=keithyau.wordpress.com&amp;blog=5494800&amp;post=232&amp;subd=keithyau&amp;ref=&amp;feed=1" width="1" height="1" /><div class="sharedaddy sd-like-enabled"></div>]]></content:encoded>
			<wfw:commentRss>http://keithyau.wordpress.com/2011/08/03/adding-index-to-apache-solr-by-drupal-hook/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e0c38730792fb4e3595a3fd00e0b141f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">keithyau</media:title>
		</media:content>
	</item>
		<item>
		<title>To be loved</title>
		<link>http://keithyau.wordpress.com/2011/08/03/to-be-loved/</link>
		<comments>http://keithyau.wordpress.com/2011/08/03/to-be-loved/#comments</comments>
		<pubDate>Wed, 03 Aug 2011 09:32:37 +0000</pubDate>
		<dc:creator>keithyau</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://keithyau.wordpress.com/2011/08/03/to-be-loved/</guid>
		<description><![CDATA[The song i love most &#160; &#160; Filed under: Uncategorized<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=keithyau.wordpress.com&amp;blog=5494800&amp;post=231&amp;subd=keithyau&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div class='posterous_autopost'>
<p>The song i love most</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<span class='embed-youtube' style='text-align:center; display: block;'><iframe class='youtube-player' type='text/html' width='490' height='306' src='http://www.youtube.com/embed/_lHGslwZhX8?version=3&amp;rel=1&amp;fs=1&amp;showsearch=0&amp;showinfo=1&amp;iv_load_policy=1' frameborder='0'></iframe></span>
</div>
<br />Filed under: <a href='http://keithyau.wordpress.com/category/uncategorized/'>Uncategorized</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/keithyau.wordpress.com/231/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/keithyau.wordpress.com/231/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/keithyau.wordpress.com/231/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/keithyau.wordpress.com/231/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/keithyau.wordpress.com/231/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/keithyau.wordpress.com/231/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/keithyau.wordpress.com/231/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/keithyau.wordpress.com/231/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/keithyau.wordpress.com/231/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/keithyau.wordpress.com/231/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/keithyau.wordpress.com/231/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/keithyau.wordpress.com/231/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/keithyau.wordpress.com/231/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/keithyau.wordpress.com/231/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=keithyau.wordpress.com&amp;blog=5494800&amp;post=231&amp;subd=keithyau&amp;ref=&amp;feed=1" width="1" height="1" /><div class="sharedaddy sd-like-enabled"></div>]]></content:encoded>
			<wfw:commentRss>http://keithyau.wordpress.com/2011/08/03/to-be-loved/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e0c38730792fb4e3595a3fd00e0b141f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">keithyau</media:title>
		</media:content>
	</item>
		<item>
		<title>My latest configuration</title>
		<link>http://keithyau.wordpress.com/2011/08/03/my-latest-configuration/</link>
		<comments>http://keithyau.wordpress.com/2011/08/03/my-latest-configuration/#comments</comments>
		<pubDate>Wed, 03 Aug 2011 09:21:11 +0000</pubDate>
		<dc:creator>keithyau</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://keithyau.wordpress.com/2011/08/03/my-latest-configuration/</guid>
		<description><![CDATA[Filed under: Uncategorized<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=keithyau.wordpress.com&amp;blog=5494800&amp;post=225&amp;subd=keithyau&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[
<a href='http://keithyau.wordpress.com/2011/08/03/my-latest-configuration/my-latest-configuration-2/' title='My latest configuration'><img width="150" height="112" src="http://keithyau.files.wordpress.com/2011/08/2011-07-29_17-57-09_356-scaled-1000.jpg?w=150&#038;h=112" class="attachment-thumbnail" alt="My latest configuration" title="My latest configuration" /></a>
<a href='http://keithyau.wordpress.com/2011/08/03/my-latest-configuration/my-latest-configuration-3/' title='My latest configuration'><img width="150" height="112" src="http://keithyau.files.wordpress.com/2011/08/2011-07-15_17-01-35_831-scaled-1000.jpg?w=150&#038;h=112" class="attachment-thumbnail" alt="My latest configuration" title="My latest configuration" /></a>
<a href='http://keithyau.wordpress.com/2011/08/03/my-latest-configuration/my-latest-configuration-4/' title='My latest configuration'><img width="150" height="112" src="http://keithyau.files.wordpress.com/2011/08/2011-05-20_10-32-42_966-scaled-1000.jpg?w=150&#038;h=112" class="attachment-thumbnail" alt="My latest configuration" title="My latest configuration" /></a>
</div>
</p></div>
<br />Filed under: <a href='http://keithyau.wordpress.com/category/uncategorized/'>Uncategorized</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/keithyau.wordpress.com/225/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/keithyau.wordpress.com/225/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/keithyau.wordpress.com/225/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/keithyau.wordpress.com/225/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/keithyau.wordpress.com/225/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/keithyau.wordpress.com/225/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/keithyau.wordpress.com/225/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/keithyau.wordpress.com/225/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/keithyau.wordpress.com/225/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/keithyau.wordpress.com/225/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/keithyau.wordpress.com/225/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/keithyau.wordpress.com/225/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/keithyau.wordpress.com/225/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/keithyau.wordpress.com/225/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=keithyau.wordpress.com&amp;blog=5494800&amp;post=225&amp;subd=keithyau&amp;ref=&amp;feed=1" width="1" height="1" /><div class="sharedaddy sd-like-enabled"></div>]]></content:encoded>
			<wfw:commentRss>http://keithyau.wordpress.com/2011/08/03/my-latest-configuration/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e0c38730792fb4e3595a3fd00e0b141f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">keithyau</media:title>
		</media:content>

		<media:content url="http://keithyau.files.wordpress.com/2011/08/2011-07-29_17-57-09_356-scaled-1000.jpg?w=150" medium="image">
			<media:title type="html">My latest configuration</media:title>
		</media:content>

		<media:content url="http://keithyau.files.wordpress.com/2011/08/2011-07-15_17-01-35_831-scaled-1000.jpg?w=150" medium="image">
			<media:title type="html">My latest configuration</media:title>
		</media:content>

		<media:content url="http://keithyau.files.wordpress.com/2011/08/2011-05-20_10-32-42_966-scaled-1000.jpg?w=150" medium="image">
			<media:title type="html">My latest configuration</media:title>
		</media:content>
	</item>
		<item>
		<title>technical sharing session &#8211; Drupal @ecvision</title>
		<link>http://keithyau.wordpress.com/2011/08/03/technical-sharing-session-drupal-ecvision/</link>
		<comments>http://keithyau.wordpress.com/2011/08/03/technical-sharing-session-drupal-ecvision/#comments</comments>
		<pubDate>Wed, 03 Aug 2011 09:08:47 +0000</pubDate>
		<dc:creator>keithyau</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://keithyau.wordpress.com/2011/08/03/technical-sharing-session-drupal-ecvision/</guid>
		<description><![CDATA[Filed under: Uncategorized<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=keithyau.wordpress.com&amp;blog=5494800&amp;post=220&amp;subd=keithyau&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[
<a href='http://keithyau.wordpress.com/2011/08/03/technical-sharing-session-drupal-ecvision/technical-sharing-session-drupal-ecvision-2/' title='technical sharing session - Drupal @ecvision'><img width="150" height="139" src="http://keithyau.files.wordpress.com/2011/08/screenshot.png?w=150&#038;h=139" class="attachment-thumbnail" alt="technical sharing session - Drupal @ecvision" title="technical sharing session - Drupal @ecvision" /></a>
<a href='http://keithyau.wordpress.com/2011/08/03/technical-sharing-session-drupal-ecvision/technical-sharing-session-drupal-ecvision-3/' title='technical sharing session - Drupal @ecvision'><img width="109" height="150" src="http://keithyau.files.wordpress.com/2011/08/screenshot-1.png?w=109&#038;h=150" class="attachment-thumbnail" alt="technical sharing session - Drupal @ecvision" title="technical sharing session - Drupal @ecvision" /></a>
</div>
</p>
</div>
<br />Filed under: <a href='http://keithyau.wordpress.com/category/uncategorized/'>Uncategorized</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/keithyau.wordpress.com/220/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/keithyau.wordpress.com/220/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/keithyau.wordpress.com/220/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/keithyau.wordpress.com/220/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/keithyau.wordpress.com/220/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/keithyau.wordpress.com/220/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/keithyau.wordpress.com/220/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/keithyau.wordpress.com/220/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/keithyau.wordpress.com/220/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/keithyau.wordpress.com/220/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/keithyau.wordpress.com/220/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/keithyau.wordpress.com/220/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/keithyau.wordpress.com/220/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/keithyau.wordpress.com/220/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=keithyau.wordpress.com&amp;blog=5494800&amp;post=220&amp;subd=keithyau&amp;ref=&amp;feed=1" width="1" height="1" /><div class="sharedaddy sd-like-enabled"></div>]]></content:encoded>
			<wfw:commentRss>http://keithyau.wordpress.com/2011/08/03/technical-sharing-session-drupal-ecvision/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e0c38730792fb4e3595a3fd00e0b141f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">keithyau</media:title>
		</media:content>

		<media:content url="http://keithyau.files.wordpress.com/2011/08/screenshot.png?w=150" medium="image">
			<media:title type="html">technical sharing session - Drupal @ecvision</media:title>
		</media:content>

		<media:content url="http://keithyau.files.wordpress.com/2011/08/screenshot-1.png?w=109" medium="image">
			<media:title type="html">technical sharing session - Drupal @ecvision</media:title>
		</media:content>
	</item>
		<item>
		<title>Online marketing in China</title>
		<link>http://keithyau.wordpress.com/2010/10/13/online-marketing-in-china/</link>
		<comments>http://keithyau.wordpress.com/2010/10/13/online-marketing-in-china/#comments</comments>
		<pubDate>Wed, 13 Oct 2010 13:07:26 +0000</pubDate>
		<dc:creator>keithyau</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://keithyau.wordpress.com/2010/10/13/online-marketing-in-china/</guid>
		<description><![CDATA[Recently, I met my friend&#039;s&#160;cousin. She comes from ShangHai &#8211; A first class city in China. I went to ShangHai two times and really feels opportunity out there. I believe many people are headache about getting into China market. It is harsh to setup retail business or making any sales. Due to the great firewall, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=keithyau.wordpress.com&amp;blog=5494800&amp;post=219&amp;subd=keithyau&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div class='posterous_autopost'>Recently, I met my friend&#039;s&nbsp;cousin. She comes from ShangHai &#8211; A first class city in China. I went to ShangHai two times and really feels opportunity out there. I believe many people are headache about getting into China market. It is harsh to setup retail business or making any sales. Due to the great firewall, social network services &amp; many online marketing stuffs are blocked.
<p />
<div>BTW, with my friend&#039;s cousin &#8211; Nico, she is an online marketer in China who responses to brand New balance / North Face, I start to realize how to make things works in China. Firstly, we should make a mapping on SNS</div>
<p />
<div>
<table border="0">
<tr>
<td align="LEFT" height="17" width="199"><b>Foreign SNS</b></td>
<td align="LEFT" width="192"><b>China SNS</b></td>
<td align="LEFT" width="326"><b>Description</b></td>
</tr>
<tr>
<td align="LEFT" height="18">Facebook </td>
<td align="LEFT"><a href="http://renren.com">renren.com</a> </td>
<td align="LEFT">More on college students</td>
</tr>
<tr>
<td align="LEFT" height="20">Twitter</td>
<td align="LEFT"><a href="http://t.sins.com.cn">t.sins.com.cn</a> (微博)</td>
<td align="LEFT">More on superstars, feel link up with other websites</td>
</tr>
<tr>
<td align="LEFT" height="20">MySpace</td>
<td align="LEFT"><a href="http://www.kaixin001.com">www.kaixin001.com</a> (開心網)</td>
<td align="LEFT">For all people</td>
</tr>
<tr>
<td align="LEFT" height="20">Linkedin</td>
<td align="LEFT"><a href="http://www.wealink.com/">www.wealink.com</a> (若領)</td>
<td align="LEFT">More on mainland jobs</td>
</tr>
<tr>
<td align="LEFT" height="18">Posterous</td>
<td align="LEFT">*Still have room for competiton</td>
<td align="LEFT"></td>
</tr>
<tr>
<td align="LEFT" height="20">YouTube</td>
<td align="LEFT"><a href="http://tudou.com">tudou.com</a> (土豆)</td>
<td align="LEFT">Many anime, do not have copyright at all</td>
</tr>
</table>
<p></div>
<p />
<div><span style="font-size:large;">All knows technology are the same</span></div>
<p />
<div>You will find China SNS and foreign SNS nearly take no difference on technology behind. But, content has big different.</div>
<div>Since nearly no foreign people in China SNS, the culture is China only while foreign SNS is a global mixture. Unlike foreign SNS, China people take very serious on making online friends. They &nbsp;afraid of be traded, advertisement, fake good &#8230;. etc. Don&#039;t ever think to make friends like twitter &#8211; Follow some people, like others&#039; post, find common interest /&nbsp;expertise &#8230;. Spirit&nbsp;communication not that useful at all.&nbsp;</div>
<p />
<div><span style="font-size:large;">If you are making online business</span></div>
<p />
<div>Everything in kaixin need money, commonly like facebook group/page, it need money to create. No free advertising even you have many collections. The budget in China online marketing should be higher than using twitter / facebook.</div>
<p />
<div><span style="font-size:large;">The only way is to ask your China friend to share his/her network</span>&nbsp;</div>
<p />
<div>I have to say, if you can add friends in China SNS you already know, it will be much better. In China, online or offline, like you find a job, you cannot find a job about your good experience but making good friends matter. This culture goes on to Internet. Just like twitter followers &#8212; Provided that your followers are famous, you must have great power of influence.</div>
<p />
<div><span style="font-size:large;">Not many management tools&nbsp;available</span></div>
<p />
<div>I don&#039;t know the reason, TweetDesk not supporting&nbsp;kaixin / t.sina or you are going to make one !</div>
<p />
<div><span style="font-size:large;">It is really slow &#8230;</span></div>
<p />
<div>I&#039;m talking about the network, especially overseas&#8230; If you are remote control like in US / UK, you better have an proxy ! You may left your message and I get one for you.</div>
<p />
<div><span style="font-size:large;">How to make things work?</span></div>
<p />
<div>Other than hiring China writers, SNS operators &#8230; you still need to make good decisions in a very very rapid changing market&#8230; Further, A China law said foreign business should be cooperate with local business in order to setup in China. Frankly speaking, it cannot be done on your own, since you don&#039;t have time to understand, to learn and to pay for the totally different China culture. It is hard for me even I am a Hong Kong 80afters. Not kidding, left your message and I introduce Nico to you, you will safe your life.</div>
<p />
<div><span style="font-size:large;">Update</span></div>
<p />
<div>When I get more understanding, I will come back and share about how to deal with China people over Internet ~</div>
<p />
<div>Thanks</div>
</div>
<br />Filed under: <a href='http://keithyau.wordpress.com/category/uncategorized/'>Uncategorized</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/keithyau.wordpress.com/219/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/keithyau.wordpress.com/219/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/keithyau.wordpress.com/219/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/keithyau.wordpress.com/219/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/keithyau.wordpress.com/219/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/keithyau.wordpress.com/219/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/keithyau.wordpress.com/219/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/keithyau.wordpress.com/219/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/keithyau.wordpress.com/219/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/keithyau.wordpress.com/219/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/keithyau.wordpress.com/219/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/keithyau.wordpress.com/219/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/keithyau.wordpress.com/219/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/keithyau.wordpress.com/219/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=keithyau.wordpress.com&amp;blog=5494800&amp;post=219&amp;subd=keithyau&amp;ref=&amp;feed=1" width="1" height="1" /><div class="sharedaddy sd-like-enabled"></div>]]></content:encoded>
			<wfw:commentRss>http://keithyau.wordpress.com/2010/10/13/online-marketing-in-china/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e0c38730792fb4e3595a3fd00e0b141f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">keithyau</media:title>
		</media:content>
	</item>
		<item>
		<title>2010-09-14 15.02.13</title>
		<link>http://keithyau.wordpress.com/2010/09/16/2010-09-14-15-02-13/</link>
		<comments>http://keithyau.wordpress.com/2010/09/16/2010-09-14-15-02-13/#comments</comments>
		<pubDate>Thu, 16 Sep 2010 06:08:46 +0000</pubDate>
		<dc:creator>keithyau</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://keithyau.wordpress.com/2010/09/16/2010-09-14-15-02-13/</guid>
		<description><![CDATA[My new setup in UTStar ~! tup in P Filed under: Uncategorized<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=keithyau.wordpress.com&amp;blog=5494800&amp;post=216&amp;subd=keithyau&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div class='posterous_autopost'>My new setup in UTStar ~!<a href='http://keithyau.files.wordpress.com/2010/09/2010-09-14_15-02-13-scaled-1000.jpg'><img src="http://keithyau.files.wordpress.com/2010/09/2010-09-14_15-02-13-scaled-1000.jpg?w=500&#038;h=375" width="500" height="375" /></a> tup in P</div>
<br />Filed under: <a href='http://keithyau.wordpress.com/category/uncategorized/'>Uncategorized</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/keithyau.wordpress.com/216/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/keithyau.wordpress.com/216/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/keithyau.wordpress.com/216/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/keithyau.wordpress.com/216/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/keithyau.wordpress.com/216/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/keithyau.wordpress.com/216/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/keithyau.wordpress.com/216/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/keithyau.wordpress.com/216/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/keithyau.wordpress.com/216/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/keithyau.wordpress.com/216/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/keithyau.wordpress.com/216/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/keithyau.wordpress.com/216/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/keithyau.wordpress.com/216/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/keithyau.wordpress.com/216/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=keithyau.wordpress.com&amp;blog=5494800&amp;post=216&amp;subd=keithyau&amp;ref=&amp;feed=1" width="1" height="1" /><div class="sharedaddy sd-like-enabled"></div>]]></content:encoded>
			<wfw:commentRss>http://keithyau.wordpress.com/2010/09/16/2010-09-14-15-02-13/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e0c38730792fb4e3595a3fd00e0b141f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">keithyau</media:title>
		</media:content>

		<media:content url="http://keithyau.files.wordpress.com/2010/09/2010-09-14_15-02-13-scaled-1000.jpg?w=300" medium="image" />
	</item>
		<item>
		<title>I&#8217;m now in China</title>
		<link>http://keithyau.wordpress.com/2010/09/13/im-now-in-china/</link>
		<comments>http://keithyau.wordpress.com/2010/09/13/im-now-in-china/#comments</comments>
		<pubDate>Mon, 13 Sep 2010 12:21:47 +0000</pubDate>
		<dc:creator>keithyau</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://keithyau.wordpress.com/2010/09/13/im-now-in-china/</guid>
		<description><![CDATA[Hi All, I&#8217;m now in China, working @UTStarcom&#8230; Twitter &#38; facebook&#160;@ posterous are not available &#8230; Keep in touch and Try my best ~ See u all Filed under: Uncategorized<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=keithyau.wordpress.com&amp;blog=5494800&amp;post=213&amp;subd=keithyau&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div class='posterous_autopost'>
<div><a href='http://keithyau.files.wordpress.com/2010/09/posterous_not_available-png-scaled-1000.jpg'><img src="http://keithyau.files.wordpress.com/2010/09/posterous_not_available-png-scaled-1000.jpg?w=500&#038;h=293" width="500" height="293" /></a> Hi All,</div>
<p />
<div>I&#8217;m now in China, working @UTStarcom&#8230;</div>
<div>Twitter &amp; facebook&nbsp;@ posterous are not available &#8230; Keep in touch and Try my best ~ <img src='http://s2.wp.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </div>
<p />
<div>See u all </div>
</div>
<br />Filed under: <a href='http://keithyau.wordpress.com/category/uncategorized/'>Uncategorized</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/keithyau.wordpress.com/213/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/keithyau.wordpress.com/213/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/keithyau.wordpress.com/213/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/keithyau.wordpress.com/213/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/keithyau.wordpress.com/213/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/keithyau.wordpress.com/213/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/keithyau.wordpress.com/213/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/keithyau.wordpress.com/213/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/keithyau.wordpress.com/213/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/keithyau.wordpress.com/213/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/keithyau.wordpress.com/213/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/keithyau.wordpress.com/213/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/keithyau.wordpress.com/213/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/keithyau.wordpress.com/213/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=keithyau.wordpress.com&amp;blog=5494800&amp;post=213&amp;subd=keithyau&amp;ref=&amp;feed=1" width="1" height="1" /><div class="sharedaddy sd-like-enabled"></div>]]></content:encoded>
			<wfw:commentRss>http://keithyau.wordpress.com/2010/09/13/im-now-in-china/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e0c38730792fb4e3595a3fd00e0b141f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">keithyau</media:title>
		</media:content>

		<media:content url="http://keithyau.files.wordpress.com/2010/09/posterous_not_available-png-scaled-1000.jpg?w=300" medium="image" />
	</item>
		<item>
		<title>my desktop</title>
		<link>http://keithyau.wordpress.com/2010/09/03/my-desktop/</link>
		<comments>http://keithyau.wordpress.com/2010/09/03/my-desktop/#comments</comments>
		<pubDate>Fri, 03 Sep 2010 09:50:17 +0000</pubDate>
		<dc:creator>keithyau</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://keithyau.wordpress.com/2010/09/03/my-desktop/</guid>
		<description><![CDATA[Filed under: Uncategorized<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=keithyau.wordpress.com&amp;blog=5494800&amp;post=210&amp;subd=keithyau&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div class='posterous_autopost'><a href='http://keithyau.files.wordpress.com/2010/09/2010-09-03_17-37-02-scaled-1000.jpg'><img src="http://keithyau.files.wordpress.com/2010/09/2010-09-03_17-37-02-scaled-1000.jpg?w=500&#038;h=375" width="500" height="375" /></a> </div>
<br />Filed under: <a href='http://keithyau.wordpress.com/category/uncategorized/'>Uncategorized</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/keithyau.wordpress.com/210/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/keithyau.wordpress.com/210/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/keithyau.wordpress.com/210/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/keithyau.wordpress.com/210/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/keithyau.wordpress.com/210/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/keithyau.wordpress.com/210/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/keithyau.wordpress.com/210/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/keithyau.wordpress.com/210/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/keithyau.wordpress.com/210/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/keithyau.wordpress.com/210/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/keithyau.wordpress.com/210/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/keithyau.wordpress.com/210/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/keithyau.wordpress.com/210/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/keithyau.wordpress.com/210/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=keithyau.wordpress.com&amp;blog=5494800&amp;post=210&amp;subd=keithyau&amp;ref=&amp;feed=1" width="1" height="1" /><div class="sharedaddy sd-like-enabled"></div>]]></content:encoded>
			<wfw:commentRss>http://keithyau.wordpress.com/2010/09/03/my-desktop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e0c38730792fb4e3595a3fd00e0b141f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">keithyau</media:title>
		</media:content>

		<media:content url="http://keithyau.files.wordpress.com/2010/09/2010-09-03_17-37-02-scaled-1000.jpg?w=300" medium="image" />
	</item>
		<item>
		<title>Search Engine Optimization / online marketing &#8211; Content is King</title>
		<link>http://keithyau.wordpress.com/2010/08/30/search-engine-optimization-online-marketing-content-is-king/</link>
		<comments>http://keithyau.wordpress.com/2010/08/30/search-engine-optimization-online-marketing-content-is-king/#comments</comments>
		<pubDate>Mon, 30 Aug 2010 08:01:49 +0000</pubDate>
		<dc:creator>keithyau</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://keithyau.wordpress.com/2010/08/30/search-engine-optimization-online-marketing-content-is-king/</guid>
		<description><![CDATA[Filed under: Uncategorized<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=keithyau.wordpress.com&amp;blog=5494800&amp;post=205&amp;subd=keithyau&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[
<a href='http://keithyau.wordpress.com/2010/08/30/search-engine-optimization-online-marketing-content-is-king/search-engine-optimization-online-marketing-content-is-king-2/' title='Search Engine Optimization / online marketing - Content is King'><img width="150" height="111" src="http://keithyau.files.wordpress.com/2010/08/simple_seo_plan.png?w=150&#038;h=111" class="attachment-thumbnail" alt="Search Engine Optimization / online marketing - Content is King" title="Search Engine Optimization / online marketing - Content is King" /></a>
<a href='http://keithyau.wordpress.com/2010/08/30/search-engine-optimization-online-marketing-content-is-king/search-engine-optimization-online-marketing-content-is-king-3/' title='Search Engine Optimization / online marketing - Content is King'><img width="150" height="95" src="http://keithyau.files.wordpress.com/2010/08/target_your_source.png?w=150&#038;h=95" class="attachment-thumbnail" alt="Search Engine Optimization / online marketing - Content is King" title="Search Engine Optimization / online marketing - Content is King" /></a>

<br />Filed under: <a href='http://keithyau.wordpress.com/category/uncategorized/'>Uncategorized</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/keithyau.wordpress.com/205/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/keithyau.wordpress.com/205/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/keithyau.wordpress.com/205/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/keithyau.wordpress.com/205/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/keithyau.wordpress.com/205/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/keithyau.wordpress.com/205/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/keithyau.wordpress.com/205/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/keithyau.wordpress.com/205/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/keithyau.wordpress.com/205/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/keithyau.wordpress.com/205/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/keithyau.wordpress.com/205/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/keithyau.wordpress.com/205/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/keithyau.wordpress.com/205/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/keithyau.wordpress.com/205/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=keithyau.wordpress.com&amp;blog=5494800&amp;post=205&amp;subd=keithyau&amp;ref=&amp;feed=1" width="1" height="1" /><div class="sharedaddy sd-like-enabled"></div>]]></content:encoded>
			<wfw:commentRss>http://keithyau.wordpress.com/2010/08/30/search-engine-optimization-online-marketing-content-is-king/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/e0c38730792fb4e3595a3fd00e0b141f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">keithyau</media:title>
		</media:content>

		<media:content url="http://keithyau.files.wordpress.com/2010/08/simple_seo_plan.png?w=150" medium="image">
			<media:title type="html">Search Engine Optimization / online marketing - Content is King</media:title>
		</media:content>

		<media:content url="http://keithyau.files.wordpress.com/2010/08/target_your_source.png?w=150" medium="image">
			<media:title type="html">Search Engine Optimization / online marketing - Content is King</media:title>
		</media:content>
	</item>
	</channel>
</rss>
