<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <title>shaw的天空</title>
    <link>http://blog.pixnet.net/shaw</link>
    <description>&lt;center&gt;
&lt;script type=&quot;text/javascript&quot;&gt;&lt;!--
google_ad_client = &quot;pub-0188206517449384&quot;;
/* 468x60, 已建立 2008/3/18 */
google_ad_slot = &quot;2931786892&quot;;
google_ad_width = 468;
google_ad_height = 60;
//--&gt;
&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;
src=&quot;http://pagead2.googlesyndication.com/pagead/show_ads.js&quot;&gt;
&lt;/script&gt;

&lt;br&gt;

&lt;script type=&quot;text/javascript&quot;&gt;&lt;!--
google_ad_client = &quot;pub-0188206517449384&quot;;
/* 468x15, 已建立 2008/3/18 */
google_ad_slot = &quot;1283912191&quot;;
google_ad_width = 468;
google_ad_height = 15;
//--&gt;
&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;
src=&quot;http://pagead2.googlesyndication.com/pagead/show_ads.js&quot;&gt;
&lt;/script&gt;&lt;br&gt;


&lt;script type=&quot;text/javascript&quot;&gt;&lt;!--
google_ad_client = &quot;pub-0188206517449384&quot;;
/* 文字連結 建立於：2008/4/5 */
google_ad_slot = &quot;4645439045&quot;;
google_ad_output = &quot;textlink&quot;;
google_ad_format = &quot;ref_text&quot;;
google_cpa_choice = &quot;&quot;; // on file
//--&gt;
&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;
src=&quot;http://pagead2.googlesyndication.com/pagead/show_ads.js&quot;&gt;
&lt;/script&gt;
&lt;/center&gt;


&lt;div id=&quot;divAdSenseContentScript&quot; style=&quot;display:none;&quot;&gt;
&lt;div style=&quot;text-align:center;&quot;&gt;&lt;br /&gt;
&lt;script type=&quot;text/javascript&quot;&gt;&lt;!--
google_ad_client = &quot;pub-0188206517449384&quot;;
/* 文章內 */
google_ad_slot = &quot;9137210418&quot;;
google_ad_width = 468;
google_ad_height = 60;
//--&gt;
&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;
src=&quot;http://pagead2.googlesyndication.com/pagead/show_ads.js&quot;&gt;
&lt;/script&gt;
&lt;br /&gt;&lt;/div&gt;&lt;/div&gt; 




&lt;script type=&quot;text/javascript&quot;&gt;
/*
 * 作者: Nelson (http://blog.pixnet.net/Nelson)
 * 說明: 讓 Pixnet 的文章自動加入 Google AdSense
 * 備註: 原始程式碼來自 http://blog.xuite.net/emisjerry/tech/11088489，
 *       我將它改成適合 Pixnet 的版本。
 * 版本: v2007/05/06
 * 適用: Pixnet 的各種版型 (Grey, Grey2, Wretch, Roodo, 以及痞客模板 版型)
 * 授權: 自由使用及修改，拿去用之前，
 * 		 麻煩到 http://blog.pixnet.net/Nelson/post/3967606 留個言給我。
 */

/*
 * 檢查網址裡頭有沒有 &quot;/post/&quot; 字串，
 * 有的話就代表是單篇文章。
 */
var isArticle = false;
if (document.URL.indexOf(&quot;/post/&quot;) &gt; 0)
	isArticle = true;

if (isArticle)
{
	if (window.attachEvent)
		window.attachEvent(&apos;onload&apos;, init);
	else
		window.addEventListener(&apos;load&apos;, init, false);
}

function grey()
{
	// &quot;Content&quot; 是文章的主要區塊
	var CONTENT = document.getElementById(&quot;Content&quot;);
	var DIVs = CONTENT.getElementsByTagName(&apos;div&apos;);
	for (var i in DIVs)
	{
		var x = new String(DIVs[i].className);
		if (x.indexOf(&quot;extended&quot;) == 0 || x.indexOf(&quot;footer&quot;) == 0)
		{
			DIVs[i].innerHTML =
				document.getElementById(&quot;divAdSenseContentScript&quot;).innerHTML
				+ DIVs[i].innerHTML;
			break;
		}
	}
}

