<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/rss2full.xsl" type="text/xsl" media="screen"?><?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/itemcontent.css" type="text/css" media="screen"?><rss 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:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>The Tao of Blogging to Wealth</title>
	
	<link>http://blogs.mysites-advisor.com</link>
	<description />
	<pubDate>Tue, 10 Jun 2008 06:00:10 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.2</generator>
	<language>en</language>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/mysites-blogs" type="application/rss+xml" /><feedburner:emailServiceId>819867</feedburner:emailServiceId><feedburner:feedburnerHostname>http://www.feedburner.com</feedburner:feedburnerHostname><item>
		<title>Time Based Advertising Tutorial</title>
		<link>http://feeds.feedburner.com/~r/mysites-blogs/~3/338096792/</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>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&amp;#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>

<p><a href="http://feeds.feedburner.com/~a/mysites-blogs?a=uj20h9"><img src="http://feeds.feedburner.com/~a/mysites-blogs?i=uj20h9" border="0"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/mysites-blogs?a=awpyyJ"><img src="http://feeds.feedburner.com/~f/mysites-blogs?i=awpyyJ" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/mysites-blogs?a=wSmiJJ"><img src="http://feeds.feedburner.com/~f/mysites-blogs?i=wSmiJJ" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/mysites-blogs?a=GUVCAj"><img src="http://feeds.feedburner.com/~f/mysites-blogs?i=GUVCAj" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/mysites-blogs?a=KcT3Aj"><img src="http://feeds.feedburner.com/~f/mysites-blogs?i=KcT3Aj" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/mysites-blogs?a=ArwDtj"><img src="http://feeds.feedburner.com/~f/mysites-blogs?i=ArwDtj" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/mysites-blogs/~4/338096792" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blogs.mysites-advisor.com/2008/06/10/time-based-advertising-tutorial/feed/</wfw:commentRss>
		<feedburner:origLink>http://blogs.mysites-advisor.com/2008/06/10/time-based-advertising-tutorial/</feedburner:origLink></item>
		<item>
		<title>Optimize your Ping List &amp; Get Indexed Fast!</title>
		<link>http://feeds.feedburner.com/~r/mysites-blogs/~3/338096793/</link>
		<comments>http://blogs.mysites-advisor.com/2008/06/03/ping-list-optimization-get-indexed-fast/#comments</comments>
		<pubDate>Tue, 03 Jun 2008 02:24:37 +0000</pubDate>
		<dc:creator>Ken Xu</dc:creator>
		
		<category><![CDATA[Technical Skills]]></category>

		<guid isPermaLink="false">http://blogs.mysites-advisor.com/?p=515</guid>
		<description>If you have played with wordpress and you will know about Ping List. Ping list is a list of server that use to notify search engine that our blog has a new post or edited entries.
