<?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; Technical Skills</title>
	<atom:link href="http://blogs.mysites-advisor.com/category/technical-skills/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>Optimize your Ping List &#038; Get Indexed Fast!</title>
		<link>http://blogs.mysites-advisor.com/2008/06/03/ping-list-optimization-get-indexed-fast/</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><![CDATA[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&#8217;ve posted about ping list/update services in this blog. If you look into that post, you&#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>
]]></content:encoded>
			<wfw:commentRss>http://blogs.mysites-advisor.com/2008/06/03/ping-list-optimization-get-indexed-fast/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Alert - Changing Theme could Effect Your Search Ranking!</title>
		<link>http://blogs.mysites-advisor.com/2007/11/07/alert-changing-theme-could-effect-your-search-ranking/</link>
		<comments>http://blogs.mysites-advisor.com/2007/11/07/alert-changing-theme-could-effect-your-search-ranking/#comments</comments>
		<pubDate>Wed, 07 Nov 2007 14:15:06 +0000</pubDate>
		<dc:creator>Ken Xu</dc:creator>
		
		<category><![CDATA[Technical Skills]]></category>

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

		<guid isPermaLink="false">http://blogs.mysites-advisor.com/index.php/2007/11/07/alert-changing-theme-could-effect-your-search-ranking/</guid>
		<description><![CDATA[<img src="http://blogs.mysites-advisor.com/wp-content/uploads/2007/11/ranking-dropped-thumb.jpg" style="border-width: 0px; margin: 0px 10px 0px 0px" alt="ranking-dropped" align="left" border="0" height="100" width="138" />
A study from www.free-seo-news.com said that switching theme too often will effect on your search engine ranking and will drop your ranking gradually. Is it true?]]></description>
			<content:encoded><![CDATA[<p><!--adsense--></p>
<p>Everybody know that Wordpress is a great blog platform. Beside having its own extend pages to add more plugins to your blog, It also have its own free theme directory.</p>
<p>Because it&#8217;s so easy, you tend to switch plugin and theme regularly. Well, it&#8217;s nothing wrong anyway in changing plugin. But it&#8217;s a critical problem if you switch your theme too often.</p>
<p>I recently stumbled on a post about <a href="http://www.free-seo-news.com/newsletter289.htm#facts">reasons that make your search engine ranking dropped</a>.</p>
<p>The first reason is about the <strong>changes of your blog</strong> (theme and permalinks) could effect on your search engine position.</p>
<p>It said that on every time you change your blog theme, search engines will re-calculate your placement on their SERP. Which mean, your current position on the keyword that you usually get inside the top 10 search results will drop, or even disappear from the result.</p>
<p><img src="http://blogs.mysites-advisor.com/wp-content/uploads/2007/11/ranking-dropped-thumb.jpg" style="border-width: 0px; margin: 0px 10px 0px 0px" alt="ranking-dropped" align="left" border="0" height="116" width="154" />I&#8217;ve seen a lot of my blogger friends switching their theme often. Some even switch theme for more than 3 times in the first 3 months.</p>
<p>I don&#8217;t know how is the effect for them, but I felt it myself that my search engine ranking is dropping since I switch to this new theme.</p>
<p>But it&#8217;s not for long. Around 1-2 weeks, I started to see some better search term and result since the PR update a week ago. For example:</p>
<ul>
<li>I was in the 2nd and 3rd of &#8220;<a href="http://www.google.com/search?q=Transformation%20theme&amp;sourceid=navclient-ff&amp;ie=UTF-8&amp;rlz=1B2DVFC_enPH227PH228">Transformation theme</a>&#8221; keyword from 2.000.000 sites.</li>
<li><strike>I was in the top of &#8220;<a href="http://www.google.co.nz/search?q=wordpress%20different%20sidebar&amp;hl=en&amp;start=10&amp;sa=N">wordpress different sidebar</a>&#8221; keyword from 1.000.000 sites.</strike> Disappear!</li>
<li>No.12 out of 13.400.000 sites with the keyword - <a href="http://www.google.com/search?q=10+questions+1+million+dollars&amp;hl=en&amp;start=10&amp;sa=N">10 questions 1 million dollars</a></li>
</ul>
<p>Yup, it&#8217;s amazing stats for me! <img src='http://blogs.mysites-advisor.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>But some keyword seems not related to my post at all. It&#8217;s a funny how Google decide the relevancy of its search result.</p>
<p>I&#8217;m not sure how the Search Engine look at my blog, may be it&#8217;s the inbound links that I received that decide everything.</p>
<p>Well, that&#8217;s not the focus that you should seek. Instead, I think we must focus on using a permanent theme for more a long term (like 6 month or more) to avoid re-calculation of your blog.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.mysites-advisor.com/2007/11/07/alert-changing-theme-could-effect-your-search-ranking/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to Setup Advance Reading Options with Script.Aculo.Us</title>
		<link>http://blogs.mysites-advisor.com/2007/10/25/how-to-setup-advance-reading-options-with-scriptaculous/</link>
		<comments>http://blogs.mysites-advisor.com/2007/10/25/how-to-setup-advance-reading-options-with-scriptaculous/#comments</comments>
		<pubDate>Thu, 25 Oct 2007 01:26:06 +0000</pubDate>
		<dc:creator>Ken Xu</dc:creator>
		
		<category><![CDATA[Blogging]]></category>

		<category><![CDATA[Technical Skills]]></category>

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

		<guid isPermaLink="false">http://blogs.mysites-advisor.com/index.php/2007/10/25/how-to-setup-advance-reading-options-with-scriptaculous/</guid>
		<description><![CDATA[<img src="http://blogs.mysites-advisor.com/wp-content/uploads/2007/10/reading-book.thumbnail.jpg" align="left" height="91" hspace="10" width="80" />

If you have download my latest Wordpress theme, you may notice that there is a little different from the orginal. There are some features that I eliminated to decrease file size.

One of the feature that is not available on the theme is my invention of "Advance Reading Options" section. Want to know how to setup this feature for your blog? Check this post out!]]></description>
			<content:encoded><![CDATA[<p><!--adsense--></p>
<p>If you have download my latest Wordpress theme, you may notice that there is  a little different from the orginal. There are some features that I eliminated to decrease  file size.</p>
<p>One of the feature that is not available on the theme is my invention of  &#8220;<strong>A</strong>dvance <strong>R</strong>eading <strong>O</strong>ptions&#8221; section.</p>
<p>It&#8217;s my new method to increase my blog pageview and conversion rate for my  older posts. Inside of ARO, you would get the following list of Posts:</p>
<ul>
<li>Related Posts</li>
<li>Top Posts</li>
<li>Recent Posts</li>
<li>Random Posts</li>
</ul>
<p>It&#8217;s pretty useful when peoples arrive at my blog via search engine. When the  finish reading the current posts, they will be offered automatically a lists of  related posts to read more.</p>
<blockquote><p>Actually, the arrangement of ARO (where Related posts at the front and Random  posts at the end) is using the psychologic call to make reader taking their  actions. <img src='http://blogs.mysites-advisor.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p></blockquote>
<p>ARO is using a AJAX animation called <a href="http://script.aculo.us/">Script.aculo.us</a>. Visit the link to get some  point about what it is.</p>
<p>To setup ARO for your blog, no matter what your theme is, you can use the  following 1-2-3 steps to apply ARO:</p>
<ol>
<li>First of all, visit <a href="http://script.aculo.us/">Script.aculo.us</a> and  download the latest version of the Js script.</li>
<li>Extract it the follow files into one folder labeled &#8216;js&#8217; (or  &#8216;javascripts&#8217;):
<ol>
<li>prototype.js</li>
<li>scriptaculous.js</li>
<li>builder.js</li>
<li>effects.js</li>
<li>dragdrop.js</li>
<li>slider.js</li>
<li>controls.js</li>
</ol>
</li>
<li>Upload the folder &#8216;js&#8217; to your <strong>current theme folder</strong> in your  web server (if you are using <a href="http://blogs.mysites-advisor.com/index.php/2007/10/23/transformation-theme/">Transformation</a>,  upload inside the transformation folder)</li>
<li>Add the following code to your header.php file:

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
</pre></td><td class="code"><pre class="java"><span style="color: #339933;">&lt;</span>script src<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;&lt;?php bloginfo('template_url'); ?&gt;/js/prototype.js&quot;</span> type<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;text/javascript&quot;</span><span style="color: #339933;">&gt;&lt;/</span>script<span style="color: #339933;">&gt;</span> 
<span style="color: #339933;">&lt;</span>script src<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;&lt;?php bloginfo('template_url'); ?&gt;/js/scriptaculous.js&quot;</span> type<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;text/javascript&quot;</span><span style="color: #339933;">&gt;&lt;/</span>script<span style="color: #339933;">&gt;</span></pre></td></tr></table></div>

<p><script src="http://blogs.mysites-advisor.com/wp-admin/%3C?php%20bloginfo%28%5C%27template_url%5C%27%29;%20?%3E/js/scriptaculous.js" type="text/javascript"></script></pre>
</li>
<li>Update the file.</li>
</ol>
<p>Now, you&#8217;ve activated the script function to allow AJAX animation. You will  not see any change, yet. The next step is to create the following element for  your page:</p>
<ul>
<li>Set a section of your page that you want to animate</li>
<li>2 button - Hide and Show button</li>
</ul>
<p>There are a lot of transition effect and animation available for you to use  via Script.aculo.us. Primarily, I use these following effects only:</p>
<ul>
<li><strong>BlindUp</strong> - Effect to hide the chosen section</li>
<li><strong>BlindDown </strong>- Effect to drop down a section of  animation</li>
</ul>
<p>Use this following code as your template and change the content to suit your  blog CSS:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
</pre></td><td class="code"><pre>&lt;h2&gt;&lt;strong&gt;Advance Reading Option&lt;/strong&gt;&lt;/h2&gt;
&lt;h3&gt;&lt;a onclick=&quot;Effect.BlindDown('advance')<SEMI>&quot; style=&quot;cursor: pointer&quot;&gt;&lt;strong&gt;[show]&lt;/strong&gt;&lt;/a&gt;&lt;/h3&gt;
&lt;!-- begin - animation section --&gt; 
    &lt;div id=&quot;advance&quot; style=&quot;display:none<SEMI>&quot;&gt; 
       &lt;h2&gt;Related Posts&lt;/h2&gt; 
            &lt;ul&gt; 
                &lt;!--Related post script goes here--&gt; 
            &lt;/ul&gt; 
        &lt;h2&gt;Top Posts&lt;/h2&gt; 
            &lt;ul&gt; 
                &lt;!--Top Posts script goes here--&gt; 
            &lt;/ul&gt; 
        &lt;h2&gt;Random Posts&lt;/h2&gt; 
            &lt;ul&gt; 
                &lt;!--Random posts script goes here--&gt; 
            &lt;/ul&gt; 
    &lt;/div&gt;
&nbsp;
&lt;!-- end - animation section --&gt;
&nbsp;
&lt;h3&gt;&lt;a onclick=&quot;Effect.BlindUp('advance')<SEMI>&quot; style=&quot;cursor: pointer&quot;&gt;&lt;strong&gt;[hide]&lt;/strong&gt;&lt;/a&gt;&lt;/h3&gt;</pre></td></tr></table></div>

<p>Update your page and try it with your favorite browser. It should be  compatible with most of the nowadays browser.</p>
<p>The animation comes hidden by default. There are an arguments around the web  about the laziness of reader will result in no clickthrough if I hide the  list at first and ask them to click to open.</p>
<p>So, if you choose to show everything at first, remove the <code>style="display:none;"</code> inside the div tag.</p>
<blockquote><p>You may also want to switch the location of Hide and Show button, too. It&#8217;s  weird to place the show button up front when all content is shown at first!  <img src='http://blogs.mysites-advisor.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p></blockquote>
<p>You could change the content to almost any kind of online content that you  could imagine.</p>
<p>It&#8217;s depend on you now. <img src='http://blogs.mysites-advisor.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><em>Fine this post useful? Consider </em><a href="http://feeds.feedburner.com/Mysites-Blogs"><em>Subscribing to the  feed</em></a><em> to receive daily updates.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.mysites-advisor.com/2007/10/25/how-to-setup-advance-reading-options-with-scriptaculous/feed/</wfw:commentRss>
		</item>
		<item>
		<title>10 Days Experiences in the World of Code</title>
		<link>http://blogs.mysites-advisor.com/2007/10/24/10-days-experiences-in-the-world-of-code/</link>
		<comments>http://blogs.mysites-advisor.com/2007/10/24/10-days-experiences-in-the-world-of-code/#comments</comments>
		<pubDate>Wed, 24 Oct 2007 00:28:15 +0000</pubDate>
		<dc:creator>Ken Xu</dc:creator>
		
		<category><![CDATA[Technical Skills]]></category>

		<guid isPermaLink="false">http://blogs.mysites-advisor.com/index.php/2007/10/24/10-days-experiences-in-the-world-of-code/</guid>
		<description><![CDATA[I&#8217;ve been released from the Jungle of Code yesterday. Although I&#8217;m still making some finishing code for my own blog, I could really feel that I&#8217;m free from them now!  
Actually, coding is fun. But if I do it for a long time, I will feel dizzy looking at them.
I spent almost 10 days [...]]]></description>
			<content:encoded><![CDATA[<p><!--adsense--></p>
<p>I&#8217;ve been released from the Jungle of Code yesterday. Although I&#8217;m still making some finishing code for my own blog, I could really feel that I&#8217;m free from them now! <img src='http://blogs.mysites-advisor.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Actually, coding is fun. But if I do it for a long time, I will feel dizzy looking at them.</p>
<p>I spent almost 10 days creating, adjusting and modifying the CSS and XHTML codes like a nuts. Well, since I&#8217;m an amateur coder and designer, I work slower then anybody else.</p>
<p>Here is my Working Hierarchy when creating Transformation Theme:<img src="http://blogs.mysites-advisor.com/wp-content/uploads/2007/10/code-jungle.jpg" alt="code jungle" align="right" hspace="10" /></p>
<ul>
<li>Day 1: Researching for tutorials suitable theme layout</li>
<li>Day 2: Creating basic layout and choosing suitable colors</li>
<li>Day 3: Blending Wordpress template code together with the design</li>
<li>Day 4 - 6: Coding CSS</li>
<li>Day 7 - 8: Adding whistles &amp; bells</li>
<li>Day 9: Performing beta testing</li>
<li>Day 10: Bugs hunting &amp; fixing</li>
</ul>
<p>Well, apart of my full time job, I only have around 5 hours left for blogging. I use all of them for developing the <a href="http://blogs.mysites-advisor.com/index.php/2007/10/23/transformation-theme/">Transformation theme</a>.</p>
<p>I used up to 10 days or 50 hours to develop that theme. I think if you are a professional Wordpress theme designer, you could&#8217;ve done all above tasks in a matter of 20-30 hours only! <img src='http://blogs.mysites-advisor.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>I am an amateur, and that my record. I wouldn&#8217;t want to develop another theme anymore for certain of time. The reason is pretty common: <strong>My Blog Stats is Dropping Seriously!</strong></p>
<p>Really, from the daily 400 - 500 visitors into 100 - 200 visitors is not what I&#8217;m searching for. But I&#8217;m quite happy to witness on my feed subscribers count is not dropping at all. It&#8217;s increasing significantly although I&#8217;m not posting regularly for the last 10 days.</p>
<p>Thanks for your support, readers. You are my biggest source of motivation! <img src='http://blogs.mysites-advisor.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p>I&#8217;m really motivated within the passed 10 days. I used up all my motivation to learn more on how to improve design and optimization. I&#8217;ve learned about how to tweaks my theme in a better ways and optimize it for the engine with a better methods.</p>
<p>It&#8217;s fun. But, I have one warning for you. If your target is to earn serious money with your blog, you <strong>should never</strong> meddle with designing and tweaking too much.</p>
<p>To tell you the truth, designing a theme is solely for building incoming links from the user. I cannot find more benefits for it if you design and let people download it for free.</p>
<p>Except your design is for sell like <a href="http://www.uniqueblogdesigns.com/">UniqueBlogDesigns</a> or <a href="http://www.revolutiontheme.com/">RevolutionTheme</a>, you could get a nice income online if your design is love by the mass.</p>
<p>But always remember that selling theme files is like selling a code. It&#8217;s high risk or error and you need to provide an extra service if your user is going through a hard time with your code, which mean extra time is needed to help your user. <img src='http://blogs.mysites-advisor.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>The hardest part for me is the CSS + PHP coding. It&#8217;s hell lot more harder then coding a HTML page. I code them based on a CSS + PHP for dummies book, just like <a href="http://www.amazon.com/gp/product/B000UO4F9I?ie=UTF8&amp;tag=compuhardwadv-20&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=B000UO4F9I">Evan Almighty</a> building an Ark using God&#8217;s Dummies Guide! <img src='http://blogs.mysites-advisor.com/wp-includes/images/smilies/icon_lol.gif' alt=':lol:' class='wp-smiley' /> </p>
<p>Ok, Joke aside. Building a theme is sure not a hard task if you know what is the important element. I made a lucky search with Google and arrive at Small&#8217;s Potato (wpdesigner.com) Blog.</p>
<p>He have a series of guide that is pretty good to help me begin my  design project. Since he is a pro wordpress theme designer, I&#8217;d learned a lot of tips and tricks within his theme files.</p>
<p>I think it&#8217;s time to make a conclusion. I suggest you to avoid making your own theme if you don&#8217;t have much time like me. <img src='http://blogs.mysites-advisor.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>It&#8217;s simply time eater. Better spend your time in building your blog posts and relationship with other. Leave the design matter for your designer. With a little pay out of hundred dollars could save lot of time for you to do a better project.</p>
<p>More projects on this blog in the future. But I promise no more &#8216;time hungry&#8217; project that force me to sacrifice my posting schedule anymore. <img src='http://blogs.mysites-advisor.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>I think it&#8217;s time to say goodbye and thanks for reading this post.</p>
<p>Feel free to download my <a href="http://blogs.mysites-advisor.com/index.php/2007/10/23/transformation-theme/">Transformation theme</a> and make sure to leave a comment to let me know your thought about it.</p>
<p>Consider <a href="http://feeds.feedburner.com/Mysites-Blogs">Subscribe to the feed</a> to receive daily update. Thanks.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.mysites-advisor.com/2007/10/24/10-days-experiences-in-the-world-of-code/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Different Sidebar in Single Post</title>
		<link>http://blogs.mysites-advisor.com/2007/10/04/different-sidebar-in-single-post/</link>
		<comments>http://blogs.mysites-advisor.com/2007/10/04/different-sidebar-in-single-post/#comments</comments>
		<pubDate>Thu, 04 Oct 2007 23:44:29 +0000</pubDate>
		<dc:creator>Ken Xu</dc:creator>
		
		<category><![CDATA[Blogging]]></category>

		<category><![CDATA[Technical Skills]]></category>

		<guid isPermaLink="false">http://blogs.mysites-advisor.com/index.php/2007/10/05/different-sidebar-in-single-post/</guid>
		<description><![CDATA[It&#8217;s pretty easy to enhance your sidebar to appear differently on the homepage and single post. A different sidebar in single post is useful when you want to switch what reader see in homepage (a widget may be) into an ads to monetize your blog.
The steps are simple and I will share you the tutorial [...]]]></description>
			<content:encoded><![CDATA[<p><!--adsense--></p>
<p>It&#8217;s pretty easy to enhance your sidebar to appear differently on the homepage and single post. A different sidebar in single post is useful when you want to switch what reader see in homepage (a widget may be) into an ads to monetize your blog.</p>
<p>The steps are simple and I will share you the tutorial in a 1-2-3 steps. <img src='http://blogs.mysites-advisor.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>To make this tutorial simple, I will use my current theme that I&#8217;m using now to make the modification (<a href="http://www.easywordpress.com/go.php?offer=kennarco&amp;pid=9">Super Adsense Theme</a> by <a href="http://www.gobalakrishnan.com">Gobala Krishnan</a>)</p>
<p>Starting from Preparation:</p>
<ul>
<li><img src="http://blogs.mysites-advisor.com/wp-content/uploads/2007/10/sidebar-files.gif" title="sidebar-files" alt="sidebar-files" align="right" border="0" height="241" width="184" /> Open up your FTP Client Application and Login to your Web Server.</li>
<li>Point to your Wordpress Theme Folder to download the following files:
<ul>
<li><strong>single post</strong></li>
<li><strong>Sidebar</strong></li>
<li><strong>l_sidebar </strong>(there are 2 files, l_sidebar and r_sidebar. It&#8217;s up to you to choose which one you are going to modify)<br />
(located in: <em>wp-content/themes/[theme_file_name]/</em>)</li>
</ul>
</li>
<li>After downloading, save it in a folder and name it properly to avoid confusion. <strong>Create a back-up files</strong> if you don&#8217;t want to mess things up. Now you will edit everything <strong>offline</strong>.</li>
</ul>
<p>Start Editing the Single Post File:</p>
<ul>
<li>In the folder window, start by right clicking on the <strong>single post</strong> file (single.php) and select [open with...]. Choose Wordpad or Notepad to edit the file.</li>
<li>Scroll through the end of the code, you will see a line of code like this:<br />
<blockquote><p><code>&lt;/div&gt;<br />
&lt;?php get_sidebar(); ?&gt;<br />
&lt;?php get_foote(); ?&gt;</code></p></blockquote>
</li>
<li>Make a change to the code to:<br />
<blockquote><p><code>&lt;/div&gt;<br />
&lt;?php includ 'singlesidebar.php'; ?&gt;<br />
&lt;?php get_footer(); ?&gt;</code></p></blockquote>
</li>
<li>Save as <strong>single.php</strong> (no file name change because you are going to overwrite the existing file in your server) and close it.</li>
</ul>
<p>Editing the Sidebar File:</p>
<ul>
<li>Right Clicking on the Sidebar file (sidebar.php) and open it with your favorite text editor.</li>
<li>You will see the following code:<br />
<blockquote><p><code>&lt;div id="sidebar"&gt;<br />
&lt;?php include (TEMPLATEPATH . '/<font color="red">l_sidebar.php</font>&#8216;); ?&gt;<br />
&lt;?php include (TEMPLATEPATH . &#8216;/r_sidebar.php&#8217;); ?&gt;<br />
&lt;/div&gt;</code></p></blockquote>
</li>
<li>Change the code into the following code:<br />
<blockquote><p><code>&lt;div id="sidebar"&gt;<br />
&lt;?php include (TEMPLATEPATH . '/<font color="red">single_l_sidebar.php</font>&#8216;); ?&gt;<br />
&lt;?php include (TEMPLATEPATH . &#8216;/r_sidebar.php&#8217;); ?&gt;<br />
&lt;/div&gt;</code></p></blockquote>
</li>
<li>Save as <strong>singlesidebar.php </strong>and close it.</li>
</ul>
<p>Editing the last file -<strong> l_sidebar.php</strong>:</p>
<ul>
<li>Right Clicking on the file l_sidebar.php inside the folder and open it again with your favorite text editor.</li>
<li>You will see the code of the current display of the sidebar in superadsense theme. Change it to something you like, add and remove as you wish. It&#8217;s your sidebar for your single post view, so please consider well what you want to put and remove. <img src='http://blogs.mysites-advisor.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </li>
<li>Finally, Save the file as <strong>single_l_sidebar.php</strong> and close all the windows (except your FTP client window).</li>
</ul>
<p><strong>Uploading steps:</strong></p>
<ul>
<li>Go to your FTP Application. Re-open if you have close it.</li>
<li>Point to the folder that containing the modified .php files:
<ol>
<li><strong>single.php</strong></li>
<li><strong>singlesidebar.php</strong></li>
<li><strong>single_l_sidebar.php</strong></li>
</ol>
</li>
<li>Upload 3 of them to your web server in this location:
<ul>
<li><em>wp-content/themes/[theme_file_name]/</em></li>
</ul>
</li>
<li>overwrite the single.php file</li>
<li>Well Done! <img src='http://blogs.mysites-advisor.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </li>
</ul>
<p>Yup, now you will have a different sidebar in your single post view. Have Fun!</p>
<p><font color="#ff4848"><strong>Attention:</strong></font> <em>You many not be able to use this tips if you are a <strong>sidebar_widget</strong> user. It may crash because the sidebar is different now.</em></p>
<p><em><strong>Update:<br />
</strong></em><em>One every Thursday, you will enjoy several tips and tricks to increase your techie side in blogging. Get prepare to code some page and learn some design skills to improve your blog &#8220;looks and feels&#8221;.</em></p>
<p><em>Consider to <a href="http://feeds.feedburner.com/mysites-blogs">subscribe to the feed</a> or <a href="http://www.feedburner.com/fb/a/emailverifySubmit?feedId=819867&amp;loc=en_US">via email</a> to receive update, tips and tricks to make sure you don&#8217;t miss one. <img src='http://blogs.mysites-advisor.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </em></p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.mysites-advisor.com/2007/10/04/different-sidebar-in-single-post/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Make Reader to Stay Longer on Your Blog</title>
		<link>http://blogs.mysites-advisor.com/2007/09/25/make-reader-to-stay-longer-on-your-blog/</link>
		<comments>http://blogs.mysites-advisor.com/2007/09/25/make-reader-to-stay-longer-on-your-blog/#comments</comments>
		<pubDate>Tue, 25 Sep 2007 10:07:43 +0000</pubDate>
		<dc:creator>Ken Xu</dc:creator>
		
		<category><![CDATA[Blogging]]></category>

		<category><![CDATA[Technical Skills]]></category>

		<guid isPermaLink="false">http://blogs.mysites-advisor.com/index.php/2007/09/25/make-reader-to-stay-longer-on-your-blog/</guid>
		<description><![CDATA[Let reader staying longer at our blog is the wish that every webmaster and  blogger had in their mind. Staying longer also have the meaning that the reader love your blog.  They will forget the time when reading your interesting posts or influenced by your  style of presentation.
How to know about how [...]]]></description>
			<content:encoded><![CDATA[<p><!--adsense--></p>
<p>Let reader staying longer at our blog is the wish that every webmaster and  blogger had in their mind. Staying longer also have the meaning that the reader love your blog.  They will forget the time when reading your interesting posts or influenced by your  style of presentation.</p>
<p>How to know about how long your reader stay at your blog instead of a 10  seconds visitor?</p>
<p>I guess we can use Google Analytics to research this data. Google analytics  have the &#8220;bounce rate&#8221; analysis, which is very important to explain how &#8217;sticky&#8217; your post is. The lower the percentage, the longer your reader spend their time on your  blog.</p>
<p>See the stats below:</p>
<p><img src="http://blogs.mysites-advisor.com/wp-content/uploads/2007/09/bounce-rate.gif" alt="bounce-rate.gif" /></p>
<p>I got 56.83% bounce rate according to Google Analytics. Comparing to my past  statistic, my effort to let reader stay longer on my blog is increased by  15.57% from last month. See this picture:</p>
<p><img src="http://blogs.mysites-advisor.com/wp-content/uploads/2007/09/bounce-rate-past.gif" alt="bounce-rate-past.gif" /></p>
<p>How do I do that?</p>
<p>Well, actually I found an advise from Small Potato at WpDesigner.com in <a href="http://www.wpdesigner.com/2007/09/15/wwmd-reduce-bounce-rate/">this post  about reducing bounce rate of your blog</a>.</p>
<p>That post is my biggest inspiration to let people stay longer at my blog. You  should check it out too! <img src='http://blogs.mysites-advisor.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Another option is to use &#8220;<a href="http://www.w-a-s-a-b-i.com/archives/2006/02/02/wordpress-related-entries-20/">Related  Posts</a>&#8221; and &#8220;<a href="http://weblogtoolscollection.com/">Where did they go  from here</a>&#8221; plugin to seize reader attention after they have reach the end of  your post. Increasing <strong>pageview</strong> and decreasing <strong>bounce  rate</strong> is not a matter that could be happen overnight. You will need to  have a sum of time to tune your upcoming post to get the maximum result.</p>
<p>Of course, the ultimate secret is just like what small potato said in his  post:</p>
<blockquote><p>&#8220;<strong>The main factor is targeted traffic</strong>. If you’re not getting  targeted traffic then <strong>people are leaving your blog because it isn’t  relevant</strong> to what they’ve searched for.&#8221;</p></blockquote>
<p>Untargeted traffic will become the 10 seconds visitors. They come and go like  wind&#8217;s blowing. Oh, It&#8217;s just so frustrating~! <img src='http://blogs.mysites-advisor.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>But don&#8217;t blame them. They are just an information seeker. It&#8217;s about how  focus or presentation is. As long as you focus enough on each of your post, I  can make sure you could increase your post &#8220;stickiness&#8221; to higher level than  before. <img src='http://blogs.mysites-advisor.com/wp-includes/images/smilies/icon_wink.gif' alt=':wink:' class='wp-smiley' /> </p>
<p><strong>The benefits of Low Bounce Rate</strong></p>
<ul>
<li>More Impression or pageview</li>
<li>More Subscription to feed or e-mail</li>
<li>Checking the your endorsement</li>
<li>Click on the ads or affiliate links</li>
<li>etc.</li>
</ul>
<p>So, what are you waiting for? Optimize your current blog and follow small potato&#8217;s advises. I believe if you do it right, you will have the same leap ahead and become a &#8216;glue&#8217; for your reader! <img src="http://blogs.mysites-advisor.com/wp-includes/images/smilies/icon_wink.gif" onclick="grin(':wink:');" alt=":wink:" /></p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.mysites-advisor.com/2007/09/25/make-reader-to-stay-longer-on-your-blog/feed/</wfw:commentRss>
		</item>
		<item>
		<title>What To Do When You Have Nothing To Do</title>
		<link>http://blogs.mysites-advisor.com/2007/09/18/what-to-do-when-you-have-nothing-to-do/</link>
		<comments>http://blogs.mysites-advisor.com/2007/09/18/what-to-do-when-you-have-nothing-to-do/#comments</comments>
		<pubDate>Tue, 18 Sep 2007 00:06:11 +0000</pubDate>
		<dc:creator>Ken Xu</dc:creator>
		
		<category><![CDATA[Blogging]]></category>

		<category><![CDATA[Technical Skills]]></category>

		<guid isPermaLink="false">http://blogs.mysites-advisor.com/index.php/2007/09/18/what-to-do-when-you-have-nothing-to-do/</guid>
		<description><![CDATA[This is the most dangerous moment every time you have nothing to post about.  We will tempt to staying &#8216;lazy&#8217; and create a lot of excuses to not doing any  activities to strengthen our blog visibility.
In the past time, I&#8217;d usually think like this: &#8220;Oh, I have nothing to post  today. I [...]]]></description>
			<content:encoded><![CDATA[<p><!--adsense--></p>
<p>This is the most dangerous moment every time you have nothing to post about.  We will tempt to staying &#8216;lazy&#8217; and create a lot of excuses to not doing any  activities to strengthen our blog visibility.</p>
<p>In the past time, I&#8217;d usually think like this: &#8220;Oh, I have nothing to post  today. I think I should let my last (yesterday) post up for one day and I will  not do new post for today.&#8221;</p>
<p>Sounds logic for me the time. But soon I find out that this habit is totally  wrong! If you share the same thought as mine, then may be this post would help  you solve your lazy bone problem and increase our blog visibility in the  blogosphere.</p>
<p>When I &#8220;really&#8221; have nothing to post about, I will evoke my FireFox and start  wondering around the web to:</p>
<h4>Comment Marketing</h4>
<p>This is very-very comment things to do when you have nothing to do. <img src='http://blogs.mysites-advisor.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>I usually wondering around the Blogs of my interesting and Blogs whose topic  is the same as mine. Making a comment is the simplest marketing action for  blogging. What important is this marketing is actually WORK!</p>
<p>You just need some regular schedule to comment at blogs of your choice and  the minor traffic will flow in to your blog. If you are lucky, you may find a  good idea to post about in the same day! <img src='http://blogs.mysites-advisor.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<h4>Tweak Your Blog</h4>
<p>This is the most interesting part. I love to tweak my blog and do some change  here and there. If you have a basic skills in HTML, CSS and Photoshop, you will  addicted to his activities.</p>
<p>But don&#8217;t addicted to it. Tweaking blog, especially the appearance (theme) is  a never-ending process. Don&#8217;t waste too much of your time on this activities as  Design is only about the first appearance.</p>
<p>Tweaking a blog is just about to find a new environment for your inspiration.  We tend to have a new fresh idea when looking at a new appearance of our  blog.</p>
<blockquote><p>I will change this blog appearance next month, 9th September. Hope to bring  more luck and pillar posts to this post! <img src='http://blogs.mysites-advisor.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p></blockquote>
<h4>Stumbling and Digging and Sphinning</h4>
<p>Stumble and digg is my favorite visit when I have nothing to do. From Last  week until today, I have stumbled and digg many posts. But not limited to  stumbling and digging. I&#8217;m also Sphinning around. You know <a href="http://andybeard.eu/2007/07/sphinn-sem-attention-wars.html">Sphinn</a>  right? It&#8217;s another BETA version of popular social media site specially made of   SEO &amp; SEM blogger.</p>
<blockquote><p>You will find that I&#8217;m supporting both Stumble and Sphinn below every post of  this blog. <img src='http://blogs.mysites-advisor.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p></blockquote>
<p>I spend almost 2 hours every times I enter to these site. Fortunately, this  activities give me a bunch of benefits. For example:</p>
<ul>
<li>You could make more friends across the niche</li>
<li>You could find a never-ending list of ideas for my upcoming post</li>
<li>You could make a record and ready to go to the top Stumbling and Sphinning  Freaks! <img src='http://blogs.mysites-advisor.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </li>
<li>You could enjoy the addicting of wasting time in social media site!  <img src='http://blogs.mysites-advisor.com/wp-includes/images/smilies/icon_lol.gif' alt=':lol:' class='wp-smiley' /> </li>
<li>You could help blogger boosting their stats</li>
<li>Many more</li>
</ul>
<h4>Googling your blog and yourself!</h4>
<p>This is the most enjoying activity. lol.</p>
<p>I usually will Google my Blog URL and my own name to see something  interesting. Well, the main purpose is to find out if our blog get banned or  not. Just to make sure that my blog name and my own name is not dislike by  google because of my SEO efforts. <img src='http://blogs.mysites-advisor.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<h4>Adding Pillar Post to a Carnival</h4>
<p>After published a pillar post for a several days, I will submit it to a blog  carnival to share my post to the world. Well, even though you have create the  best ever article in the planet, if nobody see and read your post, it&#8217;s  useless!</p>
<p>One of many ways to promote your article is to submit your blog post to a carnival to receive some minor traffic and  inbound-link to strengthen Technorati rank. Although nothing as good as a  stumble effect, carnival is better in link-popularity building then a traffic  booster.</p>
<p>You will find no serious traffic flow in to your blog. So, don&#8217;t hope to see  some some in your google analytics stats! <img src='http://blogs.mysites-advisor.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
<p>Oh well, there is so many things to do actually! Make sure don&#8217;t lazy around and create excuses to not doing anything and laying on the bed. Kick your engine start and begin to do some beneficial action for your blog.</p>
<p>Make a post every single day. promote it. Boost it. and buzz it! <img src="http://blogs.mysites-advisor.com/wp-includes/images/smilies/icon_wink.gif" onclick="grin(':wink:');" alt=":wink:" /></p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.mysites-advisor.com/2007/09/18/what-to-do-when-you-have-nothing-to-do/feed/</wfw:commentRss>
		</item>
		<item>
		<title>8 Essential Tips to write a Powerful Headline</title>
		<link>http://blogs.mysites-advisor.com/2007/09/17/8-essential-tips-to-write-a-powerful-headline/</link>
		<comments>http://blogs.mysites-advisor.com/2007/09/17/8-essential-tips-to-write-a-powerful-headline/#comments</comments>
		<pubDate>Mon, 17 Sep 2007 00:44:13 +0000</pubDate>
		<dc:creator>Ken Xu</dc:creator>
		
		<category><![CDATA[Blogging]]></category>

		<category><![CDATA[Technical Skills]]></category>

		<guid isPermaLink="false">http://blogs.mysites-advisor.com/index.php/2007/09/17/8-essential-tips-to-write-a-powerful-headline/</guid>
		<description><![CDATA[Headline have become the most important element in blogging since the birth  of it and until the die of blogging trend. Whether it&#8217;s about SEO or  eyes-puller, Headline decide the live and dead of a post in your blog.
I can tell that 90% of blog reader is a good skimmer. They love to [...]]]></description>
			<content:encoded><![CDATA[<p><!--adsense--></p>
<p>Headline have become the most important element in blogging since the birth  of it and until the die of blogging trend. Whether it&#8217;s about SEO or  eyes-puller, Headline decide the live and dead of a post in your blog.</p>
<p>I can tell that 90% of blog reader is a good skimmer. They love to skim  through a content and only will stop and reading carefully when they meet with a  promising contents.</p>
<p>Headline is one of the part that will interest reader before they touch the  skin of the content. It&#8217;s important to make sure your headline consist of  influential words to encourage your niche reader to read the rest of your copy.</p>
<p>To create an influential and powerful headline to pull attention, below tips  need to be taken seriously:</p>
<p><span id="more-408"></span><br />
<strong>1. Know your reader&#8217;s interest before tempering your  headline</strong></p>
<p>This is the most important things to do before you land your finger on your  keyboard. You will need to know your audience interest before anything.</p>
<p>Find out the personas and write them clearly and stick to your monitor with a  sticky note.</p>
<blockquote><p>We write blog posts for three audience:</p>
<ol>
<li>Reader</li>
<li>Search Engine</li>
<li>Yourself!</li>
</ol>
</blockquote>
<blockquote><p>Write for reader to make sure your blog post is readable and interesting.  Write for SE to make sure your post will score high in the result page. Finally,  we write the post for ourselves! If we are not writing for ourselves too, you  will not enjoy the writing progress. <img src='http://blogs.mysites-advisor.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p></blockquote>
<p><strong>2. Your headline must highlight the WHOLE idea in the  post</strong></p>
<p>Don&#8217;t waste your reader time to guess what is your content telling about. The  will likely to hit the back button and went back to the Search Engine (if they  found you via Search Engine) or back to the site that refer to your blog.</p>
<p>Try to use the template that I provided below (end of post) to make your own  copy of Powerful headline.</p>
<p><strong>3. Use Powerful Words</strong></p>
<p>Never underestimate the power of a words. Use Best instead of Good, Use Huge  instead of Big. It could influence your reader mind as long as your content  worth the Power. The 10 most Powerful words that claimed to be the best  marketing words are:</p>
<ul>
<li>You</li>
<li>Free</li>
<li>Secret</li>
<li>Money</li>
<li>Save</li>
<li>New</li>
<li>Discover</li>
<li>Guaranteed</li>
<li>Proven</li>
<li>Love</li>
</ul>
<blockquote><p>More Powerful words is provided in this <a href="http://blogs.mysites-advisor.com/powerful-words.zip">text file</a>. I  arrange it Alphabetically so you can easily find out words for your headline and  content.</p></blockquote>
<p><strong>4. Use Powerful Phrase</strong></p>
<p>There are some phrase around the writing worlds that could evoke genuine  interest from your readers. Powerful Phrase scored double then powerful word.</p>
<p>Example of Powerful Phrase:</p>
<ul>
<li>How to [what]</li>
<li>Easy Steps for [what]</li>
<li>10 Tips to [what]</li>
<li>1-2-3 Steps to [what]</li>
<li>The Lazy Guide of [what]</li>
</ul>
<p><strong>5. Try to Raise Curiosity within Headline</strong></p>
<p>Human&#8217;s love about something mysterious. If your headline could generate an  immediate curiosity, or even a challenge, youre reader will likely stay longer  and read what you are writing at.</p>
<p><strong>6. Using Verbs</strong></p>
<p>Verbs is like a command. It could make somebody to move according to the  verbs you are using at because it content force and magnetism. Begin your  Headline&#8217;s first word with a verb is more promising then a noun. For  example:</p>
<ol>
<li>Discover a good idea easily</li>
<li>Subscribe to my newsletter, or</li>
<li>Focus on What you are doing Now</li>
</ol>
<p>This is the template of verbs headlining. But this is not a rough protocol.  You could make a variation and not to always using Verbs as your starts.</p>
<p><strong>7. Using Headline Template</strong></p>
<p>Brian from CopyBlogger write a great post about <a href="http://www.copyblogger.com/headline-swipe-file/">7 Surefire Headline  Template</a> in his blog. Template is important when you have totally run out of  idea to create a &#8220;surefire&#8221; headline.Template also act as a idea finder to make  your post your post content, See Perfomancing post for more detail about:</p>
<ul>
<li><a href="http://performancing.com/if-youre-stuck-for-blogging-ideas-write-the-killer-headline-first">If  You&#8217;re Stuck for Blogging Ideas, Write the (Killer) Headline first</a></li>
</ul>
<p><strong>8. Find out what kind of headline is doing well</strong></p>
<p>Make a good use of Social Media Site to dig more popular template of  headline. Digg, StumbleUpon, Sphinn, Reddit and other niche social media site is  good as your source of inspiration.</p>
<p>Find the one with a lot of vote and make a note of how he form the headline  to receive such a huge vote from users.</p>
<p>I guess it is the end of this post. I hope this post would give you an idea  of headlining your post. <img src='http://blogs.mysites-advisor.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><em>If you found this post useful, consider to <a href="http://feeds.feedburner.com/Mysites-Blogs">subscribe to my feed</a> to  received more posts about blogging and personal growth. </em></p>
]]></content:encoded>
			<wfw:commentRss>http://blogs.mysites-advisor.com/2007/09/17/8-essential-tips-to-write-a-powerful-headline/feed/</wfw:commentRss>
		</item>
		<item>
		<title>CSS Nuts and Bolts for Your Blog</title>
		<link>http://blogs.mysites-advisor.com/2007/09/14/css-nuts-and-bolts-for-your-blog/</link>
		<comments>http://blogs.mysites-advisor.com/2007/09/14/css-nuts-and-bolts-for-your-blog/#comments</comments>
		<pubDate>Fri, 14 Sep 2007 04:05:58 +0000</pubDate>
		<dc:creator>Ken Xu</dc:creator>
		
		<category><![CDATA[Blogging]]></category>

		<category><![CDATA[Technical Skills]]></category>

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

		<guid isPermaLink="false">http://blogs.mysites-advisor.com/index.php/2007/09/14/css-nuts-and-bolts-for-your-blog/</guid>
		<description><![CDATA[Understanding CSS is important if you plan to modified your blog. Especially if your blog is a Wordpress platform, there will be a Stylesheet file attached on each Wordpress theme.
Modifying CSS could be a daunting task if you don&#8217;t know the basic of the CSS rules. Below is another collection of mine beside my Photoshop [...]]]></description>
			<content:encoded><![CDATA[<p><!--adsense--></p>
<p>Understanding CSS is important if you plan to modified your blog. Especially if your blog is a Wordpress platform, there will be a Stylesheet file attached on each Wordpress theme.</p>
<p>Modifying CSS could be a daunting task if you don&#8217;t know the basic of the CSS rules. Below is another collection of mine beside my <a href="http://blogs.mysites-advisor.com/index.php/2007/09/10/18-photoshop-tutorials/">Photoshop sources</a>.</p>
<p>Hope this reference would be helpful for you:</p>
<p><span id="more-407"></span></p>
<h4>CSS Basic</h4>
<p>It&#8217;s important to lay a strong basic before anything. My ultimate Beginner Basic to swim in the CSS pool is on <a href="http://www.cssbasics.com/full.pdf">this book</a>(pdf). If you choose to not downloading any ebook, try to visit the site instead at <a href="http://www.cssbasics.com">CSSBasics.com</a>.</p>
<p>This book cover all basic rules of CSS in 18 Chapter spreading from Syntax, Classes, IDs, Div, Text, Font, Border, and many more.</p>
<h4>CSS Basic Example</h4>
<p>After learning the Basic, you will need to practice from what you have learned. I get myself a help from an example of the CSS coding. Learning from an example is the fastest way to master CSS basic.</p>
<ul>
<li>This <a href="http://www.w3schools.com/css/css_examples.asp">CSS Examples</a> My help you a lot!</li>
</ul>
<h4>CSS Property</h4>
<p>During the learning in CSS, you may notice about the property of each CSS code. You will need to know what is the function of each property.</p>
<ul>
<li>Use this <a href="http://www.guistuff.com/css/">CSS 2.1 Reference</a> to learn more about each property (with example)</li>
</ul>
<p>Another good source of reference:</p>
<ul>
<li><a href="http://www.w3schools.com/css/css_reference.asp">W3Schools</a></li>
<li><a href="http://www.htmldog.com/reference/cssproperties/">HTMLDog</a></li>
</ul>
<h4><strong>Styling with CSS</strong></h4>
<p>After understanding the true nature of CSS, it&#8217;s time for you to make your own. But, wait! Learning basic skills is important, but it can only produce a amateurish-design. You will need to <strong>learn more </strong>about how to make things better and looks professional.</p>
<p>First, let&#8217;s heading to the very first CSS element in your blog, the navigation and Menu.</p>
<ul>
<li>Use this <a href="http://www.13styles.com/">13 Styles CSS Menu</a> to make a professional Looking of your navigation bar and sidebar.</li>
</ul>
<p>Second, Choose your Layout Style. Whether it&#8217;s 3 column horizontally or vertically, or fluid or fixed, side fixed or fluid.</p>
<ul>
<li><a href="http://blog.html.it/layoutgala/">Layout Gala</a> give you the idea within the example. Up to 40 layout examples available for you to choose.</li>
<li><a href="http://maxdesign.com.au/presentation/page_layouts/">Page Layout Sample</a> at Maxdesign.com.au</li>
</ul>
<p>Third, Learn the advance tutorial to build a good looking CSS page.</p>
<ul>
<li><a href="http://www.smashingmagazine.com/2007/01/19/53-css-techniques-you-couldnt-live-without/">53 CSS-Techniques You Couldn&#8217;t Live Without</a></li>
<li><a href="http://www.smashingmagazine.com/2007/05/10/70-expert-ideas-for-better-css-coding/">70 Expert Ideas for Better CSS Coding</a></li>
<li><a href="http://www.petefreitag.com/item/475.cfm">CSS Technique Round Up - 20 CSS Tips and Tricks</a></li>
<li><a href="http://www.htmldog.com/guides/cssadvanced/">HTMLDog&#8217;s Advance CSS Tutorials</a></li>
</ul>
<h4>CSS Search Engine</h4>
<p>Looking for more Source for learning CSS to tweak your blog appearances? Try the CSS Search Engine at <a href="http://www.skuer.com">SKUER.com</a>.</p>
<p>It&#8217;s a dedicated, google-powered search engine to find CSS materials.</p>
<h4>Tools Of CSS</h4>
<p>Not everything need to code by yourself from scratch. Some tools around the web have done the job for you. For example, below is some of the useful tools to create CSS style for you page/blog:</p>
<ul>
<li><a href="http://csscreator.com/tools">CSS Creator</a>
<ul>
<li>CSS Creator will help you automatically generate a layout, Multi Level Menu, Float container, etc</li>
</ul>
</li>
<li><a href="http://www.accessify.com/tools-and-wizards/developer-tools/list-o-matic/">CSS List-O-Matic</a>
<ul>
<li>Create a nice looking Sidebar list or top navigation bar without touching the CSS code.</li>
</ul>
</li>
<li><a href="http://www.somacon.com/p334.php">CSS Font and Text Style Wizard</a>
<ul>
<li>Enable you to live-preview the effect of each property implementation.</li>
</ul>
</li>
<li><a href="http://www.highdots.com/css-tab-designer/">Software: CSS Tab Designer</a>
<ul>
<li>Design your List and top/footer navigation easily and xhtml compliant.</li>
</ul>
</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://blogs.mysites-advisor.com/2007/09/14/css-nuts-and-bolts-for-your-blog/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