function grey2()
{
	var DIVs = document.getElementsByTagName(&apos;div&apos;);
	for (var i in DIVs)
	{
		var x = new String(DIVs[i].className);
		if (x.indexOf(&quot;mainEntryfoot&quot;) == 0)
		{
			DIVs[i].innerHTML =
				document.getElementById(&quot;divAdSenseContentScript&quot;).innerHTML
				+ DIVs[i].innerHTML;
			break;
		}
	}
}

function roodo()
{
	var DIVs = document.getElementsByTagName(&apos;div&apos;);
	for (var i in DIVs)
	{
		var x = new String(DIVs[i].className);
		// 檢查 class 是否為 &quot;posted&quot;，是的話就是文章結尾
		if (x.indexOf(&quot;posted&quot;) == 0)
		{
			DIVs[i].innerHTML +=
				document.getElementById(&quot;divAdSenseContentScript&quot;).innerHTML;
			break;
		}
	}
}

function wretch()
{
	// &quot;Content&quot; 是文章的主要區塊
	var CONTENT = document.getElementById(&quot;content&quot;);
	var DIVs = CONTENT.getElementsByTagName(&apos;div&apos;);
	for (var i in DIVs)
	{
		var x = new String(DIVs[i].className);
		// 檢查 class 是否為 &quot;innertext&quot;，是的話就是文章本體
		if (x.indexOf(&quot;innertext&quot;) == 0)
		{
			DIVs[i].innerHTML +=
				document.getElementById(&quot;divAdSenseContentScript&quot;).innerHTML;
			break;
		}
	}
}

function template()
{
	// &quot;Content&quot; 是文章的主要區塊
	var CONTENT = document.getElementById(&quot;article-box&quot;);
	var DIVs = CONTENT.getElementsByTagName(&apos;div&apos;);
	for (var i in DIVs)
	{
		var x = new String(DIVs[i].className);
		if (x.indexOf(&quot;article-footer&quot;) == 0)
		{
			DIVs[i].innerHTML =
				document.getElementById(&quot;divAdSenseContentScript&quot;).innerHTML + DIVs[i].innerHTML;
			break;
		}
	}
}

function init()
{
	var LINKs = document.getElementsByTagName(&apos;link&apos;);
	for (i = 0; i &lt; LINKs.length; i++)
	{
		if (LINKs[i].getAttribute(&apos;rel&apos;) == &quot;stylesheet&quot;)
		{
            var style = LINKs[i].getAttribute(&apos;title&apos;);
            // 根據 stylesheet 的 title 屬性來分辨是哪種版型
            switch (style)
            {
				case &apos;grey&apos;:
				    grey();		break;
				case &apos;grey2&apos;:
				    grey2();	break;
				case &apos;yam&apos;:
				    roodo();	break;
				case &apos;wretch&apos;:
				    wretch();	break;
				default:
				    template(); break;
			}
		}
		break;
	}
}
&lt;/script&gt;</description>
    <pubDate>Sat, 19 Jul 2008 11:41:22 +0800</pubDate>
    <generator>Pixnet Digital Media Corporation</generator>
    <language>zh</language>
    <item>
      <title>[閒聊] 聊聊本週狀況</title>
      <link>http://blog.pixnet.net/shaw/post/20166249</link>
      <comments>http://blog.pixnet.net/shaw/post/20166249</comments>
      <pubDate>Sat, 19 Jul 2008 11:41:22 +0800</pubDate>
      <category>生活鎖碎</category>
      <guid isPermaLink="true">http://blog.pixnet.net/shaw/post/20166249</guid>
      <description>&lt;font size=&quot;3&quot;&gt;從口試完到今天已經過了十天了，這段時間有點忙，&lt;br /&gt;
所以這十天都沒有發文章，今天稍微有空閒一點，&lt;br /&gt;
所以來聊聊一下近況。&lt;br /&gt;
&lt;a href=&quot;http://blog.pixnet.net/shaw/post/20166249&quot; class=&quot;more&quot;&gt;...(繼續閱讀)&lt;/a&gt;&lt;/font&gt;</description>
    </item>
    <item>
      <title>[心情] 終於口試結束了</title>
      <link>http://blog.pixnet.net/shaw/post/19715634</link>
      <comments>http://blog.pixnet.net/shaw/post/19715634</comments>
      <pubDate>Wed, 09 Jul 2008 00:55:16 +0800</pubDate>
      <category>研究相關</category>
      <guid isPermaLink="true">http://blog.pixnet.net/shaw/post/19715634</guid>
      <description>&lt;font size=&quot;3&quot;&gt;昨天歷經1.5小時的口試程序，終於完成論文口試，由於有點小緊張，&lt;br /&gt;
