<?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"
	>

<channel>
	<title>The Tao of Blogging to Wealth &#187; featured</title>
	<atom:link href="http://blogs.mysites-advisor.com/category/featured/feed" rel="self" type="application/rss+xml" />
	<link>http://blogs.mysites-advisor.com</link>
	<description></description>
	<pubDate>Tue, 10 Jun 2008 06:00:10 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.2</generator>
	<language>en</language>
			<item>
		<title>Time Based Advertising Tutorial</title>
		<link>http://blogs.mysites-advisor.com/2008/06/10/time-based-advertising-tutorial/</link>
		<comments>http://blogs.mysites-advisor.com/2008/06/10/time-based-advertising-tutorial/#comments</comments>
		<pubDate>Tue, 10 Jun 2008 05:53:55 +0000</pubDate>
		<dc:creator>Ken Xu</dc:creator>
		
		<category><![CDATA[Technical Skills]]></category>

		<category><![CDATA[featured]]></category>

		<category><![CDATA[adsense]]></category>

		<category><![CDATA[advertising]]></category>

		<category><![CDATA[time-based ads]]></category>

		<guid isPermaLink="false">http://blogs.mysites-advisor.com/?p=519</guid>
		<description><![CDATA[Time Based Advertising is a new trick that I learn which could help me to increase tech savvy readership and increase click on ads from search engine visitor.
Generally, New post that just posted for around 3-5 days will not have enough power to show higher in the SERP. So it&#8217;s rarely to see your post [...]]]></description>
			<content:encoded><![CDATA[<p>Time Based Advertising is a new trick that I learn which could help me to increase tech savvy readership and increase click on ads from search engine visitor.</p>
<p>Generally, New post that just posted for around 3-5 days will not have enough power to show higher in the SERP. So it&#8217;s rarely to see your post listed in the first page of SERP (except if your posts get a lot of supports). Only those posts that have been aged for more than 1 week will get a good search engine traffic (at least, that&#8217;s what happened at my blog).</p>
<p>So, I will only show ads on posts that I posted 5 days ago and avoid showing ads on the newer posts. The steps are easy. Follow this tutorial and start time-basing your advertising! <img src='http://blogs.mysites-advisor.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><img class="alignnone size-full wp-image-520" title="timebased-adsense" src="http://blogs.mysites-advisor.com/wp-content/uploads/2008/06/timebased-adsense.jpg" alt="" width="429" height="165" /><br />
<span style="font-size: xx-small;"><em>Image Credit: <a href="http://flickr.com/photos/lwr/60496147/">Leo Reynolds</a></em></span></p>
<p>First, let&#8217;s say you want to time-based an adverts on your single post page <strong>below your headline</strong>. The steps are as follow (for Wordpress only):</p>
<p>1. Find the following code:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
</pre></td><td class="code"><pre class="php"><span style="color: #339933;">&lt;</span>div <span style="color: #000000; font-weight: bold;">class</span><span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;entry&quot;</span><span style="color: #339933;">&gt;</span>
<span style="color: #000000; font-weight: bold;">&lt;?php</span> the_content<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'&lt;p class=&quot;serif&quot;&gt;Read the rest of this entry &amp;raquo;&lt;/p&gt;'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span></pre></td></tr></table></div>

<p>2. Copy this codes:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
</pre></td><td class="code"><pre class="php"><span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #000033;">$u_time</span> <span style="color: #339933;">=</span> get_the_time<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'U'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000033;">$selector</span> <span style="color: #339933;">=</span> <span style="color: #cc66cc;">0</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span> <span style="color: #009900;">&#40;</span> <span style="color: #990000;">time</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">-</span> <span style="color: #cc66cc;">432000</span> <span style="color: #009900;">&#41;</span> <span style="color: #339933;">&gt;=</span> <span style="color: #000033;">$u_time</span> <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span> <span style="color: #000033;">$selector</span> <span style="color: #339933;">=</span> <span style="color: #cc66cc;">1</span><span style="color: #339933;">;</span> <span style="color: #009900;">&#125;</span> <span style="color: #666666; font-style: italic;">// 60*60*24*2 = 432000 = 5 days</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span>
<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span> <span style="color: #000033;">$selector</span> <span style="color: #339933;">&gt;</span> <span style="color: #cc66cc;">0</span> <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
<span style="color: #666666; font-style: italic;">//Paste your Adverts Code here - Adsense, YPN, Chitika, etc</span>
<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #009900;">&#125;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span></pre></td></tr></table></div>

<p>3. Paste it between the div entry and the_content:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
</pre></td><td class="code"><pre class="php"><span style="color: #339933;">&lt;</span>div <span style="color: #000000; font-weight: bold;">class</span><span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;entry&quot;</span><span style="color: #339933;">&gt;</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #000033;">$u_time</span> <span style="color: #339933;">=</span> get_the_time<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'U'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000033;">$selector</span> <span style="color: #339933;">=</span> <span style="color: #cc66cc;">0</span><span style="color: #339933;">;</span>
<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span> <span style="color: #009900;">&#40;</span> <span style="color: #990000;">time</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">-</span> <span style="color: #cc66cc;">432000</span> <span style="color: #009900;">&#41;</span> <span style="color: #339933;">&gt;=</span> <span style="color: #000033;">$u_time</span> <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span> <span style="color: #000033;">$selector</span> <span style="color: #339933;">=</span> <span style="color: #cc66cc;">1</span><span style="color: #339933;">;</span> <span style="color: #009900;">&#125;</span> <span style="color: #666666; font-style: italic;">// 60*60*24*2 = 432000 = 5 days</span>
<span style="color: #000000; font-weight: bold;">?&gt;</span>
<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span> <span style="color: #000033;">$selector</span> <span style="color: #339933;">&gt;</span> <span style="color: #cc66cc;">0</span> <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
<span style="color: #666666; font-style: italic;">//Paste your Adverts Code here - Banner, Adsense, YPN, Chitika, etc</span>
<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #009900;">&#125;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">&lt;?php</span> the_content<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'&lt;p class=&quot;serif&quot;&gt;Read the rest of this entry &amp;raquo;&lt;/p&gt;'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span></pre></td></tr></table></div>

<p>4. Replace the text &#8220;//Paste your adverts code here - Adsense, etc&#8221; to your Ads Code and Change the time as you wish.</p>
<p>What we need is the time in &#8220;second&#8221;. So, to display ads on 5 days posts, you need to convert it to second.</p>
<blockquote><p>60 seconds x 60 minutes x 24 hours x 5 days = 432.000 seconds</p></blockquote>
<p>Look at my example at my blog about <a href="http://www.hardwaresphere.com">hardware and gadgets.</a> I set it to display Google ads on post that have been aged for 2 days. It&#8217;s pretty useful for gaining new readership as reader hate ads and blind on it. But it&#8217;s useful for monetizing Search Engine traffic as the visitor is more clicky. <img src='http://blogs.mysites-advisor.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Hope this simple tips useful for you. Have a nice day!</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.mysites-advisor.com/2008/06/10/time-based-advertising-tutorial/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Back to Blogging with New Theme</title>
		<link>http://blogs.mysites-advisor.com/2008/05/26/back-to-blogging-with-new-theme/</link>
		<comments>http://blogs.mysites-advisor.com/2008/05/26/back-to-blogging-with-new-theme/#comments</comments>
		<pubDate>Mon, 26 May 2008 13:46:08 +0000</pubDate>
		<dc:creator>Ken Xu</dc:creator>
		
		<category><![CDATA[Online Wealth]]></category>

		<category><![CDATA[Update News]]></category>

		<category><![CDATA[featured]]></category>

		<guid isPermaLink="false">http://blogs.mysites-advisor.com/?p=507</guid>
		<description><![CDATA[I find myself difficult to move my finger to start typing after away from blogging for more than 5 months since December 2007. I guess that what people suffer from not doing things for a long term period.
I guess I need to give a short report about my condition and situation that made me unable [...]]]></description>
			<content:encoded><![CDATA[<p>I find myself difficult to move my finger to start typing after away from blogging for more than 5 months since December 2007. I guess that what people suffer from not doing things for a long term period.</p>
<p>I guess I need to give a short report about my condition and situation that made me unable to blog for 5 months (yeah, it&#8217;s a long and boring holiday for me). I&#8217;m not actually having a holiday for that long. A long white beard could have been grown healthily on my chin!</p>
<p>The truth is, on the early december I suffered from a serious illness that I can&#8217;t even explain it in English. I lost 10 pounds because of this illness (a virus exactly) and I have become a more sexy than before (all my ribs looks like a guitar strings. I can play guitar with it now! <img src='http://blogs.mysites-advisor.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> ).</p>
<p>It takes two months to cure this strange illness and 1 month to recovered. I got to stay in the bed laying there doing nothing but staring at the pale ceiling. It&#8217;s really a nightmare for me who love to do lots of activities and move around a lot.</p>
<p><img class="alignnone size-full wp-image-509" title="welcoming-cats2" src="http://blogs.mysites-advisor.com/wp-content/uploads/2008/05/welcoming-cats2.jpg" alt="" width="430" height="254" /><br />
<span style="font-size: xx-small;"><em>Image Credit: <a href="http://www.flickr.com/photos/94028658@N00/2367237831/">Maneki Neko - Welcoming Cats</a></em></span></p>
<p>Well, it has passed and now it&#8217;s a whole new life for me to begin something great. As you can enjoy now, MySitesAdvisor have a new blog redesign again. I guess I need to have a new and fresher theme for welcoming myself to the blogosphere. <img src='http://blogs.mysites-advisor.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>I code them myself, used up to 1 month to finalizing this theme (less free time to do things I like). I hope you would like this theme and visit more often. I have check for the server load time. You won&#8217;t have a trouble to load my blog even if you use dial-up internet connection.</p>
<p>I will update you more about the feature of this theme and I&#8217;m going to release my previous theme as a free download with a demo site.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.mysites-advisor.com/2008/05/26/back-to-blogging-with-new-theme/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Blogging on Blogging - Hardcore Road to Success</title>
		<link>http://blogs.mysites-advisor.com/2007/11/29/blogging-on-blogging-hardcore-road-to-success/</link>
		<comments>http://blogs.mysites-advisor.com/2007/11/29/blogging-on-blogging-hardcore-road-to-success/#comments</comments>
		<pubDate>Thu, 29 Nov 2007 12:45:12 +0000</pubDate>
		<dc:creator>Ken Xu</dc:creator>
		
		<category><![CDATA[Blogebrity]]></category>

		<category><![CDATA[Blogging]]></category>

		<category><![CDATA[featured]]></category>

		<guid isPermaLink="false">http://blogs.mysites-advisor.com/index.php/2007/11/29/blogging-on-blogging-hardcore-road-to-success/</guid>
		<description><![CDATA[<img src="http://blogs.mysites-advisor.com/wp-content/uploads/2007/11/crowded.thumbnail.jpg" />

Blogging on an over saturated niches is not a wise first step to your own success. You will feel discourage, or unable to turn the situation around because too much competition ahead to break you mental like breaking glasses. In this post, I share you my personal story about my mistakes to tapped on saturated niche and how I turn it around.]]></description>
			<content:encoded><![CDATA[<p><!--adsense--></p>
<p>Believe it or not, blogging on blogging is not the tao to make money online  anymore. The reason is because the blogging subject has been covered by whole  lots of expert like Darren and Lorelle. It&#8217;s never become easier to find topic  that they haven&#8217;t covered to blog about.</p>
<p>As far as I learn, this niche isn&#8217;t where the Tao of Online Money Wealth  located. You should seek for other niche or may be you can keep spinning  your blog to another type of blogging niche that not discussing about blogging  but have the relation with it.</p>
<p>For example, you may cover the coding and design if you have the interest and  a set of skills in this subject. Or you may be can spin the subject to some  other mentality development subject to empower a blogger&#8217;s soul.</p>
<p><img src="http://blogs.mysites-advisor.com/wp-content/uploads/2007/11/crowded.jpg" /></p>
<p>Blogging on Blogging is dead because it&#8217;s saturated or jammed by blogger.  You&#8217;ll just keep echoing the idea from experts (You know, there are so many  of them out there and they might have covered most of the evergreen articles) and you  can&#8217;t pull much attention from readers.</p>
<p>Although there is an advice about being a purple cow in your niche,  blogging niche is certainly not a great niche kick some ass anymore. You will  struggle sooo hard to be able to get some benefit out of it.</p>
<p>While you can actually get <strong>lots </strong>of benefits from other  niches, why you should struggle your life-and-death in blogging niche?</p>
<p>Except you are a great blogger like Lorelle, you might be able to find  some great idea to turn this around and keep exist in the strive competition.  How about if you are a complete beginner?</p>
<p>One word - Avoid it.</p>
<p>Guru like Yaro also say the same sentence. Avoid to blog your subject about  blogging. It won&#8217;t worth your time.</p>
<p>I tasted the experience and I&#8217;ve felt the result. To tell you frankly, I  build this blog by focusing around 70% of my roam time and 30% for other  project. Believe it or not, other blogs that stand on a different niches, is  proved to be able to generate much more income than this blog! <img src='http://blogs.mysites-advisor.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>I was surprised too. At first, I thought if I devoted more on a blog so I can  get better result! But that principle seems to be wrong.</p>
<p>Almost 90% of my income is not from this blog. At first, this blog is  genuinely blogging on blogging tips, tricks and tweaks. My old readers will know  what I&#8217;m talking about. At the time, I got no serious traffic from search  engines, only from some famous social media like digg.com and StumbleUpon (with  the helps from my buddies).</p>
<p>I decided to take a different action to spin my presentation. The result are,  since I spin my subject slowly away from blogging (getting away from blogging  but still related to it) , I&#8217;ve seen some nice improvement in search engine  traffic, referral, and more subscribers to my feed.</p>
<p>Those action give me an understanding about:</p>
<blockquote><p>Targeting a popular niches with a different approach and perspectives is  better than meddling inside those niches.</p></blockquote>
<p>This is my understanding as far as my experience growth. Blogging on Blogging is a hardcore road to blogging success. As an advise, try to  switch your attention to what you love to do, instead of putting your perspective  on what other peoples love.</p>
<blockquote><p>Follow where your passion is, and the money will follow you.</p></blockquote>
<p>It&#8217;s wise not to follow the same mistake as I did. Don&#8217;t play with fire and be a little obedience to  what those experts teach us. For sure, we&#8217;ll get what we want! <img src='http://blogs.mysites-advisor.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.mysites-advisor.com/2007/11/29/blogging-on-blogging-hardcore-road-to-success/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Make $10 a day - Is It Possible for You?</title>
		<link>http://blogs.mysites-advisor.com/2007/11/09/make-10-a-day-is-it-possible-for-you/</link>
		<comments>http://blogs.mysites-advisor.com/2007/11/09/make-10-a-day-is-it-possible-for-you/#comments</comments>
		<pubDate>Fri, 09 Nov 2007 18:40:00 +0000</pubDate>
		<dc:creator>Ken Xu</dc:creator>
		
		<category><![CDATA[Online Wealth]]></category>

		<category><![CDATA[featured]]></category>

		<guid isPermaLink="false">http://blogs.mysites-advisor.com/index.php/2007/11/09/make-10-a-day-is-it-possible-for-you/</guid>
		<description><![CDATA[<center><img src="http://blogs.mysites-advisor.com/wp-content/uploads/2007/11/hamilton.thumbnail.jpg"/></center>
<p>Is it possible for you to earn $10 a day from your new blog? Yes, you can! The key is not to rely on Google Adsense and other contextual advertisement program. You won't earn much if you use them as your monetizing source for your new blog.]]></description>
			<content:encoded><![CDATA[<p><a href="http://blogs.mysites-advisor.com/wp-content/uploads/2007/11/10-dollars.jpg"><img src="http://blogs.mysites-advisor.com/wp-content/uploads/2007/11/10-dollars-thumb.jpg" id="id" style="border: 0px none " alt="10-dollars" border="0" height="120" width="504" /></a></p>
<p><!--adsense--></p>
<p>I found an interesting poll held by Darren Rowse at <a href="http://www.problogger.net">Pro-blogger blog</a>. The poll is about how much is your earning since October. It&#8217;s a nice question and I happen to vote my voice into the poll too.</p>
<p>After voting, I saw something interesting in the result. I found the highest vote went to:</p>
<ul>
<li>I don&#8217;t make money blogging, and</li>
<li>Under $10</li>
</ul>
<p>Make money under $10 online for a month is not a great news. While many other vote goes to $100 - $499, Earning $10 for the entire October is just way too small.</p>
<p>That&#8217;s why I think we must shift our thinking about blogging. Many bloggers around the world rely on Google Adsense too much. Yes, it&#8217;s a free money and easy to apply. But it&#8217;s not how you begin your money making journey if you want to earn more then $10.</p>
<p>I&#8217;m also making this mistake at first. But I&#8217;m finally realized that I must combine several effort and tactics to make more than $10 a month, or even $10 a day!</p>
<p>It&#8217;s no secret, the only (free &amp; fast) way to achieve the goal is to do affiliate marketing combined with article marketing. Your blog will become the host of your affiliates source, and promote it with article marketing at several free directories to gain conversion and sales.</p>
<p>But it won&#8217;t happen overnight. You will need to set a goal to promote your blog (containing Affiliate links or your other money source) with several articles a day.</p>
<blockquote><p>These directories that bring results for me, but I cannot guarantee they will bring you results:</p>
<ul>
<li>Articlecity.com</li>
<li>Goarticles.com</li>
<li>Ezinearticles.com</li>
<li>Articlealley.com</li>
<li>Articledashboard.com</li>
</ul>
</blockquote>
<p>There are so many article directory out there. You can try to search on Google with this keyword: <a href="http://www.google.com/search?hl=en&amp;q=%22article+directory%22&amp;btnG=Google+Search">&#8220;article directory&#8221;</a> (with quote).</p>
<p>Your task is to submit at least 2 articles a day to the article directory and you will begin to see some sales in the next 2-3 weeks (and continue to make sales if you persistence on the task).</p>
<p>It&#8217;s sound easy, right? <img src='http://blogs.mysites-advisor.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Well, 1 warning for you. NEVER use article submitter software to submit your articles to hundred of article directories. Search Engines will banned you because of duplicate contents and you will never receive any traffic from them.</p>
<p>So, when you will you achieve the stats of $10 a day?</p>
<p>Let&#8217;s say you promote a great product/service for $100 and the merchant pay you 50% of the sales price. If you manage to sell 1 product every 5 days, that&#8217;s mean $10 a day! <img src='http://blogs.mysites-advisor.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Is selling 1 product every 5 days difficult?</p>
<p>Yes, if you don&#8217;t know how to write a <strong>pre-selling</strong> letter. That&#8217;s why you need to learn. Making money online is easy, if you keen to learn and keen to practice.</p>
<p>If you just sit around and hoping there is a magic happening on your life, forget about making money online. You won&#8217;t reach $10 just by lying down in your comfort zone and hoping for magic.</p>
<p>I recommend you to read Ken Evoy&#8217;s <a href="http://mycps.sitesell.com/mywebinfosharing.html">Preselling</a> Book. Although it&#8217;s an old book, it&#8217;s still work like charm! <img src='http://blogs.mysites-advisor.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.mysites-advisor.com/2007/11/09/make-10-a-day-is-it-possible-for-you/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Communication Channel Testing - Case Study</title>
		<link>http://blogs.mysites-advisor.com/2007/10/30/communication-channel-testing-case-study/</link>
		<comments>http://blogs.mysites-advisor.com/2007/10/30/communication-channel-testing-case-study/#comments</comments>
		<pubDate>Tue, 30 Oct 2007 00:10:46 +0000</pubDate>
		<dc:creator>Ken Xu</dc:creator>
		
		<category><![CDATA[Network]]></category>

		<category><![CDATA[featured]]></category>

		<guid isPermaLink="false">http://blogs.mysites-advisor.com/index.php/2007/10/30/communication-channel-testing-case-study/</guid>
		<description><![CDATA[<p align="center"?<img src="http://blogs.mysites-advisor.com/wp-content/uploads/2007/10/fig_-_power_of_communication.thumbnail.jpg"/></p>
It's a nuts research done by me to prove "Communication Channel" is the factor that decide your blog's "live or dead". It's a 1 week testing and the result is amazing! You better read this before anything to avoid the same result as what I've got! ]]></description>
			<content:encoded><![CDATA[<p><!--adsense--></p>
<p>You may have notice some downgrade on this blog. Actually, I was testing some method that Yaro Starak teach on his blogmastermind blueprint.</p>
<p>He said that the &#8220;Communication Channel&#8221; is very important for a blog. I read his Blogmastermind blueprint and kind of curious what is the effect if I <strong>let it go</strong> instead of building it.. <img src='http://blogs.mysites-advisor.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<blockquote><p>Read <a href="http://www.blogmastermind.com/blueprint/?home=735">his blueprint</a> on page 25-26 and you will know what I&#8217;m talking about.</p></blockquote>
<p>That&#8217;s where I decided to take a 1 week testing directly on this blog. The result is truly amazing. Although I&#8217;ve got an upgrade of PageRank (currently 4 now), It still unable to make any change to the stats.</p>
<p>Total of 3 downgrades happening on this blog during the testing:</p>
<ul>
<li>Alexa from 70.000+ down grade to 83.000+</li>
<li>Comment counts decrease significantly</li>
<li>Traffic decrease by 30%! :O</li>
</ul>
<p>Seriously, it&#8217;s a great experience for me. What I&#8217;ve done is just staying normal on my own posting frequency and become passive on any blogs that I happened to visit often.</p>
<p>It&#8217;s amazing to see how everything is dropping continuously during the test. I realized something that pretty important for improving my blog visibility, though..</p>
<p>You may think I&#8217;m silly enough to allow my stats drop intentionally. It&#8217;s strange, right? Well, I love to test something to prove and taste the failure itself. I believe failure is the mother of knowledge. No failure no serious gain. <img src='http://blogs.mysites-advisor.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Of course, I have gained a serious self-enlightenment on what Yaro so called &#8220;Communication Channel&#8221;. It&#8217;s not simply by reading and understands his statement (<a href="http://www.blogmastermind.com/blueprint/?home=735">Blueprint</a> - p25-26), I actually &#8220;feel&#8221; the painful experience of losing the communication channel in my blog.</p>
<p>In this test, I&#8217;ve proved 6 things:</p>
<ol>
<li><strong>Regular Updating</strong> is useless if you just &#8216;Update&#8217; alone</li>
<li><strong>Content is not the</strong> <strong>true King</strong>. I create pillar contents regularly, but the stats keep falling</li>
<li><strong>PageRank </strong>means nothing but a green bar on your browser</li>
<li><strong>Alexa actually useful </strong>- Alexa represent the big picture of your blog</li>
<li><strong>Number of comment</strong> that you will get on your blog is depend on your activities within your niche.</li>
<li>Social Media Mass Submitter like <strong>Onlywire</strong> is useless in bringing traffic. It&#8217;s all about incoming links only.</li>
</ol>
<p>The more you active and take part in conversations, the more people will value your visit and they pay you with an attention on your blog. It&#8217;s about Give first and take later.</p>
<p>You need to consistently work out the schedule (set some if you don&#8217;t have). It&#8217;s useless if you active for 1 month and stop for the next one month. You will back to your<strong> start point</strong> again.</p>
<p>Except you have reach the Bigger communication channel, and have a bunch of loyal readers that could help you promoting your blog without your private request to them, your blog won&#8217;t have a bright future.</p>
<blockquote><p>It&#8217;s very important to reach that point (reaching a bigger CC) before you can try to relax yourself or try to entering to your comfort zone by not commenting or building relationship regularly.</p></blockquote>
<p>I risk my own stats to do this research, but I&#8217;m happy about it because it&#8217;s a great experience for me to see exactly how the things working around. Now, I understand &#8216;deeply&#8217; that Blogging is about communication with the surrounding. It&#8217;s not about make a post everyday and get it <strong>stumbled</strong> or <strong>dugg</strong> by other and then go missing into the wood of blogs, It&#8217;s all about building relationship. <img src='http://blogs.mysites-advisor.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>It&#8217;s time for me to get up and running again. I&#8217;m going to do a round 2 testing directly on this blog. But now, I will try to build the communication channel instead of regular daily update. Let&#8217;s see what will happen on next week.</p>
<p>Cheer!</p>
<p><em>Note: I&#8217;m not playing around with my blog future. Instead, I want to <strong>taste</strong> exactly how is the &#8216;feeling&#8217; of each theory (I&#8217;m a kinesthetic type of human - feeling better than observing and listening) . I&#8217;ve done enough reading and observing on other achievement and theory. It&#8217;s time to &#8216;feel&#8217; instead of &#8216;understand&#8217;.</em></p>
<p>Any comment, opinions, objections? Please do it below.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.mysites-advisor.com/2007/10/30/communication-channel-testing-case-study/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Transformation Theme Launching Day!</title>
		<link>http://blogs.mysites-advisor.com/2007/10/23/transformation-theme/</link>
		<comments>http://blogs.mysites-advisor.com/2007/10/23/transformation-theme/#comments</comments>
		<pubDate>Tue, 23 Oct 2007 01:07:22 +0000</pubDate>
		<dc:creator>Ken Xu</dc:creator>
		
		<category><![CDATA[featured]]></category>

		<category><![CDATA[wordpress theme]]></category>

		<guid isPermaLink="false">http://blogs.mysites-advisor.com/index.php/2007/10/23/transformation-theme/</guid>
		<description><![CDATA[Finally, it&#8217;s the launching day!
Yes,  this theme is called &#8220;Transformation&#8221;. It&#8217;s my first theme and I&#8217;m really happy to be able to release it for public use.
This theme is the combination of several popular theme like problogger, copyblogger, John Chow, etc.
I combine their element together and BUZZ!&#8230; the theme&#8217;s born!  
I&#8217;m must admitted [...]]]></description>
			<content:encoded><![CDATA[<p><!--adsense--></p>
<p>Finally, it&#8217;s the launching day!</p>
<p>Yes,  this theme is called &#8220;Transformation&#8221;. It&#8217;s my first theme and I&#8217;m really happy to be able to release it for public use.</p>
<p>This theme is the combination of several popular theme like problogger, copyblogger, John Chow, etc.</p>
<p>I combine their element together and BUZZ!&#8230; the theme&#8217;s born! <img src='http://blogs.mysites-advisor.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>I&#8217;m must admitted that I have slacking from my posting schedule to develop this theme. I used up almost 10 days to settle things down.</p>
<p>I hope you will love this theme! <img src='http://blogs.mysites-advisor.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p><strong>Theme Overview:</strong></p>
<p><img src="http://blogs.mysites-advisor.com/wp-content/uploads/2007/10/overview-home.jpg" id="id" style="border-width: 0px" alt="overview-home" border="0" height="381" width="254" /></p>
<p><strong>Theme Information:</strong></p>
<p><strong>Theme: </strong>Transformation<br />
<strong>Author</strong>: Ken Xu<br />
<strong>Description:</strong> Widget Ready, Adsense Ready, SEO Ready theme. Compatible with Wordpress 2.3 and lower. Please uncomment the tag(); inside single.php to enable tagging on Wordpress 2.3<br />
License: GPL</p>
<p><strong>Required Plugins:</strong></p>
<ul>
<li> <a href="http://meidell.dk/threadedcomments/">Brian&#8217;s Threaded Comments 1.5.1.2 </a></li>
</ul>
<p><strong>Download Link:</strong></p>
<ul>
<li><strike>Transformation.zip</strike> (Reach the download limit - 100 downloads! Will be available soon! Fixing some bugs now. <img src='http://blogs.mysites-advisor.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> )</li>
</ul>
<p><strong>My Comment:</strong></p>
<p>This theme is &#8216;actually&#8217; Adsense ready. There is a special spot for the 250 x 250 ads format at the homepage. I have provide you the code and adsense template. You only need to do some small works to display the ads<strong> above the featured post</strong>.</p>
<blockquote><p>This spot is the best spot according to <strong>Joel Comm</strong>, the Adsense Doctor.</p></blockquote>
<p>The steps to display Adsense Ads on Homepage:</p>
<ol>
<li>Find the index.php file</li>
<li>Uncomment the code after &lt;div id=&#8221;midcontent&#8221;&gt; and save it</li>
<li>find adsense-home-template.php file</li>
<li>replace the &#8220;xxxxxxxxxxxxx&#8221; with your Adsense PUB id.</li>
<li>Done! <img src='http://blogs.mysites-advisor.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </li>
</ol>
<blockquote><p>For Adsense in single post view, I suggest you to use <a href="http://www.acmetech.com/blog/adsense-deluxe/">Adsense Deluxe</a> for a better control and display. Try to enclose it with &lt;div&gt; tag and the float and margin style to make a variation to your ads display.</p></blockquote>
<p>Transformation also is a premium sponsor ads ready theme. You can replace the image with an affiliate banners if you still don&#8217;t have any sponsored ads to display, though.</p>
<p>I&#8217;ve also provided MyBlogLog widget on the footer, all you need to do is to replace the &#8220;xxxxxxxxxxxxxxxx&#8221; into your MyBlogLog ID.</p>
<p>You will notice a blank Top, Recent, and Random post section in the left sidebar. I suggest you to use <a href="http://www.coffee2code.com/wp-plugins/">Customizable Comment Listings</a> (recommended by <a href="http://lorelle.wordpress.com/2007/02/14/customizable-post-listings-wordpress-plugin/">Lorelle</a>). It could bring you more exposure for your posts inside your archives and and unpopular posts. <img src='http://blogs.mysites-advisor.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><strong>Need Help:</strong></p>
<p>Since this is my first theme creation, I&#8217;m sure there is a bug that I haven&#8217;t found yet. I need your help to contact me if you found something&#8217;s wrong with the code.</p>
<p><strong>Disclosure Policy:</strong></p>
<p>Transformation Theme has a backlink to this blog at the footer section. Please consider leaving the link in tact to credit my hard work <img src='http://blogs.mysites-advisor.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Well, it&#8217;s up to you, anyway. Feel free to remove it. Just make sure you feel comfortable about it. <img src='http://blogs.mysites-advisor.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.mysites-advisor.com/2007/10/23/transformation-theme/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Life Updates</title>
		<link>http://blogs.mysites-advisor.com/2007/10/22/life-updates-2/</link>
		<comments>http://blogs.mysites-advisor.com/2007/10/22/life-updates-2/#comments</comments>
		<pubDate>Mon, 22 Oct 2007 01:12:33 +0000</pubDate>
		<dc:creator>Ken Xu</dc:creator>
		
		<category><![CDATA[Update News]]></category>

		<category><![CDATA[featured]]></category>

		<guid isPermaLink="false">http://blogs.mysites-advisor.com/index.php/2007/10/22/life-updates-2/</guid>
		<description><![CDATA[It&#8217;s been a week since my last post. I was working on my new theme for the launching on this Tuesday. I hope the theme will please you because it&#8217;s also Wordpress 2.3 compatible!   I&#8217;ve also upgraded my blog into the 2.3 version yesterday. Although I have found several nice features, I have [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s been a week since my last post. I was working on my new theme for the launching on this <strong>Tuesday</strong>. I hope the theme will please you because it&#8217;s also Wordpress 2.3 compatible! <img src='http://blogs.mysites-advisor.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  I&#8217;ve also upgraded my blog into the 2.3 version yesterday. Although I have found several nice features, I have also found some annoying problem related to database.  The problem that I have met up are as follow:</p>
<ul>
<li>After the upgrade process complete, the database table is error. I will need to point to this URL: <code>[yourURL]/wp-admin/upgrade.php</code> to fix the problem.</li>
<li>The first time trying to make a new post (this post, actually <img src='http://blogs.mysites-advisor.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> ) , And error occurred below the publish button. The culprit is Google Sitemap Plugin. Disable it and you will not facing any problem again. But you will need to find another plugin for sitemap.</li>
</ul>
<blockquote><p>I&#8217;m not using any sitemap generator right now, if you have any good recommendation, please comment below</p></blockquote>
<ul>
<li>The incoming link is using Google BlogSearch instead of Technorati. It&#8217;s quite annoying because we couldn&#8217;t see who actually linking to us. It&#8217;s better to change back to technorati.</li>
</ul>
<p>Steps to Replace the Google BlogSearch with Technorati Blog Reaction:</p>
<ul>
<li>Go to your server folder and find your wordpress installation folder.</li>
<li>Find and click the <strong>wp-admin</strong> folder.</li>
<li>You will see this file inside wp-admin folder: <strong>index-extra.php. </strong>Open it and you will get this line of code:</li>
</ul>
<blockquote><p><code>$rss_feed = apply_filters( ‘dashboard_incoming_links_feed’, ‘http://blogsearch.google.com/blogsearch_feeds?hl=en&amp;scoring=d&amp;ie=utf-8&amp;num=10&amp;output=rss&amp;partner=wordpress&amp;q=link:’ . trailingslashit( get_option(‘home’) ) ); </code></p></blockquote>
<blockquote><p><code> $more_link = apply_filters( ‘dashboard_incoming_links_link’, ‘http://blogsearch.google.com/blogsearch?hl=en&amp;scoring=d&amp;partner=wordpress&amp;q=link:’ . trailingslashit( get_option(‘home’) ) );</code></p></blockquote>
<ul>
<li>Change it with the following code and save it:</li>
</ul>
<blockquote><p><code>$rss_feed = apply_filters( 'dashboard_incoming_links_feed', 'http://feeds.technorati.com/cosmos/rss/?url=' . trailingslashit( get_option('home') ) );</code></p>
<p><code>$more_link = apply_filters( 'dashboard_incoming_links_link', 'http://www.technorati.com/search/' . trailingslashit( get_option('home') ) );</code></p></blockquote>
<p>Other than that problems, I&#8217;m really have nothing to complain anymore. <img src='http://blogs.mysites-advisor.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>I love the &#8216;advance toolbar&#8217; and the integrated tagging services. I&#8217;m also love the integrated plugin which could notify me on the newer plugin (plugin that I&#8217;m using at) is available for download.</p>
<p>I &#8216;m sure, with this new version and my new theme, I will do a lot more of pillar post to build my blog. Hope this post is useful for you who haven&#8217;t upgrade your wp. <img src='http://blogs.mysites-advisor.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.mysites-advisor.com/2007/10/22/life-updates-2/feed/</wfw:commentRss>
		</item>
		<item>
		<title>My First Theme is Up!</title>
		<link>http://blogs.mysites-advisor.com/2007/10/15/my-first-theme-is-up/</link>
		<comments>http://blogs.mysites-advisor.com/2007/10/15/my-first-theme-is-up/#comments</comments>
		<pubDate>Mon, 15 Oct 2007 11:45:03 +0000</pubDate>
		<dc:creator>Ken Xu</dc:creator>
		
		<category><![CDATA[Update News]]></category>

		<category><![CDATA[featured]]></category>

		<guid isPermaLink="false">http://blogs.mysites-advisor.com/index.php/2007/10/15/my-first-theme-is-up/</guid>
		<description><![CDATA[Horrey!!
Finally I&#8217;m able to make my own theme for my blog.  
It&#8217;s a 4 days hard works and the result is as you can see now. Although there are several bugs that I haven&#8217;t fixed, I could wait to see it up and running!  
This post is to test the featured post section [...]]]></description>
			<content:encoded><![CDATA[<p>Horrey!!</p>
<p>Finally I&#8217;m able to make my own theme for my blog. <img src='http://blogs.mysites-advisor.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>It&#8217;s a 4 days hard works and the result is as you can see now. Although there are several bugs that I haven&#8217;t fixed, I could wait to see it up and running! <img src='http://blogs.mysites-advisor.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
<p>This post is to test the featured post section as you can see in the left sidebar. There is so many feature that I still want to add but haven&#8217;t add it. Will do a little change again after a several days.</p>
<p>Please be kind and let me know if you&#8217;ve found buggies part of this theme. I will really appreciate your help! <img src='http://blogs.mysites-advisor.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>The full description &amp; launching with the downloadable theme files (yeah, if you like this theme, then you are lucky! <img src='http://blogs.mysites-advisor.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> ) , around this weekend. So, Please help me spotting some bugs which I cannot witness it myself with my eyes to faster the launching time.</p>
<p>Thanks for visiting. No special post for today. Will update you the process using the featured section.</p>
<p>See ya again!</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.mysites-advisor.com/2007/10/15/my-first-theme-is-up/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