I remembered I&amp;#8217;ve posted about ping list/update services in this blog. If you look into that post, you&amp;#8217;ll find a [...]</description>
			<content:encoded><![CDATA[<p>If you have played with wordpress and you will know about Ping List. Ping list is a list of server that use to notify search engine that our blog has a new post or edited entries.</p>
<p>I remembered I&#8217;ve posted about <a title="Ping List / Update Service" href="http://blogs.mysites-advisor.com/index.php/2007/07/20/post-update-services-for-wordpress/">ping list/update services</a> in this blog. If you look into that post, you&#8217;ll find a small list of update services that I took from several reliable sources in 2007. Since the internet grow fastly, that list is also growing and become more crowded now:</p>
<blockquote><p>http://1470.net/api/ping<br />
http://api.my.yahoo.com/rss/ping<br />
http://api.feedster.com/ping<br />
http://api.moreover.com/ping<br />
http://api.moreover.com/RPC2<br />
http://bblog.com/ping.php<br />
http://blogsearch.google.com/ping/RPC2<br />
http://blog.goo.ne.jp/XMLRPC<br />
http://blogmatcher.com/u.php<br />
http://blogdb.jp/xmlrpc/<br />
http://bulkfeeds.net/rpc<br />
http://coreblog.org/ping/<br />
http://ping.cocolog-nifty.com/xmlrpc<br />
http://ping.blo.gs/<br />
http://ping.weblogalot.com/rpc.php<br />
http://ping.bitacoras.com<br />
http://ping.feedburner.com<br />
http://ping.fakapster.com/rpc<br />
http://ping.weblogs.se/<br />
http://ping.syndic8.com/xmlrpc.php<br />
http://ping.myblog.jp<br />
http://ping.blogmura.jp/rpc/<br />
http://pingoat.com/goat/RPC2<br />
http://ping.bloggers.jp/rpc/<br />
http://pinger.blogflux.com/rpc<br />
http://rpc.icerocket.com:10080/<br />
http://rpc.blogrolling.com/pinger/<br />
http://rpc.tailrank.com/feedburner/RPC2<br />
http://rpc.pingomatic.com/<br />
http://rpc.weblogs.com/RPC2<br />
http://rpc.britblog.com<br />
http://rpc.technorati.com/rpc/ping<br />
http://rpc.wpkeys.com<br />
<span style="text-decoration: line-through;"> http://rpc.pingomatic.com</span> (double)<br />
http://topicexchange.com/RPC2<br />
http://trackback.bakeinu.jp/bakeping.php<br />
http://www.blogdigger.com/RPC2<br />
http://www.blogpeople.net/servlet/weblogUpdates<br />
http://www.bitacoles.net/ping.php<br />
http://www.blogoon.net/ping/<br />
http://xmlrpc.blogg.de<br />
http://xping.pubsub.com/ping</p></blockquote>
<p>See? It&#8217;s a whole new set of ping services that you can use to ping your blog. But what I&#8217;m going to tell you is not about how useful this ping service is. This service is actually &#8216;dangerous&#8217; if you don&#8217;t use it carefully.</p>
<p>How dangerous? Your blog could be banned. Yes, B-A-N-N-E-D!</p>
<p><a href="http://blogs.mysites-advisor.com/wp-content/uploads/2008/06/banned.jpg"><img class="alignnone size-full wp-image-518" title="banned" src="http://blogs.mysites-advisor.com/wp-content/uploads/2008/06/banned.jpg" alt="" width="430" height="191" /></a></p>
<p>One of my friend (who have a decent skills in SEO) advised me to take a special care on this subject. He saw through my bad habit in writing (lots of correction after publishing a post) and warn me to take off the ping list from update service option and ping manually using <a title="Pingomatic - pinging services" href="http://www.pingomatic.com">pingomatic</a> or use a <strong>plugin</strong> to solve this problem.</p>
<p>At first, I don&#8217;t see where is the problem located. But after he explain it to me, I finally realized how silly am I and how <strong>LUCKY</strong> I am! <img src='http://blogs.mysites-advisor.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> (Not being banned although I ping so many times!)</p>
<p>Editing a post after publishing will make the ping services to re-ping my blog to the exact big list of ping server which I&#8217;ve shown you above.</p>
<p>This trigger an &#8220;alert&#8221; at those ping server because of a ping spamming is most likely happening on my blog. I&#8217;m not sure how many times of pinging is indicated as spamming, but I&#8217;m sure that editing a post twice after you hit the publish button is extreme dangerous.</p>
<p>The easiest solution is to use plugin called <a href="http://ultimateplugins.com/smart-update-pinger/">Smart Update Pinger</a>. It has the capability to disable update service to ping your post when you edit published posts. Smart Update Pinger also ping your future / timestamped post, which the current Wordpress is not capable of doing so.</p>
<p>Although it&#8217;s dangerous, using this service properly can give you a good result. What good result? There is a possibility that your post is indexed within 7 minutes!</p>
<p>Want to know how? Check out what&#8217;s Robert Lang tips to <a title="Published in Google in Just 7 Minutes" href="http://chaseglobalmedia.com/blog/get-published-in-google-in-just-7-minutes/">Get Published in Google in 7 minutes</a>. Hope it&#8217;s useful for you.</p>
<p>Best luck for you! <img src='http://blogs.mysites-advisor.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /></p>

<p><a href="http://feeds.feedburner.com/~a/mysites-blogs?a=m7RyDJ"><img src="http://feeds.feedburner.com/~a/mysites-blogs?i=m7RyDJ" border="0"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/mysites-blogs?a=8HCHzJ"><img src="http://feeds.feedburner.com/~f/mysites-blogs?i=8HCHzJ" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/mysites-blogs?a=6P3bNJ"><img src="http://feeds.feedburner.com/~f/mysites-blogs?i=6P3bNJ" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/mysites-blogs?a=IHdRLj"><img src="http://feeds.feedburner.com/~f/mysites-blogs?i=IHdRLj" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/mysites-blogs?a=pnWLMj"><img src="http://feeds.feedburner.com/~f/mysites-blogs?i=pnWLMj" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/mysites-blogs?a=iblZOj"><img src="http://feeds.feedburner.com/~f/mysites-blogs?i=iblZOj" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/mysites-blogs/~4/338096793" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blogs.mysites-advisor.com/2008/06/03/ping-list-optimization-get-indexed-fast/feed/</wfw:commentRss>
		<feedburner:origLink>http://blogs.mysites-advisor.com/2008/06/03/ping-list-optimization-get-indexed-fast/</feedburner:origLink></item>
		<item>
		<title>New Direction for a Better Future</title>
		<link>http://feeds.feedburner.com/~r/mysites-blogs/~3/338096794/</link>
		<comments>http://blogs.mysites-advisor.com/2008/05/30/new-direction-for-a-better-future/#comments</comments>
		<pubDate>Fri, 30 May 2008 13:32:19 +0000</pubDate>
		<dc:creator>Ken Xu</dc:creator>
		
		<category><![CDATA[Update News]]></category>

		<guid isPermaLink="false">http://blogs.mysites-advisor.com/?p=513</guid>
		<description>I know I&amp;#8217;m slow at posting a new post after away from blogging. But that&amp;#8217;s not the only reason for after all. Honestly, I&amp;#8217;ve been trying to make an imagination for my blog. Especially for this blog which needs to be &amp;#8216;revived&amp;#8217; in any method.
I&amp;#8217;ve seen all of my stats and traffic drop significantly and [...]</description>
			<content:encoded><![CDATA[<p>I know I&#8217;m slow at posting a new post after away from blogging. But that&#8217;s not the only reason for after all. Honestly, I&#8217;ve been trying to make an imagination for my blog. Especially for this blog which needs to be &#8216;revived&#8217; in any method.</p>
<p>I&#8217;ve seen all of my stats and traffic drop significantly and I know I should do something to turn the table around and set a new direction for the better future of this blog.</p>
<p>Although a new theme is created for this blog, <em>IT</em> doesn&#8217;t bring more traffic. It&#8217;s only an eyes-candy and a visual attraction for increasing readiness of reading and understanding ( and&#8230; some targeted clicks on ads too. <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-514" title="future-new-direction" src="http://blogs.mysites-advisor.com/wp-content/uploads/2008/05/future-new-direction.jpg" alt="" width="430" height="145" /><br />
<span style="font-size: xx-small;"><em>Image Credit: <a href="http://flickr.com/photos/ktp/221839363/">Right Direction - KKTP</a></em></span></p>
<p>The future of this blog is going to be more on to technical matter. Just like what this blog meant to be long time ago. It&#8217;s My Sites Advisor, its goals is to sharing <strong>simple yet effective</strong> tips to build a better sites/blogs and not about how to make money with it bluntly.</p>
<p>Anything about making money tips and earning boosting matter I&#8217;ll hand it over to those A-list bloggers like Darren (problogger.net), John (johnchow.com), Cow, Conn(Garry Conn) and many other great MMO niche bloggers.</p>
<p>I&#8217;ll retreat from there and cover only the technical matter and better marketing tips to increase traffic and visit to your blog (you who read this blog). Not about how to monetize the traffic anymore. <img src='http://blogs.mysites-advisor.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>It&#8217;s a hard decision for me and I took months of time to decide this new direction. I think I must do what I like and where I have skill instead of following the crowd to blindly blog on something that I need to learn from zero.</p>
<p>Well, let&#8217;s see what I will presented for you in the upcoming days. I&#8217;ve numerous blogs that I blogged at now, so it&#8217;s depend on the sum of free time to update this blog. I will update this blog as I found new idea or new technical tips for blog building. But don&#8217;t worry, I will update regularly now and forward. Blogging is so much fun and I can&#8217;t live without it anyway&#8230;</p>
<p>So why should I quit?! <img src='http://blogs.mysites-advisor.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>P.S.<br />
Sorry for you guys who have a chance to chat with me lately. I&#8217;m in a desperate condition and said something wrong and want to quit blogging. No, I won&#8217;t quit although the sky fall down on my head! <img src='http://blogs.mysites-advisor.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>

<p><a href="http://feeds.feedburner.com/~a/mysites-blogs?a=tneN5p"><img src="http://feeds.feedburner.com/~a/mysites-blogs?i=tneN5p" border="0"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/mysites-blogs?a=y88bAJ"><img src="http://feeds.feedburner.com/~f/mysites-blogs?i=y88bAJ" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/mysites-blogs?a=5ArZsJ"><img src="http://feeds.feedburner.com/~f/mysites-blogs?i=5ArZsJ" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/mysites-blogs?a=QMQcej"><img src="http://feeds.feedburner.com/~f/mysites-blogs?i=QMQcej" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/mysites-blogs?a=HWbzyj"><img src="http://feeds.feedburner.com/~f/mysites-blogs?i=HWbzyj" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/mysites-blogs?a=q5uKmj"><img src="http://feeds.feedburner.com/~f/mysites-blogs?i=q5uKmj" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/mysites-blogs/~4/338096794" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blogs.mysites-advisor.com/2008/05/30/new-direction-for-a-better-future/feed/</wfw:commentRss>
		<feedburner:origLink>http://blogs.mysites-advisor.com/2008/05/30/new-direction-for-a-better-future/</feedburner:origLink></item>
		<item>
		<title>Back to Blogging with New Theme</title>
		<link>http://feeds.feedburner.com/~r/mysites-blogs/~3/338096795/</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>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>

<p><a href="http://feeds.feedburner.com/~a/mysites-blogs?a=WDiu0z"><img src="http://feeds.feedburner.com/~a/mysites-blogs?i=WDiu0z" border="0"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/mysites-blogs?a=vgVc6J"><img src="http://feeds.feedburner.com/~f/mysites-blogs?i=vgVc6J" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/mysites-blogs?a=ay4H4J"><img src="http://feeds.feedburner.com/~f/mysites-blogs?i=ay4H4J" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/mysites-blogs?a=3hcZqj"><img src="http://feeds.feedburner.com/~f/mysites-blogs?i=3hcZqj" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/mysites-blogs?a=DtzL6j"><img src="http://feeds.feedburner.com/~f/mysites-blogs?i=DtzL6j" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/mysites-blogs?a=NLqc0j"><img src="http://feeds.feedburner.com/~f/mysites-blogs?i=NLqc0j" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/mysites-blogs/~4/338096795" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blogs.mysites-advisor.com/2008/05/26/back-to-blogging-with-new-theme/feed/</wfw:commentRss>
		<feedburner:origLink>http://blogs.mysites-advisor.com/2008/05/26/back-to-blogging-with-new-theme/</feedburner:origLink></item>
		<item>
		<title>Schedule Posts - Good or Bad?</title>
		<link>http://feeds.feedburner.com/~r/mysites-blogs/~3/338096796/</link>
		<comments>http://blogs.mysites-advisor.com/2007/11/30/schedule-posts-good-or-bad/#comments</comments>
		<pubDate>Fri, 30 Nov 2007 15:01:36 +0000</pubDate>
		<dc:creator>Ken Xu</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://blogs.mysites-advisor.com/index.php/2007/11/30/schedule-posts-good-or-bad/</guid>
		<description>I&amp;#8217;ve been wondering about scheduled posting issues since I was in my project a week ago. I wonder how about if I scheduled up everything and set things automatically? I only need to worry building up communication channel just like what the expert suggesting. Will it effect anything?
I guess many blogger have use this feature [...]</description>
			<content:encoded><![CDATA[<p>I&#8217;ve been wondering about scheduled posting issues since I was in my project a week ago. I wonder how about if I scheduled up everything and set things automatically? I only need to worry building up communication channel just like what the expert suggesting. Will it effect anything?</p>
<p>I guess many blogger have use this feature to the fullest. For example, John Chow or may be one of my buddy, <a href="http://www.nirmaltv.com">Nirmal</a>.</p>
<p>He scheduled up everything before he went to his sweetest memory of his life (wedding) and I saw his blog still moving properly although he didn&#8217;t take any serious part in the discussion of each blog for 1 month! <img src='http://blogs.mysites-advisor.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Actually I want to do some testing to see what is the result. I am going to use up all my weekend (Saturday) to write 6 pillar posts for next week and I will focus on bringing in more traffic on the next Monday thru Saturday.</p>
<p>I will have the answer next Sunday. If it prove to be able to increase a my stats, I write about my progress into one report/post that you can use to help yourself too. <img src='http://blogs.mysites-advisor.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>See ya again!</p>

<p><a href="http://feeds.feedburner.com/~a/mysites-blogs?a=soos4p"><img src="http://feeds.feedburner.com/~a/mysites-blogs?i=soos4p" border="0"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/mysites-blogs?a=xEGsZJ"><img src="http://feeds.feedburner.com/~f/mysites-blogs?i=xEGsZJ" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/mysites-blogs?a=2rlF6J"><img src="http://feeds.feedburner.com/~f/mysites-blogs?i=2rlF6J" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/mysites-blogs?a=nK1stj"><img src="http://feeds.feedburner.com/~f/mysites-blogs?i=nK1stj" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/mysites-blogs?a=n5fsVj"><img src="http://feeds.feedburner.com/~f/mysites-blogs?i=n5fsVj" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/mysites-blogs?a=bBOnKj"><img src="http://feeds.feedburner.com/~f/mysites-blogs?i=bBOnKj" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/mysites-blogs/~4/338096796" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blogs.mysites-advisor.com/2007/11/30/schedule-posts-good-or-bad/feed/</wfw:commentRss>
		<feedburner:origLink>http://blogs.mysites-advisor.com/2007/11/30/schedule-posts-good-or-bad/</feedburner:origLink></item>
		<item>
		<title>Blogging on Blogging - Hardcore Road to Success</title>
		<link>http://feeds.feedburner.com/~r/mysites-blogs/~3/338096797/</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>&lt;img src="http://blogs.mysites-advisor.com/wp-content/uploads/2007/11/crowded.thumbnail.jpg" /&gt;

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>

<p><a href="http://feeds.feedburner.com/~a/mysites-blogs?a=yDSVa4"><img src="http://feeds.feedburner.com/~a/mysites-blogs?i=yDSVa4" border="0"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/mysites-blogs?a=TeqxXJ"><img src="http://feeds.feedburner.com/~f/mysites-blogs?i=TeqxXJ" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/mysites-blogs?a=WHjR8J"><img src="http://feeds.feedburner.com/~f/mysites-blogs?i=WHjR8J" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/mysites-blogs?a=D2n9mj"><img src="http://feeds.feedburner.com/~f/mysites-blogs?i=D2n9mj" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/mysites-blogs?a=tvkXxj"><img src="http://feeds.feedburner.com/~f/mysites-blogs?i=tvkXxj" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/mysites-blogs?a=TNqhfj"><img src="http://feeds.feedburner.com/~f/mysites-blogs?i=TNqhfj" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/mysites-blogs/~4/338096797" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blogs.mysites-advisor.com/2007/11/29/blogging-on-blogging-hardcore-road-to-success/feed/</wfw:commentRss>
		<feedburner:origLink>http://blogs.mysites-advisor.com/2007/11/29/blogging-on-blogging-hardcore-road-to-success/</feedburner:origLink></item>
		<item>
		<title>Which Web Traffic Source Are You Driving At Now?</title>
		<link>http://feeds.feedburner.com/~r/mysites-blogs/~3/338096798/</link>
		<comments>http://blogs.mysites-advisor.com/2007/11/27/which-web-traffic-source-you-driving-at-now/#comments</comments>
		<pubDate>Tue, 27 Nov 2007 14:49:42 +0000</pubDate>
		<dc:creator>Ken Xu</dc:creator>
		
		<category><![CDATA[Blogging]]></category>

		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://blogs.mysites-advisor.com/index.php/2007/11/27/which-web-traffic-source-you-driving-at-now/</guid>
		<description>A friend&amp;#8217;s situation inspire me to write this post with Traffic as the main topic. As you should hear from any other expert of blog marketing or internet marketer, web traffic is the most crucial things that decide our win or lose in online world.
It&amp;#8217;s not limited to blog, actually. Everybody who step their foot [...]</description>
			<content:encoded><![CDATA[<p>A friend&#8217;s situation inspire me to write this post with Traffic as the main topic. As you should hear from any other expert of blog marketing or internet marketer, web traffic is the most crucial things that decide our win or lose in online world.</p>
<p>It&#8217;s not limited to blog, actually. Everybody who step their foot on the web will seek for traffic to empower their businesses.<br />
There are more than 7 positive web traffic sources (proved) that you can drive to your blog. Begin from:</p>
<ol>
<li>Search Engine</li>
<li>In-Links</li>
<li>Niche Forum</li>
<li>Ezine Directories</li>
<li>Squidoo</li>
<li>Blog Comments on Niche Blog</li>
<li>StumbleUpon</li>
</ol>
<p>To drive a search engine traffic, of course you will need to learn the skill to SEO (Search Engine Optimization) your blog. This is probably the most well-known strategy to drive more traffic to your blog since the early launched of Search Engine.</p>
<p>You could learn more about SEO by surfing for content about it <a href="http://www.google.co.id/search?hl=id&amp;client=firefox-a&amp;rls=org.mozilla%3Aen-US%3Aofficial&amp;hs=mmL&amp;q=free+SEO+Tips&amp;btnG=Telusuri&amp;meta=">out there</a> or buy <a href="http://www.seobook.com/2286-0-1-13.html">SEOBook</a> (aff) as your guidance to SEO. SEOBook is a comprehensive book on SEO that teach you from the very basic skills to expert tips to play around your  which is authored by a well known expert in SEO industry.</p>
<p><strong>In-links, Niche Forum, Ezine Directories, Squidoo and Blog Comments</strong> are traffic that you must seek diligently. You won&#8217;t get any link-in if your write a bunch of BS posts and writing <strong>at</strong> your reader, not <strong>to</strong> your reader.</p>
<p>In niche forum, you will need to <strong>contribute</strong> a lot to make yourself visible. And you will need to write a catchy signature file at your bottom of your messages to generate more click-through.</p>
<p><strong>Ezine Directories</strong> and <strong>Squidoo</strong> are actually similar. I post regularly on Ezine Directories and Squidoo to sell my affiliate stuffs. The result is amazing. I&#8217;ve reach my $15 a day with them. Of course, all my recommendation is what I&#8217;ve tried. Not an empty babbles to scam peoples.</p>
<p>The last one is my favorite one. <strong>Stumbleupon </strong>has become my greatest tool to rise my visibility since long time ago. Although there are lots of Social Media out there like Digg.com, Sphinn.com, etc. StumbleUpon still excellent in many area.</p>
<p>As your information only. From all of the seven sources, my biggest stream of web traffic is #4 and #7. From them alone have generate me 80% of my income thorough the month.</p>
<p>Although recently I&#8217;ve seen some some nice increasing in my organic search result, it still cannot match with the traffic they drove to my blog. So, what traffic are you driving at now? What is the best for you? Tell us in your comment!</p>

<p><a href="http://feeds.feedburner.com/~a/mysites-blogs?a=K2TsYH"><img src="http://feeds.feedburner.com/~a/mysites-blogs?i=K2TsYH" border="0"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/mysites-blogs?a=fTdRtJ"><img src="http://feeds.feedburner.com/~f/mysites-blogs?i=fTdRtJ" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/mysites-blogs?a=EQKtbJ"><img src="http://feeds.feedburner.com/~f/mysites-blogs?i=EQKtbJ" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/mysites-blogs?a=6Q2iuj"><img src="http://feeds.feedburner.com/~f/mysites-blogs?i=6Q2iuj" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/mysites-blogs?a=m70Bkj"><img src="http://feeds.feedburner.com/~f/mysites-blogs?i=m70Bkj" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/mysites-blogs?a=sv6kvj"><img src="http://feeds.feedburner.com/~f/mysites-blogs?i=sv6kvj" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/mysites-blogs/~4/338096798" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blogs.mysites-advisor.com/2007/11/27/which-web-traffic-source-you-driving-at-now/feed/</wfw:commentRss>
		<feedburner:origLink>http://blogs.mysites-advisor.com/2007/11/27/which-web-traffic-source-you-driving-at-now/</feedburner:origLink></item>
		<item>
		<title>Back from Hell to Find My Heaven</title>
		<link>http://feeds.feedburner.com/~r/mysites-blogs/~3/338096799/</link>
		<comments>http://blogs.mysites-advisor.com/2007/11/26/back-from-hell-to-find-my-heaven/#comments</comments>
		<pubDate>Mon, 26 Nov 2007 14:17:45 +0000</pubDate>
		<dc:creator>Ken Xu</dc:creator>
		
		<category><![CDATA[Update News]]></category>

		<guid isPermaLink="false">http://blogs.mysites-advisor.com/index.php/2007/11/26/back-from-hell-to-find-my-heaven/</guid>
		<description>It&amp;#8217;s a great opportunity for me to be able to come back and blogging again. It&amp;#8217;s been around 10 days since my last post, and I haven&amp;#8217;t a single article since 15th October 2007.
Ok, I know I need to give a sufficient explanation on why I suddenly disappear from the blogosphere surface for 10 days [...]</description>
			<content:encoded><![CDATA[<p><img src="http://blogs.mysites-advisor.com/wp-content/uploads/2007/11/backfromhell.jpg" align="right" hspace="10" />It&#8217;s a great opportunity for me to be able to come back and blogging again. It&#8217;s been around 10 days since my last post, and I haven&#8217;t a single article since 15th October 2007.</p>
<p>Ok, I know I need to give a sufficient explanation on why I suddenly disappear from the blogosphere surface for 10 days without any voice at all. The main reason was about my primary job.</p>
<p>I got a killing project that I have to devoted all my time to serves it well. I&#8217;ve been working like a killing machine actually. It&#8217;s not a project that I could enjoy a bit. Well, It&#8217;s a 2 weeks project and my responsibility on that project is going to end tomorrow, anyway. As I got some spare time today, I&#8217;m going to use as effective as I can to where my passion is. <img src='http://blogs.mysites-advisor.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>But before anything, I really need to say &#8220;THANK YOU!&#8221; to some of my loyal friends who still keep supporting me when I&#8217;m not around. It&#8217;s the greatest gift I&#8217;ve ever get in this blogging world. I realize that blogging friends it&#8217;s so caring and some with a very warm-hearted friends keep sending me email to ask my whereabout :).</p>
<p>Some of them that I couldn&#8217;t bear to not mentioning them here are YC from <a href="http://www.internetmarketingmind.com">InternetMarketingMind.com</a> and Pearl from <a href="http://fresh-perspectives.net">FreshPerspectives.net</a>. May be they&#8217;re not realizing how much support they have gave to me, but one thing that I can make sure is that they have put me in a condition that I&#8217;m not &#8220;forgotten&#8221; as I&#8217;m not posting for more than 10 days.</p>
<p>I believe every blogger will scare for this scenario, where they are forgotten as they are not posting regularly. I&#8217;m thinking it as a grace from God to reward me at what I&#8217;ve done for my audience since the last 7 months. I&#8217;m feeling really good as if I have a sufficient energy to blog thru the next 365 days! <img src='http://blogs.mysites-advisor.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
<p>Well, I know this post has no benefit at all for you. And may be your will unsubscribe from my feed or immediately delete me from your bookmark. But I have a request for you. Please don&#8217;t leave me yet. Why? Because you will be missing out some great content in the upcoming days. I promise you that you will feel the benefit of staying up with me a little longer.</p>
<p>If for the next 3 days I couldn&#8217;t make a great contents to tickles your creative brain, feel free to leave me without second thought! <img src='http://blogs.mysites-advisor.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Oke, with this post I was re-surface again and will back to my regular posting frequency. Once again, I deeply apologize for what I&#8217;ve done (dissappear like ninja!) and thank you so much for everyone who have support me directly or indirectly.</p>
<p>See ya again on the next post.</p>

<p><a href="http://feeds.feedburner.com/~a/mysites-blogs?a=Ww1SST"><img src="http://feeds.feedburner.com/~a/mysites-blogs?i=Ww1SST" border="0"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/mysites-blogs?a=WJ8ecJ"><img src="http://feeds.feedburner.com/~f/mysites-blogs?i=WJ8ecJ" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/mysites-blogs?a=YpIF5J"><img src="http://feeds.feedburner.com/~f/mysites-blogs?i=YpIF5J" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/mysites-blogs?a=r5g2lj"><img src="http://feeds.feedburner.com/~f/mysites-blogs?i=r5g2lj" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/mysites-blogs?a=ulazYj"><img src="http://feeds.feedburner.com/~f/mysites-blogs?i=ulazYj" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/mysites-blogs?a=t8lnqj"><img src="http://feeds.feedburner.com/~f/mysites-blogs?i=t8lnqj" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/mysites-blogs/~4/338096799" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blogs.mysites-advisor.com/2007/11/26/back-from-hell-to-find-my-heaven/feed/</wfw:commentRss>
		<feedburner:origLink>http://blogs.mysites-advisor.com/2007/11/26/back-from-hell-to-find-my-heaven/</feedburner:origLink></item>
		<item>
		<title>Obesity Cause - Is Blogging One of Them?</title>
		<link>http://feeds.feedburner.com/~r/mysites-blogs/~3/338096800/</link>
		<comments>http://blogs.mysites-advisor.com/2007/11/15/obesity-cause-is-blogging-one-of-them/#comments</comments>
		<pubDate>Thu, 15 Nov 2007 14:57:10 +0000</pubDate>
		<dc:creator>Ken Xu</dc:creator>
		
		<category><![CDATA[General]]></category>

		<category><![CDATA[Personal Growth]]></category>

		<guid isPermaLink="false">http://blogs.mysites-advisor.com/index.php/2007/11/15/obesity-cause-is-blogging-one-of-them/</guid>
		<description>You know, it&amp;#8217;s pretty interesting to see how we develop our body. I found myself become more bloated then before because of blogging.
I found an interesting post about this topic at moneymakingscoop. He asked whether online business make you fat or not.
Of course, my answer is yes, absolutely.  
I have grown my &amp;#8216;fatness&amp;#8217; around [...]</description>
			<content:encoded><![CDATA[<p><a href="http://blogs.mysites-advisor.com/wp-content/uploads/2007/11/fat.jpg"><img src="http://blogs.mysites-advisor.com/wp-content/uploads/2007/11/fat-thumb.jpg" style="border: 0px none " alt="fat" border="0" height="196" width="376" /></a></p>
<p>You know, it&#8217;s pretty interesting to see how we develop our body. I found myself become more bloated then before because of blogging.</p>
<p>I found an interesting post about this topic at <a href="http://www.moneymakingscoop.com/blog/352/has-working-online-made-you-fat/">moneymakingscoop</a>. He asked whether online business make you fat or not.</p>
<p>Of course, my answer is yes, absolutely. <img src='http://blogs.mysites-advisor.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>I have grown my &#8216;fatness&#8217; around 10 more pounds lately. It&#8217;s a shame, but can&#8217;t do anything about it because I&#8217;ve full-packed my schedules with several hair pulling jobs and only have around 15 minutes a day to do exercises.</p>
<p>heck, I choose to do Simple Yoga which couldn&#8217;t burn enough fat in my stomach fat bank!</p>
<p>The result is clear, I gain more fat and I will become a sumo-fighter if I continue to let it for 10 more months!</p>
<p>I guess it&#8217;s not about the blogging that make me fat. But it&#8217;s myself that cause the fatness on my body. Well, we&#8217;d like to &#8216;always sitting&#8217; in front of PC or Laptop and keep clicking and pouncing keyboards to fill our blog.</p>
<p>We sometimes are too lazy to stand up and do some small stretching before going on a long hours of typing.</p>
<p>There are several part of our body that will bloat as we blog to much. The most visible area is our stomach. I hate it, but really can&#8217;t do a thing and continue witnessing the grow of fat in that area.</p>
<p>That&#8217;s the area that never get a sufficient exercise. Of course, from all of our body, the most slim part is your blogging fingers! <img src='http://blogs.mysites-advisor.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Working on pouncing everyday, every week, every month. I&#8217;m kind of pity of them sometimes. <img src='http://blogs.mysites-advisor.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Well, I need help actually. If you know some tips to remove fat (in a natural way), please kindly email me your tips. <img src='http://blogs.mysites-advisor.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Fatness is not good for our health. Especially for our blood vessels. The more fat you are, the higher the possibility for you to get stroke or other hard to cure diseases.</p>
<p>Please make sure don&#8217;t learn my steps. It&#8217;s a failure progress that I want to eliminate, including the fat. Make sure to exercise properly, and take an extra care of your stomach and fingers.</p>
<p>My private doctor ask me to take care 3 part that may get a serious syndrome because of too much blogging (sitting and typing for a long time):</p>
<ol>
<li>Eyes</li>
<li>Hand</li>
<li>Backbone</li>
</ol>
<p>You eyes will be infected by the light or contrast level of your monitor. Change are, you will get a disease called &#8216;Floater&#8217;. Floater is a disease that every times you look at a bright area, there is a little thread-like or black dots floating around your eyes corner.</p>
<p>It&#8217;s not fun and sometimes the floaters are really annoying (I got this disease too actually&#8230;). But it&#8217;s no harm. Just don&#8217;t overuse your eyes to avoid the infection to be worsen.</p>
<p>Hand and backbone are the part that supporting you when blogging. Hand playing on the keyboard while backbone keep supporting your body to sit firmly on your chair.</p>
<p>If you force them to maintain and keep working for a long time, change are your will feel hurt around your shoulder, wrist, etc.</p>
<p>My advise it not to sit for more than 2 hours and should take a rest about half hour before continue your works. Of course, I will take my own advises and will see the result in the upcoming month. <img src='http://blogs.mysites-advisor.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>My friend told me about &#8220;Health is one of your wealth&#8221; and I&#8217;m totally agree with him. It&#8217;s the most valuable opinion that I&#8217;ve ever heard since the last 7 months of my blogging journey.</p>
<p>Health is everything and it&#8217;s part of your wealth. If you are chasing for the true wealth on your life, never miss the health as one of your wealth that you must have too!</p>
<p>Cheers!</p>

<p><a href="http://feeds.feedburner.com/~a/mysites-blogs?a=yoRM6u"><img src="http://feeds.feedburner.com/~a/mysites-blogs?i=yoRM6u" border="0"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/mysites-blogs?a=QnDikJ"><img src="http://feeds.feedburner.com/~f/mysites-blogs?i=QnDikJ" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/mysites-blogs?a=wYCI1J"><img src="http://feeds.feedburner.com/~f/mysites-blogs?i=wYCI1J" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/mysites-blogs?a=qouLLj"><img src="http://feeds.feedburner.com/~f/mysites-blogs?i=qouLLj" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/mysites-blogs?a=Subuhj"><img src="http://feeds.feedburner.com/~f/mysites-blogs?i=Subuhj" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/mysites-blogs?a=GFLn0j"><img src="http://feeds.feedburner.com/~f/mysites-blogs?i=GFLn0j" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/mysites-blogs/~4/338096800" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blogs.mysites-advisor.com/2007/11/15/obesity-cause-is-blogging-one-of-them/feed/</wfw:commentRss>
		<feedburner:origLink>http://blogs.mysites-advisor.com/2007/11/15/obesity-cause-is-blogging-one-of-them/</feedburner:origLink></item>
		<item>
		<title>Effective Tips to Handle Internet Connection Down</title>
		<link>http://feeds.feedburner.com/~r/mysites-blogs/~3/338096804/</link>
		<comments>http://blogs.mysites-advisor.com/2007/11/12/effective-tips-to-handle-internet-connection-down/#comments</comments>
		<pubDate>Mon, 12 Nov 2007 14:54:32 +0000</pubDate>
		<dc:creator>Ken Xu</dc:creator>
		
		<category><![CDATA[Blogging]]></category>

		<guid isPermaLink="false">http://blogs.mysites-advisor.com/index.php/2007/11/12/internet-connection-down-effective-tips-to-handle-it/</guid>
		<description>Have you ever facing this problem before in your area? Well, I faced it the last 3 days and I even can&amp;#8217;t check my mail and read any news.
It&amp;#8217;s absolutely like the online world is collapsed! No Google, no Blog, no browsing, no chatting, no, no and no online activities. It break my working pattern [...]</description>
			<content:encoded><![CDATA[<p><!--adsense--></p>
<p>Have you ever facing this problem before in your area? Well, I faced it the last 3 days and I even can&#8217;t check my mail and read any news.</p>
<p>It&#8217;s absolutely like the online world is collapsed! No Google, no Blog, no browsing, no chatting, no, no and no online activities. It <img src="http://blogs.mysites-advisor.com/wp-content/uploads/2007/11/lady-crying-for-computer.gif" align="left" />break my working pattern into piece. It&#8217;s so stressing at first. But if you can shift your attention to other things, the situation may become beneficial.</p>
<p>I succeed to shift my thinking into something more useful than keep opening the &#8220;Server Not Found&#8221; Page on my FireFox.</p>
<p>I tried to do the following things and it proved to give me more meaningful knowledge and valuable information:</p>
<p><strong>1. I read my e-books collection</strong></p>
<p>You may be never realize it and never care about it when you activities is filled with blogging and communication channel building. You will find your hard drive full-packed with e-books from several Internet gurus and experts that you don&#8217;t even have time to read although you have downloaded it.</p>
<p>I was so surprised when I open my e-book folder. There are bunch of nice e-books that I forget to read! I happened to download and bought a lot of Internet marketing books in the last 2 weeks and I haven&#8217;t read it yet!</p>
<p>Re-visit your own e-books folder will bring you lots of fresh idea for your blog.</p>
<p><strong>2. I arranged my stuffs - Give me more Fresh view of my desk</strong></p>
<p>You may realize that your surrounding have been like a rat nest if you are a messy worker like me. One thing that I never realized it the post-it notes that sticks on my LCD screen. It&#8217;s has become a post-it notes jungle!</p>
<p>I forgot to remove notes and just keep stickin&#8217; all the weeks. There is also a pile of print out papers containing lessons from several gurus. And again, I never read it! Just a glimpses and I threw it away to the corner. Bad habit.</p>
<p>I start arranging from my upper desk to my inner desk (Ouch, the dust is so thick! I could imagine that I actually using the desk! <img src='http://blogs.mysites-advisor.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> ). Cleaning here and cleaning there. Finally everything is settled!</p>
<p>The desk is look fresher now. It actually stimulation my brain and I feel I have a brand new story to share on my blog! <img src='http://blogs.mysites-advisor.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><strong>3. I optimized my PC - Fasten the working time</strong></p>
<p>The longer you use your PC, the slower it will be. Especially if you use that PC for multiple uses. Like Multimedia, Gaming, Design, Blogging, Surfing and Downloading.</p>
<p>I used several program to do the task automatically, but my favorite is <a href="http://esd.element5.com/product.html?productid=300136251&amp;backlink=http%3A%2F%2Fblogs.mysites-advisor.com%2F&amp;affiliateid=200055557">Tune-Up Utilities</a>(aff). Yup, you must buy it. But you can try the free trial version before buying.</p>
<p>With the PC free of trouble, I can blog my day with less headache. Never looked down on computer problem if you have some. Get it fix by software or by your trusted technician ASAP.</p>
<p>4. Is there a point 4? Nope! <img src='http://blogs.mysites-advisor.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>I use my 3 days time effectively to improve the other side of blogging to support the blogging itself.</p>
<p>Well, it&#8217;s my own activities that I transform it into a tips. I hope it could help you shift your bad day into a meaningful day. <img src='http://blogs.mysites-advisor.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>How about you? Do you have any good tips to spend in the connection down moment?</p>

<p><a href="http://feeds.feedburner.com/~a/mysites-blogs?a=QJXGnM"><img src="http://feeds.feedburner.com/~a/mysites-blogs?i=QJXGnM" border="0"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/mysites-blogs?a=odDBBJ"><img src="http://feeds.feedburner.com/~f/mysites-blogs?i=odDBBJ" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/mysites-blogs?a=PmgtWJ"><img src="http://feeds.feedburner.com/~f/mysites-blogs?i=PmgtWJ" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/mysites-blogs?a=7xYXRj"><img src="http://feeds.feedburner.com/~f/mysites-blogs?i=7xYXRj" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/mysites-blogs?a=Ui4HBj"><img src="http://feeds.feedburner.com/~f/mysites-blogs?i=Ui4HBj" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/mysites-blogs?a=KBMhSj"><img src="http://feeds.feedburner.com/~f/mysites-blogs?i=KBMhSj" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/mysites-blogs/~4/338096804" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blogs.mysites-advisor.com/2007/11/12/effective-tips-to-handle-internet-connection-down/feed/</wfw:commentRss>
		<feedburner:origLink>http://blogs.mysites-advisor.com/2007/11/12/effective-tips-to-handle-internet-connection-down/</feedburner:origLink></item>
	</channel>
</rss>