加上事前準備工作不足，造就口試當天呈現忙碌的狀態，一直跑來跑&lt;br /&gt;
去多少影響口試心情，好在在口試前二十分鐘搞定一切。&lt;br /&gt;
&lt;a href=&quot;http://blog.pixnet.net/shaw/post/19715634&quot; class=&quot;more&quot;&gt;...(繼續閱讀)&lt;/a&gt;&lt;/font&gt;</description>
    </item>
    <item>
      <title>[Bless] Tomorrow is a important day.</title>
      <link>http://blog.pixnet.net/shaw/post/19591986</link>
      <comments>http://blog.pixnet.net/shaw/post/19591986</comments>
      <pubDate>Sun, 06 Jul 2008 09:24:48 +0800</pubDate>
      <category>生活鎖碎</category>
      <guid isPermaLink="true">http://blog.pixnet.net/shaw/post/19591986</guid>
      <description>As the title.&lt;br /&gt;
Tomorrow is a very important day.&lt;br /&gt;
Because I would like to hold a master&apos;s degree in oral.&lt;br /&gt;
&lt;a href=&quot;http://blog.pixnet.net/shaw/post/19591986&quot; class=&quot;more&quot;&gt;...(繼續閱讀)&lt;/a&gt;</description>
    </item>
    <item>
      <title>[3C] 網路電話進入戰國時代</title>
      <link>http://blog.pixnet.net/shaw/post/19209039</link>
      <comments>http://blog.pixnet.net/shaw/post/19209039</comments>
      <pubDate>Sat, 28 Jun 2008 12:52:45 +0800</pubDate>
      <category>科技資訊</category>
      <guid isPermaLink="true">http://blog.pixnet.net/shaw/post/19209039</guid>
      <description>&lt;font size=&quot;3&quot;&gt;微軟MSN於本週推出網路電話，號稱比Skype計費便宜，詳見下方&lt;br /&gt;
新聞連結，網路電話正式進入戰國時代。&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;http://blog.pixnet.net/shaw/post/19209039&quot; class=&quot;more&quot;&gt;...(繼續閱讀)&lt;/a&gt;&lt;/font&gt;</description>
    </item>
    <item>
      <title>[隨記] 聊聊近況</title>
      <link>http://blog.pixnet.net/shaw/post/19208594</link>
      <comments>http://blog.pixnet.net/shaw/post/19208594</comments>
      <pubDate>Sat, 28 Jun 2008 12:41:51 +0800</pubDate>
      <category>生活鎖碎</category>
      <guid isPermaLink="true">http://blog.pixnet.net/shaw/post/19208594</guid>
      <description>&lt;font size=&quot;3&quot;&gt;已經一個星期沒有發文了，這個星期忙搬家忙的不可開交，&lt;br /&gt;
利用週末二天的時間6/21、6/22從新豐搬到竹北，雖然很近&lt;br /&gt;
但是由於東西蠻多的，所以蠻累人的，東西只有搬到定點，&lt;br /&gt;
&lt;a href=&quot;http://blog.pixnet.net/shaw/post/19208594&quot; class=&quot;more&quot;&gt;...(繼續閱讀)&lt;/a&gt;&lt;/font&gt;</description>
    </item>
    <item>
      <title>[隨記] 中獎了</title>
      <link>http://blog.pixnet.net/shaw/post/18923707</link>
      <comments>http://blog.pixnet.net/shaw/post/18923707</comments>
      <pubDate>Fri, 20 Jun 2008 00:13:25 +0800</pubDate>
      <category>生活鎖碎</category>
      <guid isPermaLink="true">http://blog.pixnet.net/shaw/post/18923707</guid>
      <description>&lt;font size=&quot;3&quot;&gt;前陣子剛好&lt;a href=&quot;http://blog.pixnet.net/pcuser/post/18891922&quot; target=&quot;_blank&quot;&gt;PCuSER&lt;/a&gt;在Pixnet blog辦抽獎活動，&lt;br /&gt;
