<?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>SEO WordPress Themes</title>
	<atom:link href="http://www.xbhao.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.xbhao.net</link>
	<description>WordPress Themes , plugins, seo</description>
	<pubDate>Mon, 21 Jul 2008 07:33:33 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
	<language>en</language>
			<item>
		<title>Using WP-Cache on GoDaddy (500 Error)</title>
		<link>http://www.xbhao.net/2008-07/using-wp-cache-on-godaddy-500-error/</link>
		<comments>http://www.xbhao.net/2008-07/using-wp-cache-on-godaddy-500-error/#comments</comments>
		<pubDate>Mon, 21 Jul 2008 07:33:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[WordPress plugins]]></category>

		<category><![CDATA[error 500 internal server error]]></category>

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

		<guid isPermaLink="false">http://www.xbhao.net/?p=20</guid>
		<description><![CDATA[This post has nothing to do with online dating. It has to do with a particular error, 500 Internal Server Error, when using WordPress and the plug-in WP-Cache on a GoDaddy shared server. My hope is that others who experience the issues I had might find this post and (hopefully) will be able to avoid [...]]]></description>
			<content:encoded><![CDATA[<p>This post has nothing to do with online dating. It has to do with a particular error, 500 Internal Server Error, when using WordPress and the plug-in WP-Cache on a GoDaddy shared server. My hope is that others who experience the issues I had might find this post and (hopefully) will be able to avoid the hassle I went through!<br />
<strong>The Problem</strong><br />
WP-Cache is a plug-in for WordPress that allows web pages to be served quicker by requesting data from the database far less often. However, when this plugin is enable on GoDaddy a strange thing occurs: every other time you load the page you get a 500 Internal Server Error. When this occurs, I suspect most WordPress users on GoDaddy simply disable the plug-in. Unfortunately, if their WordPress site starts to generate traffic, GoDaddy will complain that they are creating too much of a load on the database server. So there appears to be a catch-22 in that GoDaddy doesn’t support the technology that would allow its customer to avoid the very problem the company is complaining about.</p>
<p><strong>The Solution</strong><br />
1. Download the wp-cache-phase1.php in /blog_home/wp-content/plugins/wp-cache/ from your web server.<br />
2. Edit the file by finding the lines:<br />
<em> foreach ($meta-&gt;headers as $header) {<br />
header($header);<br />
}</em><br />
3. Replace these lines with the following:<br />
<em> foreach ($meta-&gt;headers as $header) {<br />
if (strpos($header, ‘Last-Modified:’)===FALSE) {<br />
header($header);<br />
} else {<br />
// do nothing - makes GoDaddy angry<br />
}<br />
}</em><br />
4. Upload the wp-cache-phase1.php to your web server and try refreshing some cached pages.</p>
<p><strong>The Warning</strong><br />
As you will discover if you read below, I’m not very confident in what I am doing and I’ve stumbled through most of my testing. Implementing this change, while it may fix wp-cache, may create other problems. It may not, though. I really have no idea. Also, I was having problems with a header for Last-Modified - I have no clue whether others are going to see the same issue. My solution may not be a solution at all. All I can say is that in my opinion, it appears to work. At any rate, use this at your own risk!</p>
<p><strong>The Explanation (From a Novice)</strong><br />
I am absolutely new to WordPress, PHP, Apache, etc. I am a Java developer by profession so I can read the code but I suspect many of the steps I took, which are described below, were an absolute waste of time created by my ignorance. My hopes are that an expert may be able to review this and explain better why the problem occurs (so I’ve included all the steps I’ve taken working on this issue). Also, if you are also a novice and are interested in understanding some of what I discuss, it would be best to review the readme.txt included with the wp-cache plug-in.</p>
<p>When I started reading about WP-Cache I immediately started seeing articles (for example, <a href="http://wordpress.org/support/topic/129954" target="_blank">here</a> and <a href="http://wordpress.org/support/topic/131435" target="_blank">here</a>) regarding problems when using GoDaddy. Depressing me even further: most of the responses I found seemed to simply write-off the problem as an unaddressable GoDaddy issue. Honestly, after seeing so many people state so convincingly that any 500 Internal Server Error is GoDaddy’s problem and nothing can be done to fix it, I was inclined to simply believe that there was no hope.</p>
<p>Regardless, I decided to give the plug-in a try hoping that maybe there was some difference between my GoDaddy server and everyone else’s (heh). The install went well and even the first time I loaded a page I could see it appear in my cache. My excitement lasted about 5 seconds: after a refresh I was viewing the dreaded 500 Internal Server Error. I fooled around with some settings on the plug-in itself but it did no good. Things appeared to be broken. Before giving up, I decided to view the source of the 500 Internal Error page, believing there might be some clue there. To my surprise, the entire code of my page was in the source! In other words, I was not seeing the expected 5 lines of source for the 500 error but rather 100+ lines of the page I actually attempted to load. This was exciting to me because now I could add some debug and try to determine where the problem was occuring.</p>
<p>My first thought was that if the page was loading, the first part of (wp-cache-phase1.php) was working and it must be the caching of the page to disk (wp-cache-phase2.php) where the problem existed. I found the line in wp-cache-phase1.php that called phase2 and commented it:<br />
// wp_cache_phase2();<br />
I reloaded my previously cached page but the problem persisted. This was a good thing, though, as I found the code in phase1 more understandable.</p>
<p>At this point, I started commenting out different sections of the phase1 code. I discovered all my problems disappeared when I commented out the foreach loop that creates the headers. I added logging to this section and found that I had two headers:</p>
<ul>
<li>Last-Modified: Sat, 08 Sep 2007 13:31:29 GMT</li>
</ul>
<ul>
<li>Content-Type: text/html; charset=”UTF-8″</li>
</ul>
<p>Then, instead of using the foreach loop, I manually tried each of the headers individually. Testing Content-Type went fine but testing Last-Modified and the 500 errors reappeared. At this point, I created a new php file to test the Last-Modified header (you can view the source <a href="http://www.littleredrails.com/test.txt" target="_blank">here</a>). I named this test.php and loaded it successfully (you can <a href="http://www.littleredrails.com/test.php" target="_blank">test it yourself</a> if you would like. When I reloaded it, though, the 500 error occurred! At this point, I read a little on the Last-Modified header and decided to disable the cache on my web browser. Now the problem disappearred no matter how often I reloaded…so the problem seems somehow related to when a browser is deciding if it needs to request to redownload files (I’m out of my league at this point).</p>
<p><strong>The Help?</strong><br />
And now, I am at a loss. I can implement wp-cache but only if I explicitly ignore Last-Modified headers. Will this create problems? According to <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html" target="_blank">this document</a>, I should always send Last-Modified when able. I restored the old code to view the headers when the page displays properly versus when it does not (500 error) and they are identical:<br />
<strong> Date: Sat, 08 Sep 2007 13:59:19 GMT<br />
Server: Apache<br />
Last-Modified: Sat, 08 Sep 2007 13:31:29 GMT<br />
Keep-Alive: timeout=15, max=99<br />
Connection: Keep-Alive<br />
Transfer-Encoding: chunked<br />
Content-Type: text/html; charset=”UTF-8″</strong></p>
<p><strong>200 OK</strong></p>
<p>The fact that the 500 error occurs intermittently (normally every other time) is also very confusing. How is an identical Last-Modified header causing problems half the time? And why does disabling cache on my browser (Firefox) cause the problem to disappear?</p>
<p>If any experts out there want to weigh in on this, I’d love for you to do so. For now, I’m going to continue to use my “fix” by ignoring the Last-Modified when serving cached pages.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.xbhao.net/2008-07/using-wp-cache-on-godaddy-500-error/feed/</wfw:commentRss>
		</item>
		<item>
		<title>AT&#038;T GoPhone</title>
		<link>http://www.xbhao.net/2008-06/att-gophone/</link>
		<comments>http://www.xbhao.net/2008-06/att-gophone/#comments</comments>
		<pubDate>Mon, 16 Jun 2008 02:27:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[essay]]></category>

		<category><![CDATA[account balance]]></category>

		<category><![CDATA[AT&amp;T]]></category>

		<category><![CDATA[calling plans]]></category>

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

		<category><![CDATA[t mobile]]></category>

		<guid isPermaLink="false">http://www.xbhao.net/?p=19</guid>
		<description><![CDATA[GoPhone is the trademark for AT&#038;T Mobility&#8217;s pay-as-you-go (PAYG) service. The GoPhone trademark was acquired by Cingular in its merger with AT&#038;T Wireless. Unlike many other PAYG services when GoPhone was acquired by Cingular they began to offer two options; the first is a conventional card-based PAYG service, for which the customer purchases a reload [...]]]></description>
			<content:encoded><![CDATA[<p>GoPhone is the trademark for AT&#038;T Mobility&#8217;s pay-as-you-go (PAYG) service. The GoPhone trademark was acquired by Cingular in its merger with AT&#038;T Wireless. Unlike many other PAYG services when GoPhone was acquired by Cingular they began to offer two options; the first is a conventional card-based PAYG service, for which the customer purchases a reload card with a preloaded dollar amount, which is then deducted from an account based on usage. The second, called Pick Your Plan(PYP), is prepaid, but has features which are more similar to conventional post-paid calling plans and is automatically billed every month. This variation was added on by Cingular. PYP includes Cingular&#8217;s Rollover Balance which allows customers to preserve unused account balance for up to a full year (vs. 3-6 months for other carriers&#8217; prepaid services; T-mobile To Go is an exception, giving a one year expiration for any recharge once $100 has been purchased in the life of the account, under the name Gold Rewards). Payments for both the PYP and PAYG are handled by Vesta, a payment processor for many cell phone companies and MVNOs</p>
<p>AT&#038;T GoPhone Pick Your Plan</p>
<p>In mid 2006 Cingular decided to offer its popular MEdia Net plans on Cingulars PYP GoPhone service. Using PYP requires automatic payment with either a credit/debit card, or ACH from a checking account. If the payment fails, the customer must call and make payment within 4 days, or they lose their &#8220;roll-over&#8221; minutes.</p>
<p>Since the consolidation of Cingular and AT&#038;T Inc, the company has begun offering prepaid data options on Pay As You Go. Data rates run from $4.99 for 1 MB of data, to 5 MB for $9.99, up to unlimited data usage for $19.99 per month. These so-called Feature Packs, can be added to a user&#8217;s account monthly by calling 611. The data plans do not renew automatically.</p>
<p>Some users have noted that since GoPhone can be used with any compatible GSM or UMTS device (unlocked to AT&#038;T), that the unlimited prepaid data can now be used as a data-only option (for use with smartphones and mobile broadband cards). This effectively dramatically lowers the cost of data versus the typical wireless data plan.</p>
<p>AT&#038;T GoPhones</p>
<p>    * Any AT&#038;T, Cingular or Unlocked GSM handset supporting the 850 MHz band.</p>
<p>As GoPhone accounts are not authorized to roam on the 1900 MHz T-Mobile GSM network, handsets lacking the 850 MHz band will perform poorly if they get a signal at all. This limitation applies to many tri-band European handsets that only support the 900, 1800 and 1900 MHz GSM bands.</p>
<p>Ordering Problems</p>
<p>ATT Wireless frequently rejects online GoPhone orders stating that the individuals credit history could not be verified, even though it is a prepaid service that does not require a credit history check. This &#8220;credit history verification&#8221; is thought to help seek out terrorists that use prepaid phones for communication. (citation needed.)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.xbhao.net/2008-06/att-gophone/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Google&#8217;s affiliate auction policy</title>
		<link>http://www.xbhao.net/2008-06/googles-affiliate-auction-policy/</link>
		<comments>http://www.xbhao.net/2008-06/googles-affiliate-auction-policy/#comments</comments>
		<pubDate>Mon, 16 Jun 2008 02:05:01 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[AdWords]]></category>

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

		<category><![CDATA[auction policy]]></category>

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

		<guid isPermaLink="false">http://www.xbhao.net/?p=18</guid>
		<description><![CDATA[
We&#8217;ll only display one ad per search query for advertisers sharing the same top-level domain in the display URL. This means that if you&#8217;re an affiliate advertiser, your ad may not show for a query because another affiliate or the website that runs the affiliate program also has ads using the same (or a similar) [...]]]></description>
			<content:encoded><![CDATA[<div class="i">
<p>We&#8217;ll only display one ad per search query for advertisers sharing the same top-level <a href="http://adwords.google.com/support/bin/answer.py?answer=14845" target="new">domain</a> in the <a href="http://adwords.google.com/support/bin/answer.py?answer=6314" target="new">display URL</a>. This means that if you&#8217;re an affiliate advertiser, your ad may not show for a query because another affiliate or the website that runs the affiliate program also has ads using the same (or a similar) domain in the display URL. Also, your site should not mirror (be similar or nearly identical in appearance to) your parent company&#8217;s or another advertiser&#8217;s site.</p>
<p>For example, for the domain <em><strong>google.com</strong></em>, we would determine the following URLs and display URLs to be equivalent:</p>
<ul>
<li>home.google.com</li>
<li>www.google.com</li>
<li>google.com</li>
<li>www.google.com/home</li>
<li>www.Google.com</li>
</ul>
<p>However, we&#8217;d determine the following display URLs to be distinct, since each has a different top-level domain:</p>
<ul>
<li>www.google.co.uk*</li>
<li>www.google.fr</li>
<li>www.google.com</li>
<li>www.google.edu<br />
<em>*Domains with a specific extension are considered distinct.</em></li>
</ul>
<p>For more information about this change, please review the <a href="http://adwords.google.com/select/news/sa_jan05.html" target="new">January 2005 Google AdWords service announcement</a>.</p>
<p><strong>Helpful Definitions:</strong></p>
<p><em>Display URL</em></p>
<p>This is the URL displayed on your ad to identify your site to users. This URL displayed is limited to 35 characters; it need not be the same as the URL your ad links to, but it should be an actual URL that is part of your site.</p>
<p><em>Domain</em></p>
<p>Website domains are a naming procedure by which web users may identify a particular website address and location (e.g., www.google.com). They are usually made up of two parts: a name and a category. The following are common URL domain categories: .com (commercial), .edu (education), and .gov (government). Domain categories can also be location-specific, for example: .fr (France) , .br (Brazil), or .jp (Japan). In some cases, one category is appended to another category, for example: examplename.co.uk, examplename.com.ph, examplename.org.uk).</p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.xbhao.net/2008-06/googles-affiliate-auction-policy/feed/</wfw:commentRss>
		</item>
		<item>
		<title>30+ AJAX-Plugins For WordPress</title>
		<link>http://www.xbhao.net/2008-06/30-ajax-plugins-for-wordpress/</link>
		<comments>http://www.xbhao.net/2008-06/30-ajax-plugins-for-wordpress/#comments</comments>
		<pubDate>Fri, 13 Jun 2008 03:56:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[WordPress plugins]]></category>

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

		<category><![CDATA[comment preview]]></category>

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

		<category><![CDATA[google page rank]]></category>

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

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

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

		<guid isPermaLink="false">http://www.xbhao.net/?p=17</guid>
		<description><![CDATA[AjaxWP - Adds AJAX to all aspects of your WordPress site speeding up the load times.
Alexa Rank - Display your Alexa rank with pride.
Ajax Comment Preview - Allows readers to preview their comment before submitting.
asTunes - Retrieves data from your Audioscrobbler/last.fm profile and posts it as a list on your blog.
Codebox - Side scrolling box [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.giannim.com/blog/index.php?page_id=13">AjaxWP</a> - Adds AJAX to all aspects of your WordPress site speeding up the load times.</p>
<p><a href="http://www.coolcode.cn/?p=152">Alexa Rank</a> - Display your Alexa rank with pride.</p>
<p><a href="http://blogwaffe.com/ajax-comment-preview/">Ajax Comment Preview</a> - Allows readers to preview their comment before submitting.</p>
<p><a href="http://zimaq.pl/projekty/astunes/">asTunes</a> - Retrieves data from your Audioscrobbler/last.fm profile and posts it as a list on your blog.</p>
<p><a href="http://zimaq.pl/projekty">Codebox</a> - Side scrolling box for displaying code snippets.</p>
<p><a href="http://www.duanestorey.com/crossroads-plugin/">Crossroads</a> - Adds thumbnails and comments from your Flickr account.</p>
<p><a href="http://firestats.cc/">FireStats</a> - Full featured statistics including referrers and popular pages.</p>
<p><a href="http://www.coolcode.cn/?p=151">Google PageRank</a> - Allows you to display your Google Page rank on your blog.</p>
<p><a href="http://www.i-marco.nl/wp/wordpress/?p=4">Hardened-Trackback</a> - Generates a single use trackback to help fight trackback spam.</p>
<p><a href="http://www.m4rc.nl/wp/imageviewjx">imgViewJX</a> - Refreshes an image on your main page from a selected directory.</p>
<p><a href="http://www.lab4games.net/zz85/blog/wordpress-plugins/live-spell-checker/">Live Spell Checker</a> - Adds a spell checker to the admin area to check your posts with.</p>
<p><a href="http://www.yongfook.com/2006/05/28/plug-n-play-google-map/">Plug ‘n’ Play Google Map</a> - Adds any post you make with longitude and latitude to a Google Map on a separate page. Very useful for blogs writing restaurant reviews or about events.</p>
<p><a href="http://www.tribulant.com/products/products-wordpress-plugins/wordpress-mailing-list-plugin/">Wordpress Mailing List</a> - Have a mailing list?  Let readers subscribe and unsubscribe simply from the front page of your site.</p>
<p><a href="http://www.instinct.co.nz/">WP e-Commerce</a> - Adds a shopping cart to your WordPress powered site.</p>
<p><a href="http://www.lesterchan.net/portfolio/programming.php">WP-Polls</a> - Adds fully customizable polls for your readers to take.</p>
<p><a href="http://www.lesterchan.net/portfolio/programming.php">WP-Post Ratings</a> - Allows readers to rate your posts.</p>
<p><a href="http://www.zorpia.com/info/wordpress_plugin/">Zorpia That’s Hot Box</a> - Allows visitors to send posts they like Zorpia.com and vote on their favorite articles.</p>
<p><a href="http://www.mikesmullin.com/2006/06/05/ajax-comments-20/">AJAX Comments 2.0</a> - Auto updates the comments page with no full reload, much smoother commenting than the older full reload system.</p>
<p><a href="http://www.waxbrush.com/widgets/google-videosearch-widget/">AJAX Google Video Search</a> - Search Google Video without having to leave your favorite blog.</p>
<p><a href="http://pierre.sudarovich.free.fr/">AJAX Shoutbox</a> - Realtime conversation with sound to alert of new messages.</p>
<p><a href="http://www.coolcode.cn/?p=153">Cool Weather</a> - Allows visitors to see the weather forecast for any area they define.</p>
<p><a href="http://chaos-laboratory.com/2007/03/01/currex-ajax-based-currency-converter-widget-for-wordpress/">Currency Converter</a> - Adds a real time currency converter to the page with data pulled from Yahoo Finance.</p>
<p><a href="http://dancameron.org/wordpress/">Google AJAX Search</a> - Allows you to set search for just the contents of your site and the web, or another option allows for search of a second site such as your Flickr account.</p>
<p><a href="http://www.waxbrush.com/widgets/">Google MapSearch Widget</a> - Allows readers to search Google Maps without ever leaving the page.</p>
<p><a href="http://dev.lipidity.com/feature/wp-plugin-gregarious">Gregarious</a> - Social bookmarking plugin that adds Digg, Reddit, Feedburner FeedFlare buttons and more.</p>
<p><a href="http://jamietalbot.com/wp-hacks/hottaimoijiruna/">Hottaimoijiruna</a> - Adds a self-updating clock to the site for a timezone defined by the blogger.</p>
<p><a href="http://kashou.net/blog/inline-ajax-comments/">Inline Ajax Comments</a> - Hides comments until the user clicks on them, and then they fade-in with no reload.</p>
<p><a href="http://anthologyoi.com/inap/">Inline Ajax Page</a> - Allows readers to see a snippet of a post, click a button and the remainder will appear without going to another page.</p>
<p><a href="http://freepressblog.org/wordpress-plugins-2/wordpress-tagboard-plugin-widget/">Tagboard Widget</a> - Adds an auto-updating tagboard to your site that displays new messages as they are posted.</p>
<p><a href="http://chaos-laboratory.com/2007/03/06/unitary-an-ajax-based-units-converter-sidebar-widget-for-wordpress/">Units Converter</a> - Converts hundreds of different units of Length, Area, Volume, Weight / Mass, Speed without reloading the page.</p>
<p><a href="http://paulgoscicki.com/projects/wp-movie-ratings/">WP Movie Ratings</a> - Combines data from IMDB with the bloggers movie review and lets the readers add their own rating instantly.</p>
<p><a href="http://www.xdweb.net/">XDTalk</a> - Allows real-time conversation between registered users.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.xbhao.net/2008-06/30-ajax-plugins-for-wordpress/feed/</wfw:commentRss>
		</item>
		<item>
		<title>friend link</title>
		<link>http://www.xbhao.net/2008-06/friend-link/</link>
		<comments>http://www.xbhao.net/2008-06/friend-link/#comments</comments>
		<pubDate>Wed, 11 Jun 2008 08:09:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[friend link]]></category>

		<guid isPermaLink="false">http://www.xbhao.net/?p=16</guid>
		<description><![CDATA[Good, if I want to do the Links, please reply to this, I can add good at the Links after the post, I will promptly add your URL for the Links.
]]></description>
			<content:encoded><![CDATA[<p>Good, if I want to do the Links, please reply to this, I can add good at the Links after the post, I will promptly add your URL for the Links.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.xbhao.net/2008-06/friend-link/feed/</wfw:commentRss>
		</item>
		<item>
		<title>yahoo domain name free of Hosting</title>
		<link>http://www.xbhao.net/2008-06/yahoo-domain-name-free-of-hosting/</link>
		<comments>http://www.xbhao.net/2008-06/yahoo-domain-name-free-of-hosting/#comments</comments>
		<pubDate>Wed, 11 Jun 2008 03:11:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Hosting]]></category>

		<guid isPermaLink="false">http://www.xbhao.net/?p=15</guid>
		<description><![CDATA[Why Choose Yahoo! Web Hosting?
* Free domain name
* Unlimited disk space
* Unlimited data transfer
* Unlimited email storage (Unlimited details)

Web Hosting Details

Features and Benefits
Web Site Design Tools
Featured Customer Sites


  $896  month   For your first 3 months.1  ($11.95 / month after)
    * No setup fee (save $25)1
   [...]]]></description>
			<content:encoded><![CDATA[<p>Why Choose Yahoo! Web Hosting?</p>
<p>* Free domain name<br />
* Unlimited disk space<br />
* Unlimited data transfer<br />
* Unlimited email storage (Unlimited details)</p>
<div class="ysbsM1Cont">
<h3><a href="http://us.rd.yahoo.com/smallbusiness/Lwebhosting/home/title/*http://smallbusiness.yahoo.com/webhosting/compare.php">Web Hosting Details</a></h3>
<ul class="ysbsWHMenu">
<li class="ysbsWHMenu"><a class="ysbsWHMenu" href="http://us.rd.yahoo.com/smallbusiness/Lwebhosting/home/features/*http://smallbusiness.yahoo.com/webhosting/hostingfeatures.php">Features and Benefits</a></li>
<li class="ysbsWHMenu"><a class="ysbsWHMenu" href="http://us.rd.yahoo.com/smallbusiness/Lwebhosting/home/sitebuilding/*http://smallbusiness.yahoo.com/webhosting/sitebuilding.php">Web Site Design Tools</a></li>
<li class="ysbsWHMenu"><a class="ysbsWHMenu" href="http://us.rd.yahoo.com/smallbusiness/Lwebhosting/home/customersites/*http://smallbusiness.yahoo.com/webhosting/featuredsites.php">Featured Customer Sites</a></li>
</ul>
</div>
<p>  $896  month   For your first 3 months.1  ($11.95 / month after)</p>
<p>    * No setup fee (save $25)1<br />
    * 3-month term<br />
    * 30-Day Satisfaction Guarantee</p>
]]></content:encoded>
			<wfw:commentRss>http://www.xbhao.net/2008-06/yahoo-domain-name-free-of-hosting/feed/</wfw:commentRss>
		</item>
		<item>
		<title>AT&#038;T Labs TTS</title>
		<link>http://www.xbhao.net/2008-06/att-labs-tts/</link>
		<comments>http://www.xbhao.net/2008-06/att-labs-tts/#comments</comments>
		<pubDate>Wed, 11 Jun 2008 03:02:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[essay]]></category>

		<category><![CDATA[at  t]]></category>

		<category><![CDATA[AT&amp;T]]></category>

		<category><![CDATA[homer dudley]]></category>

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

		<category><![CDATA[readable text]]></category>

		<category><![CDATA[space suits]]></category>

		<category><![CDATA[tts voice]]></category>

		<category><![CDATA[voice technology]]></category>

		<guid isPermaLink="false">http://www.xbhao.net/?p=14</guid>
		<description><![CDATA[AT&#038;T Natural Voices™
    For Sales, Live Demos, Licensing, Support, Downloadable Technical Information, as well as recent Press Releases and Customer Names of AT&#038;TNV Adopter/Users, please contact Wizzard Software or visit http://www.naturalvoices.att.com.
    Please be advised that differences may be noted between the released NV 1.4 product and the demo on [...]]]></description>
			<content:encoded><![CDATA[<p>AT&#038;T Natural Voices™</p>
<p>    For Sales, Live Demos, Licensing, Support, Downloadable Technical Information, as well as recent Press Releases and Customer Names of AT&#038;TNV Adopter/Users, please contact Wizzard Software or visit http://www.naturalvoices.att.com.</p>
<p>    Please be advised that differences may be noted between the released NV 1.4 product and the demo on this Research site.</p>
<p>What is TTS?</p>
<p>    TTS, or Text-To-Speech, is the creation of audible speech from computer readable text. There is more background in the FAQ.</p>
<p>    Our research group&#8217;s charter is to increase the naturalness of speech synthesis significantly while maintaining good intelligibility. Next-Generation TTS was introduced in 1998 and marked a dramatic leap in naturalness. Now called AT&#038;T Natural Voices™, it is still broadening the range of applications in which TTS can be deployed.</p>
<p>    In some cases, such as telephone response, a TTS voice may supply the only feedback a user gets, and the quality of an entire service may be judged by that voice. TTS is closest to the customer&#8217;s ear.(R)</p>
<p>Credits<br />
   > TV Commercial Highlights AT&#038;T Voice Technology</p>
<p>    In April 2006 AT&#038;T launched a national television commercial highlighting voice technology, its long development history within AT&#038;T, and its use in current services. The robot hand at the beginning is demonstrating the Voder (&#8221;VOice coDER&#8221;), shown by Homer Dudley at the 1939 World&#8217;s Fair. A human operator used the contols to manually control the sound output.</p>
<p>    Please note the following regarding some of the material appearing in this AVI video clip:</p>
<p>        (c) 2006 AT&#038;T Operations, Inc. All Rights Reserved.    WarGames TM &#038; (c) 1983 Metro-Goldwyn-Mayer Studios Inc. All Rights Reserved.    TM &#038; (c) H-B.    TM @ (c) Turner Ent. Co. (s06) </p>
<p>   > Red Planet</p>
<p>    Red Planet, the Warner Bros. movie released on 11/09/2000, uses our TTS as the voices of the space ship (female) and the astronauts&#8217; space suits (male). Here&#8217;s the press release.</p>
<p>   > I Am Sam</p>
<p>    This movie, starring Sean Penn and Michelle Pfeiffer, used our &#8220;Crystal&#8221; as the voice of Pfeiffer&#8217;s voice-activated cell phone. Please note that we take no responsiblity for the infuriatingly inaccurate speech recognition in the movie <img src='http://www.xbhao.net/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>   > Discover Magazine</p>
<p>    Discover magazine describes synthesized speech as both a triumph of technology and the fruition of a very old dream. The article follows the evolution of AT&#038;T Natural Voices™, the productized version of our work.</p>
<p>    Unfortunately, the article credits us with inventing just about every facet of modern TTS technology. As I understand it, AT&#038;T was asked to verify certain facts but did not get to preview the article prior to publication. (In fact, my mother-in-law read it long before any of us.) We take some comfort knowing that people active in the field are well aware who invented what. And I&#8217;m sure our friends and colleagues will refresh our memories from time to time <img src='http://www.xbhao.net/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>Let Your Application Speak For Itself!</p>
<p>    TTS technology can be useful whenever a computerized application needs to communicate with a customer or user, and so is especially useful in telephone services. Though recorded material still provides the highest quality, recordings are often impractical due to cost or time constraints. Some typical uses for TTS technology are:</p>
<p>        * customer support dialog systems, e.g. help desks<br />
        * interactive voice response (IVR), e.g. banking, class enrollment<br />
        * unified messaging, especially email reading<br />
        * screen reader programs for the sight-impaired </p>
]]></content:encoded>
			<wfw:commentRss>http://www.xbhao.net/2008-06/att-labs-tts/feed/</wfw:commentRss>
		</item>
		<item>
		<title>AT&#038;T Free Phones Cell Phone Sales</title>
		<link>http://www.xbhao.net/2008-06/att-free-phones-cell-phone-sales/</link>
		<comments>http://www.xbhao.net/2008-06/att-free-phones-cell-phone-sales/#comments</comments>
		<pubDate>Wed, 11 Jun 2008 02:59:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[essay]]></category>

		<category><![CDATA[at and t]]></category>

		<category><![CDATA[AT&amp;T]]></category>

		<category><![CDATA[business days]]></category>

		<category><![CDATA[cell phone sales]]></category>

		<category><![CDATA[free phones]]></category>

		<category><![CDATA[free shipping]]></category>

		<category><![CDATA[mobile minutes]]></category>

		<guid isPermaLink="false">http://www.xbhao.net/?p=12</guid>
		<description><![CDATA[2-year contract and new activation required. Online offers are available for a limited time. Credit approval and other restrictions apply. Up to $36 activation fee applies. Service is not available in all areas. See coverage map  for details. Sales tax calculated based on price of unactivated phone for certain customers. More bars claim compares [...]]]></description>
			<content:encoded><![CDATA[<p>2-year contract and new activation required. Online offers are available for a limited time. Credit approval and other restrictions apply. Up to $36 activation fee applies. Service is not available in all areas. See coverage map  for details. Sales tax calculated based on price of unactivated phone for certain customers. More bars claim compares AT&#038;T&#8217;s network before to after merger.</p>
<p>In order to protect AT&#038;T and its customers from fraudulent activity, we limit the number of phones and services that may be ordered online by a single individual or entity.<br />
<a href='http://www.xbhao.net/wp-content/uploads/2008/06/bnr_060908fcp_788x148_aa00051w.jpg'><img src="http://www.xbhao.net/wp-content/uploads/2008/06/bnr_060908fcp_788x148_aa00051w-300x56.jpg" alt="" title="AT&#038;T" width="300" height="56" class="alignnone size-medium wp-image-13" /></a><br />
30 DAY RETURN POLICY<br />
No early termination fee if cancelled in first 30 days. Thereafter, the fee will begin at $175 per device and decrease by $5 each month for the term of the agreement. Some agents impose additional fees.</p>
<p>Rollover® Minutes<br />
Unused Anytime Minutes expire after the 12th billing period. Night and Weekend and Mobile to Mobile Minutes do not roll over.</p>
<p>MOBILE TO MOBILE MINUTES<br />
Unlimited nationwide mobile to mobile available with plans starting at $39.99 with two year agreement.</p>
<p>FREE SHIPPING AND HANDLING<br />
When activating select plans, you will receive FREE shipping and handling (a $9.95 value) when you order online. Your order will be processed within 3-5 business days and you will be notified via e-mail when it is complete.</p>
<p>REFURBISHED PHONES<br />
Devices that are specified as refurbished or as refurbs are not new; they have been refurbished by an authorized service provider. Our standard return policy applies. Information about the applicable manufacturer&#8217;s warranty will be included with your device.</p>
<p>The trademarks and service marks used on this page are the property of the respective owners.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.xbhao.net/2008-06/att-free-phones-cell-phone-sales/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Lenovo ThinkPad X60s cnet comments video</title>
		<link>http://www.xbhao.net/2008-06/lenovo-thinkpad-x60s-video/</link>
		<comments>http://www.xbhao.net/2008-06/lenovo-thinkpad-x60s-video/#comments</comments>
		<pubDate>Wed, 11 Jun 2008 01:35:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[ThinkPad]]></category>

		<category><![CDATA[battery life]]></category>

		<category><![CDATA[comparable models]]></category>

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

		<category><![CDATA[lifebook p7120]]></category>

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

		<category><![CDATA[sony vaio]]></category>

		<category><![CDATA[sony vaio vgn]]></category>

		<category><![CDATA[test unit]]></category>

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

		<guid isPermaLink="false">http://www.xbhao.net/?p=11</guid>
		<description><![CDATA[Product Summary  CNET Editors&#8217; Choice
The good: Extremely portable design; excellent keyboard; fingerprint reader; integrated WWAN radio; great performance; incredibly long battery life when configured with high-capacity battery.
The bad: More expensive than comparable models; lacks built-in optical drive; lacks built-in support for ExpressCards.
The bottom line: The first ultraportable to accommodate Intel&#8217;s Core Duo processor, the [...]]]></description>
			<content:encoded><![CDATA[<p>Product Summary  CNET Editors&#8217; Choice</p>
<p>The good: Extremely portable design; excellent keyboard; fingerprint reader; integrated WWAN radio; great performance; incredibly long battery life when configured with high-capacity battery.</p>
<p>The bad: More expensive than comparable models; lacks built-in optical drive; lacks built-in support for ExpressCards.</p>
<p>The bottom line: The first ultraportable to accommodate Intel&#8217;s Core Duo processor, the ThinkPad X60s combines blazing performance and incredible battery life with a full feature set and a compact case. We like it.<br />
<object width="335" height="360"><param name="movie" value="http://www.cnet.com/av/video/flv/newPlayers/universal.swf" /><param name="wmode" value="transparent" /><param name="allowFullScreen" value="true" /><param name="FlashVars" value="playerType=embedded&#038;value=18484" /><embed src="http://www.cnet.com/av/video/flv/newPlayers/universal.swf" type="application/x-shockwave-flash" wmode="transparent" width="335" height="360" allowFullScreen="true" FlashVars="playerType=embedded&#038;value=18484" /></object><br />
    *  Reviewed by: Michelle Thatcher<br />
    * Edited by: Justin Jaffe<br />
    * Reviewed on: 03/22/2006<br />
    * Released on: 02/14/2006</p>
<p>The latest model in the ThinkPad X series, the ultraportable X60s is almost imperceptibly lighter and thinner than its predecessor, the ThinkPad X41. Though the X60s improves upon the previous generation by adding a few more features, including built-in WWAN connectivity and the latest Intel Core Duo processors, it still lacks the built-in optical drive found in smaller, lighter competitors, such as the Sony VAIO VGN-TX670P and the Fujitsu LifeBook P7120. And yet the ThinkPad X60s is as costly as the Sony and more expensive than the Fujitsu&#8211;our loaded test configuration cost $2,299. Still, the ThinkPad&#8217;s keyboard is larger than those laptops&#8217;, making it the better choice if comfortable typing is more valuable to you than viewing CDs and DVDs. In general, if you can do without a built-in optical drive, we think the ThinkPad X60s delivers a best-in-class balance of comfort, performance, battery life, and portability.</p>
<p>Measuring 10.5 inches wide, 8.3 inches deep, and 0.8 inch thick at the front (1.1 inches thick at the back), the ThinkPad X60s is nearly identical to its predecessor, the ThinkPad X41. The base X60s configuration weighs a spritely 2.7 pounds, though our test unit, which included an extended battery, weighed 3.5 pounds (the extended battery also adds 1 inch of depth and 0.4 inch of thickness at the back). The laptop&#8217;s diminutive AC adapter adds 0.7 pound to its total weight. The VAIO VGN-TX670 and the LifeBook P7120 are smaller and lighter and yet manage to incorporate an optical drive, though they also have smaller displays.</p>
<p>The ThinkPad X60s&#8217;s 12.1-inch display has a 1,024&#215;768 native resolution that provides just enough screen real estate for basic business tasks and Web surfing; the Fujitsu&#8217;s and Sony&#8217;s smaller displays have slightly finer resolutions. Though most ultraportables sacrifice key size to fit a smaller case, the X60s&#8217;s keys are large and very comfortable for extended typing. Our only complaint is that the right-side Alt and Ctrl keys are a bit narrow&#8211;annoying if you&#8217;re accustomed to using shortcuts. As with all ThinkPads, the X60s includes a red TrackPoint pointing stick; beneath the keyboard are three mouse buttons (the center acts as a scroll button) and a fingerprint reader for security. Otherwise, you get just volume controls and a long, blue ThinkVantage button that launches system maintenance, connectivity, and other utilities. Tucked into the lid is a nifty light that illuminates the keyboard in dim environments.</p>
<p>Business travelers will find all the ports they need on the ThinkPad X60s: VGA, four-pin FireWire, and three USB 2.0 ports, as well as headphone and microphone jacks. The laptop also includes slots for Type II PC Cards and Secure Digital cards, though ExpressCards require an adapter (not included). Aside from the aforementioned missing optical drive, the ThinkPad X60s&#8217;s connections match up well with those of both the VAIO VGN-TX670P and the LifeBook P7120. Our review model included the X6 Ultrabase docking station ($160 if you buy it as an option), which features a DVD/CD-RW drive in addition to a number of other ports and connections.</p>
<p>Like the Sony VAIO VGN-TX670P, the ThinkPad X60s offers the maximum degree of connectivity, with modem, Gigabit Ethernet, 802.11a/b/g Wi-Fi, and an integrated cellular radio (on select models, including our review unit) that connects to Verizon&#8217;s EV-DO data network. Though data plans are still expensive and throughput speeds are occasionally slow, this is a great feature for workers who need to stay connected at all costs.</p>
<p>Priced at $2,299, our ThinkPad X60s review unit featured a solid collection of the latest components, including an Intel Core Duo 1.66GHz processor; 512MB of fast 667MHz RAM; a midsize 80GB, 5,400rpm hard drive; and integrated Intel graphics. Based on its performance on CNET Labs&#8217; mobile benchmarks, the ThinkPad X series realizes some significant performance gains with its Intel Core Duo processor. Its MobileMark score was 28 percent higher than the Pentium M-based Fujitsu LifeBook P7120&#8217;s and 32 percent higher than the Sony VAIO VGN-TX670P&#8217;s; the X60s also bested its predecessor, the 1.5GHz Pentium M-based ThinkPad X41, by 28 percent. Those speed gains are enough to notice with average use and will be particularly useful for multitasking. The X60s&#8217;s 8-hour, 16-minute battery life is the longest we&#8217;ve ever seen&#8211;very impressive, though not quite surprising, given that our review unit&#8217;s price included an 8-cell high-capacity battery. The battery costs $143 if you buy it as an option, and we think it&#8217;s worth it.</p>
<p>Like other ThinkPads, the X60s is backed by either a one-year or a three-year warranty, depending on the configuration you buy, and reasonably priced upgrades are available. Lenovo&#8217;s support Web site includes a handful of troubleshooting topics, as well as the expected driver downloads; the site lacks interactive features such as customer forums or the chance to chat in real time with a technician.</p>
<p>Mobile application performance  (Longer bars indicate better performance)</p>
<p>Lenovo ThinkPad X60s         230<br />
Fujitsu LifeBook P7120         166<br />
Sony VAIO VGN-TX670P       156 </p>
<p>Battery life  (Longer bars indicate better performance)<br />
	BAPCo MobileMark 2002 battery life in minutes<br />
Lenovo ThinkPad X60s          496<br />
Sony VAIO VGN-TX670P        396<br />
Fujitsu LifeBook P7120          348 </p>
<p>System configurations:</p>
<p>Fujitsu LifeBook P7120<br />
Windows XP Professional; 1.2GHz Intel Pentium M ULV 753; 512MB DDR SDRAM 400MHz; Intel 915GM/GMS, 910GML Express 128MB; Toshiba MK6006GAH 60GB 4,200rpm</p>
<p>Lenovo ThinkPad X60s<br />
Windows XP Professional; 1.66GHz Intel Core Duo T2400; 512MB PC5300 DDR2 SDRAM 666MHz; Intel Mobile i945GM Express 128MB (8MB shared); Toshiba MK8032GSX 80GB 5,400rpm</p>
<p>Sony VAIO VGN-TX670P<br />
Windows XP Professional; 1.2GHz Intel Pentium M ULV 753; 512MB DDR SDRAM PC3200 400MHz; Intel 915GM/GMS, 910GML Express 128MB; Toshiba MK6006GAH 60GB 4,200rpm</p>
]]></content:encoded>
			<wfw:commentRss>http://www.xbhao.net/2008-06/lenovo-thinkpad-x60s-video/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Free blogger templates</title>
		<link>http://www.xbhao.net/2008-06/free-blogger-templates/</link>
		<comments>http://www.xbhao.net/2008-06/free-blogger-templates/#comments</comments>
		<pubDate>Wed, 11 Jun 2008 01:24:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[blogger templates]]></category>

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

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

		<guid isPermaLink="false">http://www.xbhao.net/?p=10</guid>
		<description><![CDATA[  

Foliage for Blogger



Category: ajax
Title: Foliage
Author: Derek Punsalan
My rating: 
Downloads: 37881
Live demo
Details and download »
permalink



 

Rounded Blue for Blogger



Category: 2-column
Title: Rounded Blue
Author: Ghyslain Armand
My rating: 
Downloads: 51316
Live demo
Details and download »
permalink



 

Artica for Blogger



Category: ajax
Title: Artica
Author: caljrimmer
My rating: 
Downloads: 41187
Live demo
Details and download »
permalink



 
Green Lush for Blogger


Category: colorful
Title: Green Lush
Author: Yamazaki
My rating: 
Downloads: [...]]]></description>
			<content:encoded><![CDATA[<p><!-- /sbox --> <!-- mainbox --> <!-- peritem --></p>
<div class="peritem">
<h3>Foliage for Blogger</h3>
<div class="item-img"><img style="height: 150px; width: 200px;" src="http://www.bloggertemplates.org/images/24.png" alt="Foliage for Blogger" /></div>
<div class="item-desc">
<ul class="theinfo">
<li><span class="infofield">Category</span><span class="coln">:</span> <a rel="tag" href="http://www.bloggertemplates.org/category/ajax/">ajax</a></li>
<li><span class="infofield">Title</span><span class="coln">:</span> Foliage</li>
<li><span class="infofield">Author</span><span class="coln">:</span> Derek Punsalan</li>
<li><span class="infofield">My rating</span><span class="coln">:</span> <img src="http://www.bloggertemplates.org/images/cts_rating/star-5.gif" alt="5" /></li>
<li><span class="infofield">Downloads</span><span class="coln">:</span> 37881</li>
<li class="info-normal"><a href="http://foliage-for-blogger.blogspot.com/">Live demo</a></li>
<li class="info-normal"><a class="hoi" href="http://www.bloggertemplates.org/review/foliage#myreview">Details and download »</a></li>
<li><a class="permalink" href="http://www.bloggertemplates.org/review/foliage">permalink</a></li>
</ul>
</div>
</div>
<p><!-- peritem --> <!-- peritem --></p>
<div class="peritem">
<h3>Rounded Blue for Blogger</h3>
<div class="item-img"><img style="height: 150px; width: 200px;" src="http://www.bloggertemplates.org/images/23.png" alt="Rounded Blue for Blogger" /></div>
<div class="item-desc">
<ul class="theinfo">
<li><span class="infofield">Category</span><span class="coln">:</span> <a rel="tag" href="http://www.bloggertemplates.org/category/2-column/">2-column</a></li>
<li><span class="infofield">Title</span><span class="coln">:</span> Rounded Blue</li>
<li><span class="infofield">Author</span><span class="coln">:</span> Ghyslain Armand</li>
<li><span class="infofield">My rating</span><span class="coln">:</span> <img src="http://www.bloggertemplates.org/images/cts_rating/star-5.gif" alt="5" /></li>
<li><span class="infofield">Downloads</span><span class="coln">:</span> 51316</li>
<li class="info-normal"><a href="http://rounded-blue-for-blogger.blogspot.com/">Live demo</a></li>
<li class="info-normal"><a class="hoi" href="http://www.bloggertemplates.org/review/rounded-blue#myreview">Details and download »</a></li>
<li><a class="permalink" href="http://www.bloggertemplates.org/review/rounded-blue">permalink</a></li>
</ul>
</div>
</div>
<p><!-- peritem --> <!-- peritem --></p>
<div class="peritem">
<h3>Artica for Blogger</h3>
<div class="item-img"><img style="height: 150px; width: 200px;" src="http://www.bloggertemplates.org/images/22.png" alt="Artica template for Blogger" /></div>
<div class="item-desc">
<ul class="theinfo">
<li><span class="infofield">Category</span><span class="coln">:</span> <a rel="tag" href="http://www.bloggertemplates.org/category/ajax/">ajax</a></li>
<li><span class="infofield">Title</span><span class="coln">:</span> Artica</li>
<li><span class="infofield">Author</span><span class="coln">:</span> caljrimmer</li>
<li><span class="infofield">My rating</span><span class="coln">:</span> <img src="http://www.bloggertemplates.org/images/cts_rating/star-5.gif" alt="5" /></li>
<li><span class="infofield">Downloads</span><span class="coln">:</span> 41187</li>
<li class="info-normal"><a href="http://artica-for-blogger.blogspot.com/">Live demo</a></li>
<li class="info-normal"><a class="hoi" href="http://www.bloggertemplates.org/review/artica#myreview">Details and download »</a></li>
<li><a class="permalink" href="http://www.bloggertemplates.org/review/artica">permalink</a></li>
</ul>
</div>
</div>
<p><!-- peritem --> <!-- peritem --></p>
<h3>Green Lush for Blogger</h3>
<div class="item-img"><img style="height: 150px; width: 200px;" src="http://www.bloggertemplates.org/images/21.png" alt="Green Lush for Blogger" /></div>
<ul class="theinfo">
<li><span class="infofield">Category</span><span class="coln">:</span> <a rel="tag" href="http://www.bloggertemplates.org/category/colorful/">colorful</a></li>
<li><span class="infofield">Title</span><span class="coln">:</span> Green Lush</li>
<li><span class="infofield">Author</span><span class="coln">:</span> Yamazaki</li>
<li><span class="infofield">My rating</span><span class="coln">:</span> <img src="http://www.bloggertemplates.org/images/cts_rating/star-4.gif" alt="4" /></li>
<li><span class="infofield">Downloads</span><span class="coln">:</span> 18791</li>
<li class="info-normal"><a href="http://green-lush.blogspot.com/">Live demo</a></li>
<li class="info-normal"><a class="hoi" href="http://www.bloggertemplates.org/review/green-lush#myreview">Details and download »</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.xbhao.net/2008-06/free-blogger-templates/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
