<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Xydw Dot Com</title>
	<atom:link href="http://www.xydw.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.xydw.com</link>
	<description>php cms, php program,php studio</description>
	<lastBuildDate>Sat, 08 Aug 2009 02:32:24 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Valid url encode with googlebot</title>
		<link>http://www.xydw.com/seo-optimization/200908/valid-url-encode-with-googlebot/</link>
		<comments>http://www.xydw.com/seo-optimization/200908/valid-url-encode-with-googlebot/#comments</comments>
		<pubDate>Sat, 08 Aug 2009 02:29:43 +0000</pubDate>
		<dc:creator>luckymouse</dc:creator>
				<category><![CDATA[Web Design & SEO]]></category>

		<guid isPermaLink="false">http://www.xydw.com/?p=119</guid>
		<description><![CDATA[If you are use non alpha characters in URL, you should encode them. It is easy to do this in many program langauge.  I use php to do this:
&#60;?php
$url_arg = urlencode(&#8216;一将功成万骨枯@www.xydw.com&#8217;);
?&#62;
You will get a encoded url arguments:  &#8220;%E4%B8%80%E5%B0%86%E5%8A%9F%E6%88%90%E4%B8%87%E9%AA%A8%E6%9E%AF%40www.xydw.com&#8221;. It is valid url in most of the browsers like IE, FF, Oprea. But if you are [...]]]></description>
			<content:encoded><![CDATA[<p>If you are use non alpha characters in URL, you should encode them. It is easy to do this in many program langauge.  I use php to do this:</p>
<blockquote><p>&lt;?php</p>
<p>$url_arg = urlencode(&#8216;一将功成万骨枯@www.xydw.com&#8217;);</p>
<p>?&gt;</p></blockquote>
<p>You will get a encoded url arguments:  &#8220;%E4%B8%80%E5%B0%86%E5%8A%9F%E6%88%90%E4%B8%87%E9%AA%A8%E6%9E%AF%40www.xydw.com&#8221;. It is valid url in most of the browsers like IE, FF, Oprea. But if you are more insterest in SEO, you will think is it a valid url with googlebot. The answer is NO!</p>
<p>I desgin a non-english site recently. I used the encode url as arguments to get content. I test the site in IE, FF,Oprea. All things are running well. I make a sitemap and submit to google. Soon, I find errors with many 4xx urls in google webmaster tools. I check these urls, they seem vaild urlencode URL. I copy them to browser and try to visit them. It get 404 error too. I login to my site control panel and find these page, visit them. I am very surprise that I can visit them and the url in browser is same as I copy. Why?</p>
<p>I check these urls and codes very carefully. Then I find a very insterest thing that googlebot doing decode URLs is not same as PHP urldecode. Googlebot would think <strong>punctuations</strong> to be characters not encoded urls. Example:</p>
<p><strong></strong></p>
<p><strong>PHP ENCODE URLS: </strong></p>
<p>http://www.xydw.com/?googlebot=%E4%B8%80%E5%B0%86%E5%8A%9F%E6%88%90%E4%B8%87%E9%AA%A8%E6%9E%AF%40www.xydw.com</p>
<p><strong></strong></p>
<p><strong>Googlebot will think it is:</strong></p>
<p>http://www.xydw.com/?googlebot=%E4%B8%80%E5%B0%86%E5%8A%9F%E6%88%90%E4%B8%87%E9%AA%A8%E6%9E%AF@www.xydw.com</p>
<p>Finnaly, if you want to use encode url as arg in your program and valided with googlebot. You should encode them again in your program.</p>
<p><strong><br />
PHP Example:</strong></p>
<blockquote><p>&lt;?php</p>
<p>$googlebot = urlencode(urldecode($_GET['googlebot']));</p>
<p>?&gt;</p></blockquote>
<p><strong><br />
You must keep my site link: http://www.xydw.com,  If you copy my article.</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.xydw.com/seo-optimization/200908/valid-url-encode-with-googlebot/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>DP UserMap (访问者地图)</title>
		<link>http://www.xydw.com/world/200907/dp-usermap-%e8%ae%bf%e9%97%ae%e8%80%85%e5%9c%b0%e5%9b%be/</link>
		<comments>http://www.xydw.com/world/200907/dp-usermap-%e8%ae%bf%e9%97%ae%e8%80%85%e5%9c%b0%e5%9b%be/#comments</comments>
		<pubDate>Wed, 29 Jul 2009 23:41:11 +0000</pubDate>
		<dc:creator>luckymouse</dc:creator>
				<category><![CDATA[In The World]]></category>

		<guid isPermaLink="false">http://www.xydw.com/?p=116</guid>
		<description><![CDATA[DP是国外一个非常有名的纯网络技术交流论坛。没有YY，没有MJJ，也没有门户复制来的激情新闻，也没有为了充数不停灌水的机械手……无聊的时候截下了某一时刻的亚洲区访问者地图，如下：

没什么好说的，默哀……
]]></description>
			<content:encoded><![CDATA[<p>DP是国外一个非常有名的纯网络技术交流论坛。没有YY，没有MJJ，也没有门户复制来的激情新闻，也没有为了充数不停灌水的机械手……无聊的时候截下了某一时刻的亚洲区访问者地图，如下：</p>
<p><img class="alignnone size-full wp-image-117" title="dp-usermap" src="http://www.xydw.com/wp-content/uploads/2009/07/dp-usermap.jpg" alt="dp-usermap" width="351" height="201" /></p>
<p>没什么好说的，默哀……</p>
]]></content:encoded>
			<wfw:commentRss>http://www.xydw.com/world/200907/dp-usermap-%e8%ae%bf%e9%97%ae%e8%80%85%e5%9c%b0%e5%9b%be/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[php]vsprintf VS preg_replace</title>
		<link>http://www.xydw.com/codes/200905/vsprintf-vs-preg_replace/</link>
		<comments>http://www.xydw.com/codes/200905/vsprintf-vs-preg_replace/#comments</comments>
		<pubDate>Tue, 26 May 2009 00:53:03 +0000</pubDate>
		<dc:creator>luckymouse</dc:creator>
				<category><![CDATA[Codes & Scripts]]></category>

		<guid isPermaLink="false">http://www.xydw.com/?p=114</guid>
		<description><![CDATA[I want to formart a simple string in PHP. There are two ways to do this. One is vsprintf and another preg_replace. But who is faster?  I have tested both of them. I find that vsprintf run more faster while can parse string in many formart.  So why not use vsprintf to replcae preg_replace if [...]]]></description>
			<content:encoded><![CDATA[<p>I want to formart a simple string in PHP. There are two ways to do this. One is vsprintf and another preg_replace. But who is faster?  I have tested both of them. I find that vsprintf run more faster while can parse string in many formart.  So why not use vsprintf to replcae preg_replace if it is possible?</p>
<blockquote><p>&lt;?php<br />
//test start<br />
$start_time = microtime();</p>
<p>$f = &#8216;who is faster? Name: %1$s, Id: %2$s, Year: %3$s, Home: %4$s&#8217;;<br />
$arg = array(&#8216;Lucky Mouse&#8217;, &#8216;000000001(Xydw.com)&#8217;, &#8216;20090526&#8242;, &#8216;China On Earth 地球 &#8211; 中国&#8217;);</p>
<p>//preg_replace append 0 first<br />
array_unshift($arg, &#8216;null&#8217;);</p>
<p>for($i = 0; $i &lt; 1000; $i ++) {<br />
$a[] = preg_replace(&#8220;/%([0-9]+)\\\$s/e&#8221;, &#8216;$arg[$1]&#8216;, $f);<br />
//$a[] = vsprintf($f, $arg);<br />
}<br />
echo $a[0].&#8217;&lt;br /&gt;&#8217;;</p>
<p>//end test<br />
$end_time =  explode(&#8221; &#8220;, microtime());<br />
$end_time = $end_time[0] + $end_time[1];<br />
$start_time = explode(&#8221; &#8220;, $start_time);<br />
$start_time = $start_time[0] + $start_time[1];<br />
echo number_format($end_time &#8211; $start_time, 5);<br />
?&gt;</p></blockquote>
<p>vsprintf  finish in about : 0.01 s</p>
<p>preg_repace finish in about: 0.08s</p>
]]></content:encoded>
			<wfw:commentRss>http://www.xydw.com/codes/200905/vsprintf-vs-preg_replace/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>an idea to fix innerHTML to table in IE (firefox)</title>
		<link>http://www.xydw.com/codes/200905/an-idea-to-fix-innerhtml-to-table-in-ie-firefox/</link>
		<comments>http://www.xydw.com/codes/200905/an-idea-to-fix-innerhtml-to-table-in-ie-firefox/#comments</comments>
		<pubDate>Sat, 09 May 2009 01:40:04 +0000</pubDate>
		<dc:creator>luckymouse</dc:creator>
				<category><![CDATA[Codes & Scripts]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[innerHTML]]></category>
		<category><![CDATA[table]]></category>

		<guid isPermaLink="false">http://www.xydw.com/?p=105</guid>
		<description><![CDATA[I like to use innerHTML . It is fast and easy to use. But there are some problems under different browsers, such as innerHTML can&#8217;t use to insert to table elements under IE.
I have search on google with this issue. There are no good idea to fix innerHTML to table. Someone use Jquery append to [...]]]></description>
			<content:encoded><![CDATA[<p>I like to use innerHTML . It is fast and easy to use. But there are some problems under different browsers, such as innerHTML can&#8217;t use to insert to table elements under IE.</p>
<p>I have search on google with this issue. There are no good idea to fix innerHTML to table. Someone use Jquery append to instead. I prefer to use myself script for it is more light weight and fit for me. There are some other ideas beside use libs as Jquery. Someone use &#8220;&lt;div&gt;&#8221; tags between &#8220;&lt;td&gt;&#8221;, then innerHTML to &#8220;&lt;div&gt;&#8221;. This is useful, but can&#8217;t effect on table.  Also we can use InsertRows functions while this is not I prefer. Then how to use innerHTML to table or table elements perfectly ?</p>
<p>Finally, I have an good idea to fix this issue in IE and also tested under firefox. <strong>My idea is to replace whole table</strong>. Table elements are <strong>readonly</strong> under IE. So why we avoid table when use innerHTML ?</p>
<p>Example:</p>
<blockquote><p>&lt;div id=&#8221;mytable&#8221;&gt;<br />
&lt;table&gt;<br />
&lt;tr&gt;<br />
&lt;td&gt;domain&lt;/td&gt;<br />
&lt;td&gt;pr&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;tr&gt;<br />
&lt;td&gt;xydw.com&lt;/td&gt;<br />
&lt;td&gt;5&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;/table&gt;<br />
&lt;/div&gt;</p></blockquote>
<blockquote><p>We would insert a row at bottom.</p>
<p>&lt;script type=&#8221;text/javascript&#8221;&gt;<br />
//get table div<br />
<strong> var table = document.getElementById(&#8216;mytable&#8217;);</strong></p>
<p>//store old table data, replace tbody, tbody will auto add under IE<br />
<strong> var old_data = table.innerHTML.replace(/&lt;\/*tbody&gt;/i, &#8221;);</strong></p>
<p>//the data we want to add<br />
<strong> var add_data = &#8216;&lt;tr&gt;&lt;td&gt;lovecms.com&lt;/td&gt;&lt;td&gt;4&lt;/td&gt;&lt;/tr&gt;&#8217;;</strong></p>
<p>//new data, find the tag we want to insert<br />
//we insert into end of the table, so find table<br />
//you can insert to anywhere, just find the tag<br />
<strong> var new_data = old_data.replace(/&lt;\/table&gt;/i, add_data + &#8216;&lt;/table&gt;&#8217;);</strong></p>
<p>//use my favourite innerHTML here<br />
//both IE and firefox is OK!<br />
<strong> table.innerHTML = new_data;</strong><br />
&lt;/script&gt;</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.xydw.com/codes/200905/an-idea-to-fix-innerhtml-to-table-in-ie-firefox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>brand new world 海贼王主题歌</title>
		<link>http://www.xydw.com/world/200904/brand-new-world-%e6%b5%b7%e8%b4%bc%e7%8e%8b%e4%b8%bb%e9%a2%98%e6%ad%8c/</link>
		<comments>http://www.xydw.com/world/200904/brand-new-world-%e6%b5%b7%e8%b4%bc%e7%8e%8b%e4%b8%bb%e9%a2%98%e6%ad%8c/#comments</comments>
		<pubDate>Sat, 25 Apr 2009 02:33:33 +0000</pubDate>
		<dc:creator>luckymouse</dc:creator>
				<category><![CDATA[In The World]]></category>
		<category><![CDATA[Add new tag]]></category>
		<category><![CDATA[中文]]></category>
		<category><![CDATA[罗马注音]]></category>

		<guid isPermaLink="false">http://www.xydw.com/?p=103</guid>
		<description><![CDATA[作词： MIZUE
作曲：オオヤギヒロオ
歌： V6
Brand-New World
新しい梦の始まり
ゴール目指す旅は続いてゆく いつだって
Brand-New Mind
情热を抱いて次の扉(どあ)まで
未だ见ぬ世界へ さぁ 疾れ
微尘もない望みの星にも
この手伸ばし 无理矢理掴んだり
暗云な仆らは何処にいたい？
群れの中 孤立してく意味
一人でも孤独じゃない理由(わけ)
繋がるなら时间は地図になる
ありのまま Let&#8217;s go and Try
进めよ  使命はOne way
あるがままDo it! Ready?
最后は愿いに届くんだ
Brand-New World  新しい梦の始まり
ゴール目指す旅は続いてゆく いつだって
Brand-New Mind 情热を抱いて次の扉まで
未だ见ぬ世界へ さぁ  疾れ
この上ない喜び信じて 底なしの苦しみ感じて
もっとタフになりたがる魂
それゆえに Don&#8217;t stop and  Cry
今こそ into the new day
そのカケラ Wanted my key
最初に自分に闻くんだ
Brand-New Dream 叶えたい梦があるなら
何度だってはばたけるはずさ 君だって
Brand-New Days
开いている次の扉の向こう
辉く世界に さぁ 行こう
ありのまま Try and go on…
进めよ 使命はOne  way
あるがまま Do [...]]]></description>
			<content:encoded><![CDATA[<p>作词： MIZUE<br />
作曲：オオヤギヒロオ<br />
歌： V6</p>
<p>Brand-New World<br />
新しい梦の始まり<br />
ゴール目指す旅は続いてゆく いつだって<br />
Brand-New Mind<br />
情热を抱いて次の扉(どあ)まで<br />
未だ见ぬ世界へ さぁ 疾れ<br />
微尘もない望みの星にも<br />
この手伸ばし 无理矢理掴んだり<br />
暗云な仆らは何処にいたい？<br />
群れの中 孤立してく意味<br />
一人でも孤独じゃない理由(わけ)<br />
繋がるなら时间は地図になる</p>
<p>ありのまま Let&#8217;s go and Try<br />
进めよ  使命はOne way<br />
あるがままDo it! Ready?<br />
最后は愿いに届くんだ</p>
<p>Brand-New World  新しい梦の始まり<br />
ゴール目指す旅は続いてゆく いつだって<br />
Brand-New Mind 情热を抱いて次の扉まで<br />
未だ见ぬ世界へ さぁ  疾れ</p>
<p>この上ない喜び信じて 底なしの苦しみ感じて<br />
もっとタフになりたがる魂</p>
<p>それゆえに Don&#8217;t stop and  Cry<br />
今こそ into the new day<br />
そのカケラ Wanted my key<br />
最初に自分に闻くんだ</p>
<p>Brand-New Dream 叶えたい梦があるなら<br />
何度だってはばたけるはずさ 君だって<br />
Brand-New Days<br />
开いている次の扉の向こう<br />
辉く世界に さぁ 行こう</p>
<p>ありのまま Try and go on…<br />
进めよ 使命はOne  way<br />
あるがまま Do it! Ready? 最后は愿いに届くんだ</p>
<p>Brand-New World 新しい梦の始まり<br />
ゴール目指す旅は続いてゆく いつだって<br />
Brand-New Mind<br />
情热を抱いて次の扉まで<br />
未だ见ぬ世界へ さぁ 疾れ</p>
<p>Brand-new world<br />
Atarashii yume no hajimari<br />
Gooru mezasu tabi  wa<br />
Tsuzuiteyuku itsu datte<br />
Brand-new mind<br />
jyounetsu o daite<br />
tsugi no DOA made<br />
Mada minu sekai e saa, hashire<br />
Mijin mo nai nozomi  no hoshi ni mo<br />
kono te nobashi muriyari tsukan dari<br />
yamikumo na bokura  wa doko ni itai?</p>
<p>Ari no mama Let&#8217;s go and try<br />
susume yo shimei wa  One way<br />
Aru ga mama Do it! Ready?<br />
Saigo wa negai ni todoku n da</p>
<p>Brand-new world Atarashii yume no hajimari<br />
Gooru mezasu tabi wa  Tsuzuiteyuku itsu datte<br />
Brand-new mind jyuunutsu o daite tsugi no DOA made<br />
Mada minu sekai e saa, hashire</p>
<p>感谢panshang提供中文翻译</p>
<p>Brand-New  World 新的梦想的开始<br />
朝向目的地继续旅程 无论任何时候<br />
Brand-New Mind 怀抱热情来到下一道门扉<br />
走向未知的世界 来吧  快步跑</p>
<p>即使是不见踪影的希望之星<br />
还是伸出手 硬要将它抓在手里<br />
盲目的我们 到底想待在哪里？</p>
<p>在人群里  孤立自我的意义<br />
独自一人却不孤独的理由<br />
如果能相系在一起时间就会化作地图</p>
<p>自然做自已 Let&#8217;s go and Try<br />
前进吧 使命是One way<br />
不要多强求 Do it! Ready？<br />
最后将传达给心愿</p>
<p>Brand-New World  新的梦想的开始<br />
朝向目的地继续旅程 无论任何时候<br />
Brand-New Mind 怀抱热情来到下一道门扉<br />
走向未知的世界 来吧 快步跑</p>
<p>相信至高无上的喜悦<br />
感受无底无尽的痛苦<br />
渴望变得更坚强的灵魂</p>
<p>所以说 Don&#8217;t stop and Cry<br />
就是现在 into the new day<br />
那一块碎片 Wanted my key<br />
最先要扪心问自已</p>
<p>Brand-New  Dream 只要有想要实现的梦想<br />
无论多少次都能展翅飞翔 你也一样<br />
Brand-New Days 在打开的下一道门扉另一边<br />
走向光辉的世界 来吧 咱们走</p>
<p>自然做自已 Let&#8217;s go and Try<br />
前进吧 使命是One way<br />
不要多强求  Do it! Ready？<br />
最后将传达给心愿</p>
<p>Brand-New World 新的梦想的开始<br />
朝向目的地继续旅程 无论任何时候<br />
Brand-New Mind 怀抱热情来到下一道门扉<br />
走向未知的世界 来吧 快步跑</p>
]]></content:encoded>
			<wfw:commentRss>http://www.xydw.com/world/200904/brand-new-world-%e6%b5%b7%e8%b4%bc%e7%8e%8b%e4%b8%bb%e9%a2%98%e6%ad%8c/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Gold tips to earn more from google adsense</title>
		<link>http://www.xydw.com/seo-optimization/200903/gold-tips-to-earn-more-from-google-adsense/</link>
		<comments>http://www.xydw.com/seo-optimization/200903/gold-tips-to-earn-more-from-google-adsense/#comments</comments>
		<pubDate>Sat, 21 Mar 2009 01:33:28 +0000</pubDate>
		<dc:creator>luckymouse</dc:creator>
				<category><![CDATA[Web Design & SEO]]></category>

		<guid isPermaLink="false">http://www.xydw.com/seo-optimization/200903/gold-tips-to-earn-more-from-google-adsense/</guid>
		<description><![CDATA[* Ad Location &#8211; &#8220;the middle, above the fold location perform best.&#8221; Also &#8220;if you have an article page with a long body of text, the bottom of that article is actually pretty successful&#8221;
 * Ad Formats &#8211; &#8220;the top three formats are the 336&#215;280 that you see on the page; the 300&#215;250 medium rectangle; [...]]]></description>
			<content:encoded><![CDATA[<p><strong>* Ad Location</strong> &#8211; &#8220;the middle, above the fold location perform best.&#8221; Also &#8220;if you have an article page with a long body of text, the bottom of that article is actually pretty successful&#8221;<br />
<strong> * Ad Formats</strong> &#8211; &#8220;the top three formats are the 336&#215;280 that you see on the page; the 300&#215;250 medium rectangle; and then the 160&#215;600 wide skyscraper.&#8221; Additionally &#8220;the wider ad formats are doing better than the other ones and the reason is that they actually take up fewer lines. And so with every additional line, you have a chance of losing that interested user.&#8221;<br />
<strong> * Ad Colors</strong> &#8211; Pick colors that blend well with the site. Matches the background color, and compliments the site. Make them feel like a part of the site. They give an example where a customer went from blended background to yellow, and clicks dropped 65%<br />
<strong> * Ad Blindness</strong> &#8211; if the colors stick out too much, readers may immediately identify them as ads and not even look at them. Also frequent readers may stop reading ads so you could alternate positioning and colors to get their attention. &#8220;The more you blend in with the site, the less chance that ad blindness will occur.&#8221;<br />
<strong> * Experiment</strong> &#8211; this was a big theme in the webinar echoed by all experts. Use channels to test different colors, positioning, and formats to find out what works best. They show that you can more than double your revenue just by finding the right color, position, format combo.<br />
<strong> * Image Ads</strong> &#8211; If you want to maximize revenue they recommend turning them on. I personally disable them in my account, because I find them too distracting/annoying to the user. Yes you may increase your CPC, but you will probably decrease impressions over time.<br />
<strong> * Link Units</strong> &#8211; Don&#8217;t take up much space, and also &#8220;allows the user to refine what they&#8217;re interested in. So if they may not be interested in specific ads on your page, they might be interested in a particular topic, and by clicking on a link unit and a link in the link unit, they&#8217;ll be able to specify that they&#8217;re interested in that specific topic and get a lot more options and variety on the ads that might appear.&#8221; I also bet google remembers what they click on and then tries to generate better ads for the page&#8230; just my speculation.<br />
<strong> * AdSense For Search</strong> &#8211; You can use this for your site search, and you get a percentage of ad clicks.<br />
<strong> * Focus on Content</strong> &#8211; Duh!<br />
<strong> * Don&#8217;t click on your own ads</strong> &#8211; One of the callers asked the question &#8220;I was just noticing that someone asked about clicking on their own ads and it says you&#8217;re not supposed to. And I don&#8217;t remember reading that. And I occasionally do click on the ads&#8230; So is that detrimental in some way?&#8221; &#8211; I can&#8217;t believe they said that to google. Google&#8217;s response was: &#8220;Yes, that&#8217;s sort of chief among the terms and conditions&#8221;.<br />
<strong> * Impression Counter</strong> &#8211; Google confirmed that Page Impressions are counted when a public service ad (or alternate ad url or color) is displayed.<br />
<strong> * Your site is unique</strong> &#8211; all these things may not matter, the best location, format, and color is different for every site. So again, go experiment.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.xydw.com/seo-optimization/200903/gold-tips-to-earn-more-from-google-adsense/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hot search keywords of Otc 2008</title>
		<link>http://www.xydw.com/seo-optimization/200810/hot-search-keywords-of-otc-2008/</link>
		<comments>http://www.xydw.com/seo-optimization/200810/hot-search-keywords-of-otc-2008/#comments</comments>
		<pubDate>Fri, 31 Oct 2008 02:01:01 +0000</pubDate>
		<dc:creator>luckymouse</dc:creator>
				<category><![CDATA[Web Design & SEO]]></category>

		<guid isPermaLink="false">http://www.xydw.com/?p=99</guid>
		<description><![CDATA[






1.
heather wiz


2.
birkin bag


3.
retronym


4.
engrade


5.
septa


6.
repairing aluminum wiring


7.
halloween pumpkin stencils


8.
hill buzz


9.
clarence blake


10.
septa regional rail


11.
quickbooks crm


12.
party city


13.
halloween 2008


14.
rahm emanuel


15.
last minute halloween costumes


16.
craig robinson


17.
ezekiel bread


18.
cool pumpkin designs


19.
homemade costumes


20.
lincoln financial field seating chart


21.
jack o lantern templates


22.
scary pumpkin faces


23.
quail man


24.
pumpkin carving ideas


25.
myspace halloween comments








26.
jello shots


27.
fff housewife


28.
free pumpkin carving templates


29.
the real exorcist


30.
quick and easy halloween costumes


31.
phillies parade tickets


32.
baking pumpkin seeds


33.
niki taylor


34.
blood initiation


35.
jackolantern designs


36.
mischief [...]]]></description>
			<content:encoded><![CDATA[<table class="hotLayout" border="0" width="100%">
<tbody>
<tr>
<td class="hotColumn" width="25%">
<table class="Z2_list" border="0">
<tbody>
<tr>
<td class="num">1.</td>
<td>heather wiz</td>
</tr>
<tr>
<td class="num">2.</td>
<td>birkin bag</td>
</tr>
<tr>
<td class="num">3.</td>
<td>retronym</td>
</tr>
<tr>
<td class="num">4.</td>
<td>engrade</td>
</tr>
<tr>
<td class="num">5.</td>
<td>septa</td>
</tr>
<tr>
<td class="num">6.</td>
<td>repairing aluminum wiring</td>
</tr>
<tr>
<td class="num">7.</td>
<td>halloween pumpkin stencils</td>
</tr>
<tr>
<td class="num">8.</td>
<td>hill buzz</td>
</tr>
<tr>
<td class="num">9.</td>
<td>clarence blake</td>
</tr>
<tr>
<td class="num">10.</td>
<td>septa regional rail</td>
</tr>
<tr>
<td class="num">11.</td>
<td>quickbooks crm</td>
</tr>
<tr>
<td class="num">12.</td>
<td>party city</td>
</tr>
<tr>
<td class="num">13.</td>
<td>halloween 2008</td>
</tr>
<tr>
<td class="num">14.</td>
<td>rahm emanuel</td>
</tr>
<tr>
<td class="num">15.</td>
<td>last minute halloween costumes</td>
</tr>
<tr>
<td class="num">16.</td>
<td>craig robinson</td>
</tr>
<tr>
<td class="num">17.</td>
<td>ezekiel bread</td>
</tr>
<tr>
<td class="num">18.</td>
<td>cool pumpkin designs</td>
</tr>
<tr>
<td class="num">19.</td>
<td>homemade costumes</td>
</tr>
<tr>
<td class="num">20.</td>
<td>lincoln financial field seating chart</td>
</tr>
<tr>
<td class="num">21.</td>
<td>jack o lantern templates</td>
</tr>
<tr>
<td class="num">22.</td>
<td>scary pumpkin faces</td>
</tr>
<tr>
<td class="num">23.</td>
<td>quail man</td>
</tr>
<tr>
<td class="num">24.</td>
<td>pumpkin carving ideas</td>
</tr>
<tr>
<td class="num">25.</td>
<td>myspace halloween comments</td>
</tr>
</tbody>
</table>
</td>
<td class="hotColumn" width="25%">
<table class="Z2_list" border="0">
<tbody>
<tr>
<td class="num">26.</td>
<td>jello shots</td>
</tr>
<tr>
<td class="num">27.</td>
<td>fff housewife</td>
</tr>
<tr>
<td class="num">28.</td>
<td>free pumpkin carving templates</td>
</tr>
<tr>
<td class="num">29.</td>
<td>the real exorcist</td>
</tr>
<tr>
<td class="num">30.</td>
<td>quick and easy halloween costumes</td>
</tr>
<tr>
<td class="num">31.</td>
<td>phillies parade tickets</td>
</tr>
<tr>
<td class="num">32.</td>
<td>baking pumpkin seeds</td>
</tr>
<tr>
<td class="num">33.</td>
<td>niki taylor</td>
</tr>
<tr>
<td class="num">34.</td>
<td>blood initiation</td>
</tr>
<tr>
<td class="num">35.</td>
<td>jackolantern designs</td>
</tr>
<tr>
<td class="num">36.</td>
<td>mischief night</td>
</tr>
<tr>
<td class="num">37.</td>
<td>marianne markowitz</td>
</tr>
<tr>
<td class="num">38.</td>
<td>lg lotus</td>
</tr>
<tr>
<td class="num">39.</td>
<td>obama tax plan calculator</td>
</tr>
<tr>
<td class="num">40.</td>
<td>septa train schedule</td>
</tr>
<tr>
<td class="num">41.</td>
<td>michael goldfarb</td>
</tr>
<tr>
<td class="num">42.</td>
<td>costume ideas</td>
</tr>
<tr>
<td class="num">43.</td>
<td>kenny boynton</td>
</tr>
<tr>
<td class="num">44.</td>
<td>homemade halloween costume ideas</td>
</tr>
<tr>
<td class="num">45.</td>
<td>scary stories</td>
</tr>
<tr>
<td class="num">46.</td>
<td>peraves monotracer</td>
</tr>
<tr>
<td class="num">47.</td>
<td>original washington monument</td>
</tr>
<tr>
<td class="num">48.</td>
<td>halloween parade nyc</td>
</tr>
<tr>
<td class="num">49.</td>
<td>allegiant air</td>
</tr>
<tr>
<td class="num">50.</td>
<td>lakshminivasa rao nerusu</td>
</tr>
</tbody>
</table>
</td>
<td class="hotColumn" width="25%">
<table class="Z2_list" border="0">
<tbody>
<tr>
<td class="num">51.</td>
<td>pumpkin patterns</td>
</tr>
<tr>
<td class="num">52.</td>
<td>halloween music</td>
</tr>
<tr>
<td class="num">53.</td>
<td>kendrick meek</td>
</tr>
<tr>
<td class="num">54.</td>
<td>bob larson</td>
</tr>
<tr>
<td class="num">55.</td>
<td>burney lamar</td>
</tr>
<tr>
<td class="num">56.</td>
<td>party city halloween costumes</td>
</tr>
<tr>
<td class="num">57.</td>
<td>jackolantern faces</td>
</tr>
<tr>
<td class="num">58.</td>
<td>halloween jokes</td>
</tr>
<tr>
<td class="num">59.</td>
<td>engrade.com students</td>
</tr>
<tr>
<td class="num">60.</td>
<td>angels and demons trailer</td>
</tr>
<tr>
<td class="num">61.</td>
<td>where s waldo</td>
</tr>
<tr>
<td class="num">62.</td>
<td>tiffany shepis</td>
</tr>
<tr>
<td class="num">63.</td>
<td>kraftfoods.com/online</td>
</tr>
<tr>
<td class="num">64.</td>
<td>raggedy ann</td>
</tr>
<tr>
<td class="num">65.</td>
<td>80 s fashion</td>
</tr>
<tr>
<td class="num">66.</td>
<td>gang initiation</td>
</tr>
<tr>
<td class="num">67.</td>
<td>guiding light</td>
</tr>
<tr>
<td class="num">68.</td>
<td>jackolantern stencils</td>
</tr>
<tr>
<td class="num">69.</td>
<td>www.phillies.com</td>
</tr>
<tr>
<td class="num">70.</td>
<td>septa.com</td>
</tr>
<tr>
<td class="num">71.</td>
<td>all hallows eve</td>
</tr>
<tr>
<td class="num">72.</td>
<td>ricky s nyc</td>
</tr>
<tr>
<td class="num">73.</td>
<td>pippi longstocking costume</td>
</tr>
<tr>
<td class="num">74.</td>
<td>trick or treat times</td>
</tr>
<tr>
<td class="num">75.</td>
<td>happy halloween</td>
</tr>
</tbody>
</table>
</td>
<td class="hotColumn" width="25%">
<table class="Z2_list" border="0">
<tbody>
<tr>
<td class="num">76.</td>
<td>puking pumpkin</td>
</tr>
<tr>
<td class="num">77.</td>
<td>halloween pranks</td>
</tr>
<tr>
<td class="num">78.</td>
<td>patco</td>
</tr>
<tr>
<td class="num">79.</td>
<td>scary movies</td>
</tr>
<tr>
<td class="num">80.</td>
<td>diane kruger</td>
</tr>
<tr>
<td class="num">81.</td>
<td>lisa loring</td>
</tr>
<tr>
<td class="num">82.</td>
<td>christopher barrios</td>
</tr>
<tr>
<td class="num">83.</td>
<td>halloween songs</td>
</tr>
<tr>
<td class="num">84.</td>
<td>jackolantern patterns</td>
</tr>
<tr>
<td class="num">85.</td>
<td>elizabeth edwards</td>
</tr>
<tr>
<td class="num">86.</td>
<td>devils night</td>
</tr>
<tr>
<td class="num">87.</td>
<td>real good toys</td>
</tr>
<tr>
<td class="num">88.</td>
<td>pumpkin masters</td>
</tr>
<tr>
<td class="num">89.</td>
<td>spin lock performance</td>
</tr>
<tr>
<td class="num">90.</td>
<td>red vs blue reconstruction 19</td>
</tr>
<tr>
<td class="num">91.</td>
<td>carl reiner</td>
</tr>
<tr>
<td class="num">92.</td>
<td>halloween cards</td>
</tr>
<tr>
<td class="num">93.</td>
<td>the new party</td>
</tr>
<tr>
<td class="num">94.</td>
<td>wendy button</td>
</tr>
<tr>
<td class="num">95.</td>
<td>halloween word search</td>
</tr>
<tr>
<td class="num">96.</td>
<td>halloween porn</td>
</tr>
<tr>
<td class="num">97.</td>
<td>rice krispie treat recipe</td>
</tr>
<tr>
<td class="num">98.</td>
<td>cookie diet</td>
</tr>
<tr>
<td class="num">99.</td>
<td>uw fire</td>
</tr>
<tr>
<td class="num">100.</td>
<td>popcorn balls</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
]]></content:encoded>
			<wfw:commentRss>http://www.xydw.com/seo-optimization/200810/hot-search-keywords-of-otc-2008/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>15 Google Search Tricks</title>
		<link>http://www.xydw.com/world/200810/15-google-search-tricks/</link>
		<comments>http://www.xydw.com/world/200810/15-google-search-tricks/#comments</comments>
		<pubDate>Fri, 31 Oct 2008 01:59:08 +0000</pubDate>
		<dc:creator>luckymouse</dc:creator>
				<category><![CDATA[In The World]]></category>

		<guid isPermaLink="false">http://www.xydw.com/?p=97</guid>
		<description><![CDATA[1. Google Calculator
How this works is your type an equation into the search field and it will give you the result. Example: 2*4 &#8211; 23*5 + 1000. After you type this in and click search or enter it will give you the result. You can do addition (+), subtraction (-), multiplication (*), division (/), to [...]]]></description>
			<content:encoded><![CDATA[<p><strong>1. Google Calculator</strong><br />
How this works is your type an equation into the search field and it will give you the result. Example: 2*4 &#8211; 23*5 + 1000. After you type this in and click search or enter it will give you the result. You can do addition (+), subtraction (-), multiplication (*), division (/), to the power of (^), and square root of a number (sqrt).</p>
<p><strong>2. Dictionary Definitions</strong><br />
You can get the definition of a word by typing “define:” followed by the word. Example: define: canucks. This will get you the definition of canucks.</p>
<p><strong>3. Search for a specific title</strong><br />
Suppose you came across a website you thought was awesome but you forgot to bookmark the site and only remembered the title of it and wanted to find it again. Well you can search by title with Google to hopefully find that website a bit more easily. All you need to do is type “intitle: then the title”. By doing this you will only get results of websites with that line in the title.</p>
<p><strong>4. Google Converter</strong><br />
This is a very useful one if you need to convert something from one unit to another unit quickly. All you need to do is type something like “5km in miles” and it will do the conversion for you. I also use it a lot for changing from Fahrenheit to Celsius (25F to C).</p>
<p><strong>5. Compare Currencies</strong><br />
Google search engine has a built in currency converter so you can go from one currency to another. This is done by simply typing something like “1 USD in CAN” and press enter and it will do the conversion for you.</p>
<p><strong>6. Weather Updates</strong><br />
If you want to know what the weather will be like in your area you can type something like “London weather” and it will give you the conditions in that area.</p>
<p><strong>7. Search for specific file types</strong><br />
If you want to find a certain type of file on the Internet it is normally pretty difficult to find what you are looking for but with the use of Google search you can find file types a bit more easily. You can search for file types by doing something like “Guide to build a good website filetypept”.  That will look for files with that name and the file type of a powerpoint presentation.</p>
<p><strong>8. Search on a particular website</strong><br />
If you want to search a particular website from Google you can do this by typing “hitch DVD site:<a href="http://www.xydw.com" target="_blank">www.xydw.com”</a>.  By typing in site: and then the website it will search that website for what you have type before site:.</p>
<p><strong>9. Get the local time anywhere</strong><br />
Want to know the time in London now? You can do that by typing “what time is it London” in the search bar. You can also do it by typing “time (location)” without the quotes.<br />
<strong><br />
10. Remove unwanted search results</strong><br />
Have you ever wanted to search for something in particular but wanted to remove some of the search results? You can do this by type -something after the search term to remove it from the search results. Example: James Bond -movie. What that would do is remove the search results of James Bond that included the movie so you would find other things like news, books, etc.</p>
<p><strong>11. Search for URLs</strong><br />
Want to search for a particular URL? You can do so by putting a “_, . , -” in between the words instead of a space. Example: What_are_you_talking_about. This would search for URLs that included those words.</p>
<p><strong>12. Track Flight Status</strong><br />
Want to track a particular flight status? You can do that if you know the airline and flight number. You just need to type in the airline and the flight number to get the status. Example: British airways flight 5. This will bring you the results of this flight from this particular airline.</p>
<p><strong>13. Search Google Groups by the subject line</strong><br />
You can search Google groups by subject line with this little trick. Type “insubject:then topic here” and you will get the Google groups with that subject line.</p>
<p><strong>14. Find Related Sites</strong><br />
This trick will probably be familiar to a bunch of people but is helpful for finding related sites. What you do is type “related:<a href="http://www.site.com%e2%80%9d/" target="_blank">www.site.com”</a>.  So if you wanted to find an alternative to the website your are looking at that you may have liked you can use this feature.<br />
<strong><br />
15. Find Links to a specific URL</strong><br />
This is pretty helpful for finding backlinks to your website. If you want to find out what websites link to your website you can type “link:<a href="http://www.yoursite.com%e2%80%9d/" target="_blank">www.yoursite.com”</a> and you will get all the results of the websites that link back to yours.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.xydw.com/world/200810/15-google-search-tricks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>写博客赚美元（英文）</title>
		<link>http://www.xydw.com/world/200810/xieblogzhuanmeiyuan/</link>
		<comments>http://www.xydw.com/world/200810/xieblogzhuanmeiyuan/#comments</comments>
		<pubDate>Thu, 23 Oct 2008 10:10:33 +0000</pubDate>
		<dc:creator>luckymouse</dc:creator>
				<category><![CDATA[In The World]]></category>
		<category><![CDATA[mei yuan]]></category>
		<category><![CDATA[money]]></category>
		<category><![CDATA[美元]]></category>
		<category><![CDATA[赚钱]]></category>

		<guid isPermaLink="false">http://www.xydw.com/?p=91</guid>
		<description><![CDATA[【Luckymouse ## xydw.com原创攻略，转载请保留本站链接】
看到网上有一些写BLOG赚钱的，不过报酬很低。最近发现一个不错的英文网站写BLOG赚钱，报酬很高，从几美元到几十美元，支持PP付款。不过首先你要有一个英文BLOG，最好还要有PR的，而且能写简单的英文，至少不让别人觉得是火星文^_^。一般一篇BLOG要求最少200~400个单词。
攻略：
注册点击这里：http://www.linkworth.com/?a=17316
（这个是我的下线链接哈，你也可以直接访问该站）
1. 注册时选择帐号类型，PUBLISHER 或者 第三个，资料都可以修改的。注意填写正确的邮件地址。
2. 注册成功后进入后台，选择MY BLOG -&#62; SUBMIT BLOG，具体的链接：https://act.linkworth.com/index.php?prt_menu_selection=prt_sites_submit_blog 。在这里添加你的博客，注意选择正确的分类(Category)和关键词(Tags)。最好不要胡乱填写，特别是夸大信息，这个是要等管理人员审核的。
3. 一般24小时就能通过审核了。由于美国和我们的时差差不多12个小时，所以你白天提交的得等一个晚上才能审核。通过审核之后，在MY products 选 link post， 子菜单里找到search linkpost job。首页也有该链接的。里面有广告商要求写的BLOG内容。绿色的是你的BLOG可以参与并且不用审核的，黄色的你的BLOG可以参与但要广告商审核。所以你可以在黄色和绿色的板块里点Accept。
4. 按照广告商的要求写一篇博客并且发布到你的博客上。注意一般都要按照广告商的要求加入他们的链接，一般是一到连个链接，关键字也要按照他们的要求。而且不要在你的日志里提到这是付费广告，也不要提及LINK WORTH这个站。一般都要求单词数200~400，这个你可以看他具体的要求。
5. 写好博客之后，还要提交你刚才写的网址。具体的是My Ads -&#62; Link Post，选择 Pending 里找到你刚才接受的写日志任务。填好你的日志的具体网址，很简单的评论，就可以提交了(Complete)。
6. 关于付款。最好使用已经认证了的PP，现在PP可以用国内银行认证。另外，你还需要提交纳税信息（Tax info），选择：Certification of No U.S. Activities。（在美国没有经营活动，不扣税）
7. 这个站上还可以出售网站的链接广告之类赚钱。但是一般得PR或者ALEXA不错的站容易卖出广告。
祝愿大家都能赚多多的美元，有问题欢迎在下面留言。注册点击这里：http://www.linkworth.com/?a=17316
【Luckymouse ## xydw.com原创攻略，转载请保留本站链接】
]]></description>
			<content:encoded><![CDATA[<p>【Luckymouse ## xydw.com原创攻略，转载请保留本站链接】</p>
<p>看到网上有一些写BLOG赚钱的，不过报酬很低。最近发现一个不错的英文网站写BLOG赚钱，报酬很高，从几美元到几十美元，支持PP付款。不过首先你要有一个英文BLOG，最好还要有PR的，而且能写简单的英文，至少不让别人觉得是火星文^_^。一般一篇BLOG要求最少200~400个单词。</p>
<p><strong>攻略：</strong></p>
<p>注册点击这里：<a href="http://www.linkworth.com/?a=17316" target="_blank">http://www.linkworth.com/?a=17316</a></p>
<p>（这个是我的下线链接哈，你也可以直接访问该站）</p>
<p>1. 注册时选择帐号类型，PUBLISHER 或者 第三个，资料都可以修改的。注意填写正确的邮件地址。</p>
<p>2. 注册成功后进入后台，选择MY BLOG -&gt; SUBMIT BLOG，具体的链接：https://act.linkworth.com/index.php?prt_menu_selection=prt_sites_submit_blog 。在这里添加你的博客，注意选择正确的分类(<strong>Category</strong>)和关键词(<strong>Tags</strong>)。最好不要胡乱填写，特别是夸大信息，这个是要等管理人员审核的。</p>
<p>3. 一般24小时就能通过审核了。由于美国和我们的时差差不多12个小时，所以你白天提交的得等一个晚上才能审核。通过审核之后，在MY products 选 link post， 子菜单里找到search linkpost job。首页也有该链接的。里面有广告商要求写的BLOG内容。绿色的是你的BLOG可以参与并且不用审核的，黄色的你的BLOG可以参与但要广告商审核。所以你可以在黄色和绿色的板块里点Accept。</p>
<p>4. 按照广告商的要求写一篇博客并且发布到你的博客上。<strong>注意一般都要按照广告商的要求加入他们的链接</strong>，一般是一到连个链接，关键字也要按照他们的要求。而且不要在你的日志里提到这是付费广告，也不要提及LINK WORTH这个站。一般都要求单词数200~400，这个你可以看他具体的要求。</p>
<p>5. 写好博客之后，还要提交你刚才写的网址。具体的是My Ads -&gt; Link Post，选择 Pending 里找到你刚才接受的写日志任务。填好你的日志的具体网址，很简单的评论，就可以提交了(Complete)。</p>
<p>6. <strong>关于付款。</strong>最好使用已经认证了的PP，现在PP可以用国内银行认证。另外，你还需要提交纳税信息（Tax info），选择：<span style="text-decoration: underline;"><strong>Certification of No U.S. Activities</strong></span>。（在美国没有经营活动，不扣税）</p>
<p>7. 这个站上还可以出售网站的链接广告之类赚钱。但是一般得PR或者ALEXA不错的站容易卖出广告。</p>
<p>祝愿大家都能赚多多的美元，有问题欢迎在下面留言。注册点击这里：<a href="http://www.linkworth.com/?a=17316" target="_blank">http://www.linkworth.com/?a=17316</a></p>
<p>【Luckymouse ## xydw.com原创攻略，转载请保留本站链接】</p>
]]></content:encoded>
			<wfw:commentRss>http://www.xydw.com/world/200810/xieblogzhuanmeiyuan/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>xydw Gray WP Theme</title>
		<link>http://www.xydw.com/seo-optimization/200810/xydw-gray-wp-theme/</link>
		<comments>http://www.xydw.com/seo-optimization/200810/xydw-gray-wp-theme/#comments</comments>
		<pubDate>Thu, 09 Oct 2008 00:30:33 +0000</pubDate>
		<dc:creator>luckymouse</dc:creator>
				<category><![CDATA[Web Design & SEO]]></category>

		<guid isPermaLink="false">http://www.xydw.com/?p=88</guid>
		<description><![CDATA[Theme Name: xydw blog
Theme URI: http://www.xydw.com/
Description: php studio.
Version: 1.0.0
Author: luckymouse
Author URI: http://www.xydw.com
You can use it free , but you must keep the link to xydw.com at the bottom.
Download: xydw wp theme.
]]></description>
			<content:encoded><![CDATA[<p>Theme Name: xydw blog<br />
Theme URI: http://www.xydw.com/<br />
Description: php studio.<br />
Version: 1.0.0<br />
Author: luckymouse<br />
Author URI: http://www.xydw.com</p>
<div class="wp-caption alignnone" style="width: 525px"><img title="WP Gray Theme" src="http://www.xydw.com/wp-content/themes/xydw/screenshot.png" alt="WP Gray Theme" width="515" height="337" /><p class="wp-caption-text">WP Gray Theme</p></div>
<p>You can use it free , but you must keep the link to xydw.com at the bottom.</p>
<p><a href="http://www.xydw.com/wp-content/uploads/2008/10/xydw.zip">Download: xydw wp theme.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.xydw.com/seo-optimization/200810/xydw-gray-wp-theme/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