隨意推上幾句祝福的話，沒想到在今早收到中獎通知信，&lt;br /&gt;
真是又驚又喜，而且抽中的是攝影書藉，真是Lucky。&lt;br /&gt;
&lt;a href=&quot;http://blog.pixnet.net/shaw/post/18923707&quot; class=&quot;more&quot;&gt;...(繼續閱讀)&lt;/a&gt;&lt;/font&gt;</description>
    </item>
    <item>
      <title>[隨記] 終於找到房子囉~</title>
      <link>http://blog.pixnet.net/shaw/post/18748495</link>
      <comments>http://blog.pixnet.net/shaw/post/18748495</comments>
      <pubDate>Sun, 15 Jun 2008 08:17:13 +0800</pubDate>
      <category>生活鎖碎</category>
      <guid isPermaLink="true">http://blog.pixnet.net/shaw/post/18748495</guid>
      <description>&lt;font size=&quot;3&quot;&gt;經過二星期的找尋，終於找到房子了，在竹北因為有地段的限制，&lt;br /&gt;
加上房地產被高鐵所衝高，要找到便宜又不錯的房子真是難上加難&lt;br /&gt;
，如果在新竹市的話就簡單許多，現在竹北一堆房子都關著蚊子，&lt;br /&gt;
&lt;a href=&quot;http://blog.pixnet.net/shaw/post/18748495&quot; class=&quot;more&quot;&gt;...(繼續閱讀)&lt;/a&gt;&lt;/font&gt;</description>
    </item>
    <item>
      <title>[比賽] 公司保齡球大賽</title>
      <link>http://blog.pixnet.net/shaw/post/18748457</link>
      <comments>http://blog.pixnet.net/shaw/post/18748457</comments>
      <pubDate>Sat, 14 Jun 2008 23:40:36 +0800</pubDate>
      <category>「玩」Just 玩</category>
      <guid isPermaLink="true">http://blog.pixnet.net/shaw/post/18748457</guid>
      <description>&lt;font size=&quot;3&quot;&gt;進來新公司已經二週了，剛好碰上一年一度的運動盛事，每年都會舉辦&lt;br /&gt;
保齡球大賽，不過因為事先已經報名完了，我就當了加油團順便進行拍&lt;br /&gt;
照的任務。&lt;br /&gt;
&lt;a href=&quot;http://blog.pixnet.net/shaw/post/18748457&quot; class=&quot;more&quot;&gt;...(繼續閱讀)&lt;/a&gt;&lt;/font&gt;</description>
    </item>
    <item>
      <title>[笑話] 哈哈一笑</title>
      <link>http://blog.pixnet.net/shaw/post/18535986</link>
      <comments>http://blog.pixnet.net/shaw/post/18535986</comments>
      <pubDate>Mon, 09 Jun 2008 08:57:02 +0800</pubDate>
      <category>「笑」益健康</category>
      <guid isPermaLink="true">http://blog.pixnet.net/shaw/post/18535986</guid>
      <description>&lt;font size=&quot;3&quot;&gt;一日之計在於晨，&lt;br /&gt;
&lt;br /&gt;
所以讓大家笑一笑，才有力氣往前衝~&lt;br /&gt;
&lt;a href=&quot;http://blog.pixnet.net/shaw/post/18535986&quot; class=&quot;more&quot;&gt;...(繼續閱讀)&lt;/a&gt;&lt;/font&gt;</description>
    </item>
    <item>
      <title>[工具] 免費好用的Lingoes靈格斯字典</title>
      <link>http://blog.pixnet.net/shaw/post/18505989</link>
      <comments>http://blog.pixnet.net/shaw/post/18505989</comments>
      <pubDate>Sun, 08 Jun 2008 13:58:39 +0800</pubDate>
      <category>網路軟體工具</category>
      <guid isPermaLink="true">http://blog.pixnet.net/shaw/post/18505989</guid>
      <description>&lt;div align=&quot;center&quot;&gt;&lt;a href=&quot;http://www.lingoes.cn/zh/index.html&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://www.lingoes.cn/zh/images/logo220.png&quot; alt=&quot;靈格斯翻譯家&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;font size=&quot;3&quot;&gt;今天發現一個可以比美Dr.eye的字典工具，而且擴充性也比Dr.eye&lt;br /&gt;
&lt;a href=&quot;http://blog.pixnet.net/shaw/post/18505989&quot; class=&quot;more&quot;&gt;...(繼續閱讀)&lt;/a&gt;&lt;/font&gt;</description>
    </item>
  </channel>
</rss>
