<?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>Phanix's Blog &#187; 電腦網路</title>
	<atom:link href="http://blog.phanix.idv.tw/archives/category/%e9%9b%bb%e8%85%a6%e7%b6%b2%e8%b7%af/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.phanix.idv.tw</link>
	<description></description>
	<lastBuildDate>Tue, 07 Feb 2012 01:03:45 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>C# 處理 facebook JSON Serialized Data</title>
		<link>http://blog.phanix.idv.tw/archives/2011/07/19/962/</link>
		<comments>http://blog.phanix.idv.tw/archives/2011/07/19/962/#comments</comments>
		<pubDate>Tue, 19 Jul 2011 02:30:21 +0000</pubDate>
		<dc:creator>Phanix</dc:creator>
				<category><![CDATA[學習工作]]></category>
		<category><![CDATA[工作]]></category>
		<category><![CDATA[程式]]></category>
		<category><![CDATA[網路應用]]></category>
		<category><![CDATA[電腦網路]]></category>
		<category><![CDATA[.net]]></category>
		<category><![CDATA[c#]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[JSON]]></category>
		<category><![CDATA[programming]]></category>

		<guid isPermaLink="false">http://blog.phanix.idv.tw/?p=962</guid>
		<description><![CDATA[當透過 access token 去 facebook 抓取資料時，回傳的資料將以 JSON 的方式編碼，在 C# 裡頭可以用 JavaScriptSerializer 來處理，下面是個很懶惰的處理方式，不需要另外先去設計與宣告一個符合 facebook JSON 格式的 class object 來儲存資料，反正需要的時候再來針對 Key 另外處理即可。 using System.Web.Script.Serialization; using System.Collections; using System.IO; private void ProcessFBJSON() { JavaScriptSerializer jss = new JavaScriptSerializer(); string json; StreamReader sr = new StreamReader(@"C:\file.txt", Encoding.Default); json = sr.ReadToEnd(); sr.Close(); Dictionary dicSer = jss.Deserialize(json); traceDic(dicSer); } private void [...]]]></description>
			<content:encoded><![CDATA[<p>當透過 access token 去 facebook 抓取資料時，回傳的資料將以 JSON 的方式編碼，在 C# 裡頭可以用 JavaScriptSerializer 來處理，下面是個很懶惰的處理方式，不需要另外先去設計與宣告一個符合 facebook JSON 格式的 class object 來儲存資料，反正需要的時候再來針對 Key 另外處理即可。</p>
<p><span id="more-962"></span></p>
<pre>using System.Web.Script.Serialization;
using System.Collections;
using System.IO;

private void ProcessFBJSON()
{
    JavaScriptSerializer jss = new JavaScriptSerializer();

    string json;

    StreamReader sr = new StreamReader(@"C:\file.txt", Encoding.Default);
    json = sr.ReadToEnd();
    sr.Close();

    Dictionary<string, object> dicSer = jss.Deserialize<Dictionary<string, object>>(json);

    traceDic(dicSer);
}

private void traceDic(Dictionary<string, object> dic)
{
    foreach (KeyValuePair<string, object> p in dic)
    {
        if (p.Value is String)
        {
            textBox1.Text = textBox1.Text + p.Key + ": " + p.Value + "\r\n";
        }
        else if (p.Value is ArrayList)
        {
            textBox1.Text = textBox1.Text + p.Key + ": {\r\n";
            traceArrayList((ArrayList)(p.Value));
            textBox1.Text = textBox1.Text + "}\r\n";
        }
        else if (p.Value is Dictionary<string, object>)
        {
            textBox1.Text = textBox1.Text + p.Key + ": [{\r\n";
            traceDic((Dictionary<string, object>)(p.Value));
            textBox1.Text = textBox1.Text + "}]\r\n";
        }
        else if (p.Value is int || p.Value is float || p.Value is double)
        {
            textBox1.Text = textBox1.Text + p.Key + ": " + p.Value.ToString() + "\r\n";
        }
        else
        {
            MessageBox.Show("dictionary: " + p.Value.GetType().ToString());
        }
    }
}

private void traceArrayList(ArrayList al)
{
    for (int i = 0; i < al.Count; i++)
    {
        if (al[i] is String)
        {
            textBox1.Text = textBox1.Text + "   " + al[i].ToString() + "\r\n";
        }
        else if (al[i] is Dictionary<string, object>)
        {
            traceDic((Dictionary<string, object>)(al[i]));
        }
        else
        {
            MessageBox.Show("arrlist: " + al[i].GetType().ToString());
        }
    }
}</pre>
<p><script type="text/javascript"><!--
google_ad_client = "pub-7434619175264093";
google_ad_width = 468;
google_ad_height = 60;
google_ad_format = "468x60_as";
google_ad_type = "text_image";
google_ad_channel = "";
//--></script>
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p> ]]></content:encoded>
			<wfw:commentRss>http://blog.phanix.idv.tw/archives/2011/07/19/962/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Yahoo! is closing Delicious&#8230; !!!</title>
		<link>http://blog.phanix.idv.tw/archives/2010/12/17/881/</link>
		<comments>http://blog.phanix.idv.tw/archives/2010/12/17/881/#comments</comments>
		<pubDate>Fri, 17 Dec 2010 08:07:15 +0000</pubDate>
		<dc:creator>Phanix</dc:creator>
				<category><![CDATA[網路應用]]></category>
		<category><![CDATA[電腦網路]]></category>
		<category><![CDATA[social bookmark]]></category>
		<category><![CDATA[social tagging]]></category>
		<category><![CDATA[Web 2.0]]></category>
		<category><![CDATA[網路服務]]></category>

		<guid isPermaLink="false">http://blog.phanix.idv.tw/?p=881</guid>
		<description><![CDATA[早上從布丁的 Facebook 跟 DK 大神那邊看到的消息&#8230; Delicious 被列在 Sunset 分類裡面，是準備被關閉的 service 之一，我想會被 Yahoo! 關掉最大的原因應該是沒有賺錢。從 2005 年 Y! 買下 delicious 之後，應該有試著要找可以從中獲利的方式，但是無奈找不到，又沒辦法像其他的 social tagging 或 personal resource management (PRM) service provider 一樣可以藉由 premier service 來賺錢，所以自然就&#8230; 該搬去哪邊呢？Evernote, PinBoard, Licorize, diigo？其中 PinBoard 是最像 delicious 的，但是要註冊手續費(為了防堵 spam tagging / bookmarking)，而 diigo 跟 Evernote 有備份網頁的功能，Licorize 不僅像 PRM 更有點像是便利貼般的工作記事服務。 另外，如果 delicious 關掉之後，最大的 social [...]]]></description>
			<content:encoded><![CDATA[<p>早上從布丁的 Facebook 跟 <a href="http://blog.gslin.org/archives/2010/12/17/2392/yahoo-%e8%a6%81%e9%97%9c%e9%96%89-delicious" target="_blank">DK 大神</a>那邊看到的消息&#8230;<br />
<span id="more-881"></span><br />
<img src="http://i.imgur.com/Pekdy.jpg"><br />
Delicious 被列在 Sunset 分類裡面，是準備被關閉的 service 之一，我想會被 Yahoo! 關掉最大的原因應該是沒有賺錢。從 2005 年 Y! 買下 delicious 之後，應該有試著要找可以從中獲利的方式，但是無奈找不到，又沒辦法像其他的 social tagging 或 personal resource management (PRM) service provider 一樣可以藉由 premier service 來賺錢，所以自然就&#8230;</p>
<p>該搬去哪邊呢？<a href="https://www.evernote.com/" target="_blank">Evernote</a>, <a href="http://pinboard.in/" target="_blank">PinBoard</a>, <a href="http://licorize.com/" target="_blank">Licorize</a>, <a href="http://www.diigo.com/" target="_blank">diigo</a>？其中 PinBoard 是最像 delicious 的，但是要註冊手續費(為了防堵 spam tagging / bookmarking)，而 diigo 跟 Evernote 有備份網頁的功能，Licorize 不僅像 PRM 更有點像是便利貼般的工作記事服務。</p>
<p>另外，如果 delicious 關掉之後，最大的 social bookmark 網站會是哪一個？(靠，讓我很想寫程式開始慢慢掃 delicious 的資料回來了&#8230; )</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.phanix.idv.tw/archives/2010/12/17/881/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>DOS batch ADSL dial and disconnect</title>
		<link>http://blog.phanix.idv.tw/archives/2010/11/26/862/</link>
		<comments>http://blog.phanix.idv.tw/archives/2010/11/26/862/#comments</comments>
		<pubDate>Fri, 26 Nov 2010 11:56:53 +0000</pubDate>
		<dc:creator>Phanix</dc:creator>
				<category><![CDATA[學習工作]]></category>
		<category><![CDATA[程式]]></category>
		<category><![CDATA[網路應用]]></category>
		<category><![CDATA[電腦網路]]></category>
		<category><![CDATA[ADSL]]></category>
		<category><![CDATA[batch]]></category>
		<category><![CDATA[dos]]></category>
		<category><![CDATA[撥號]]></category>
		<category><![CDATA[自動撥號]]></category>

		<guid isPermaLink="false">http://blog.phanix.idv.tw/?p=862</guid>
		<description><![CDATA[把 ADSL 撥號跟斷線做成 Batch (.bat) 檔。 什麼時候可以用？當用浮動IP ADSL，想要跳IP掃網頁的時候。 @echo off rem 定義 ADSL 撥號名稱, ID, Password set adsl=預先設置號的ADSL撥號名稱 set adslid=YOUR_ID set adslpw=YOUR_PASSWORD :start rem 斷線 / disconnect Rasdial %adsl% /disconnect rem 撥號連線 / dial Rasdial %adsl% %adslid% %adslpw%]]></description>
			<content:encoded><![CDATA[<p>把 ADSL 撥號跟斷線做成 Batch (.bat) 檔。<br />
什麼時候可以用？當用浮動IP ADSL，想要跳IP掃網頁的時候。 <img src='http://blog.phanix.idv.tw/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </p>
<p><span id="more-862"></span></p>
<pre>@echo off
rem 定義 ADSL 撥號名稱, ID, Password
set adsl=預先設置號的ADSL撥號名稱
set adslid=YOUR_ID
set adslpw=YOUR_PASSWORD

:start
rem 斷線 / disconnect
Rasdial %adsl% /disconnect

rem 撥號連線 / dial
Rasdial %adsl% %adslid% %adslpw%</pre>
]]></content:encoded>
			<wfw:commentRss>http://blog.phanix.idv.tw/archives/2010/11/26/862/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Weird ASUS P5KR</title>
		<link>http://blog.phanix.idv.tw/archives/2009/08/11/716/</link>
		<comments>http://blog.phanix.idv.tw/archives/2009/08/11/716/#comments</comments>
		<pubDate>Tue, 11 Aug 2009 07:24:29 +0000</pubDate>
		<dc:creator>Phanix</dc:creator>
				<category><![CDATA[電腦網路]]></category>
		<category><![CDATA[asus]]></category>
		<category><![CDATA[P5KR]]></category>
		<category><![CDATA[RAID]]></category>
		<category><![CDATA[主機板]]></category>
		<category><![CDATA[華碩]]></category>
		<category><![CDATA[電腦硬體]]></category>

		<guid isPermaLink="false">http://blog.phanix.idv.tw/archives/2009/08/11/716/</guid>
		<description><![CDATA[太早起床不是一件好事&#8230;. 今天早上五點半被外頭清理垃圾的聲音吵醒，依照以往經驗再躺回去睡著的機率很低，所以索性起床來看東西，順便檢查一下昨天放在遠端機器上跑的程式結果如何。但，不幸的事情就這樣發生了，無法登入&#8230; 這時候還心想大概是遠端登入的 service 死掉了吧？等到早上八點機房可以進得去的時候再去重開機好了&#8230; 不料在 console 也無法登入&#8230; 所以只好按下了 reset&#8230; 而重開機之後看起來似乎一切正常，但 SQL server 卻噴了一堆錯誤訊息&#8230; 檢查結果居然 RAID 5 不見了！！！！！真的很擔心資料就這樣全部掰掰&#8230; @@ 仔細檢查之後發現，怎麼在 BIOS 跟 RAID chip 上的設定都不見了，不過看了一下個硬碟都還正常運作，所以再把 RAID 5 重新設定回來就好了。 雖然是虛驚一場，不過莫名其妙地 RAID 就這樣消失還蠻可怕的&#8230;. =_____=]]></description>
			<content:encoded><![CDATA[<p>太早起床不是一件好事&#8230;.</p>
<p><span id="more-716"></span></p>
<p>今天早上五點半被外頭清理垃圾的聲音吵醒，依照以往經驗再躺回去睡著的機率很低，所以索性起床來看東西，順便檢查一下昨天放在遠端機器上跑的程式結果如何。但，不幸的事情就這樣發生了，無法登入&#8230; 這時候還心想大概是遠端登入的 service 死掉了吧？等到早上八點機房可以進得去的時候再去重開機好了&#8230;</p>
<p>不料在 console 也無法登入&#8230; 所以只好按下了 reset&#8230;</p>
<p>而重開機之後看起來似乎一切正常，但 SQL server 卻噴了一堆錯誤訊息&#8230; 檢查結果居然 RAID 5 不見了！！！！！真的很擔心資料就這樣全部掰掰&#8230; @@</p>
<p>仔細檢查之後發現，怎麼在 BIOS 跟 RAID chip 上的設定都不見了，不過看了一下個硬碟都還正常運作，所以再把 RAID 5 重新設定回來就好了。 <img src='http://blog.phanix.idv.tw/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p>雖然是虛驚一場，不過莫名其妙地 RAID 就這樣消失還蠻可怕的&#8230;. =_____=</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.phanix.idv.tw/archives/2009/08/11/716/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>原來天空中有這麼多飛機!!</title>
		<link>http://blog.phanix.idv.tw/archives/2009/06/02/691/</link>
		<comments>http://blog.phanix.idv.tw/archives/2009/06/02/691/#comments</comments>
		<pubDate>Mon, 01 Jun 2009 23:03:24 +0000</pubDate>
		<dc:creator>Phanix</dc:creator>
				<category><![CDATA[網路應用]]></category>
		<category><![CDATA[閒聊嘴炮]]></category>
		<category><![CDATA[電腦網路]]></category>
		<category><![CDATA[airplane]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[youtube]]></category>
		<category><![CDATA[航線]]></category>
		<category><![CDATA[飛機]]></category>

		<guid isPermaLink="false">http://blog.phanix.idv.tw/archives/2009/06/02/691/</guid>
		<description><![CDATA[從 Patrick 那邊看到的，全球 24 小時空中飛機飛行圖 下面這兩個 FedEx 在 Memphis 貨物交換中心的也很有趣，可以看到飛機為了躲不良天候時的飛行樣子，感覺好像是一堆螞蟻&#8230; XD]]></description>
			<content:encoded><![CDATA[<p>從 Patrick 那邊看到的，全球 24 小時空中飛機飛行圖<br />
<object width="640" height="385"><param name="movie" value="http://www.youtube.com/v/o4g930pm8Ms&#038;hl=en&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/o4g930pm8Ms&#038;hl=en&#038;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="640" height="385"></embed></object></p>
<p>下面這兩個 FedEx 在 Memphis 貨物交換中心的也很有趣，可以看到飛機為了躲不良天候時的飛行樣子，感覺好像是一堆螞蟻&#8230; XD<br />
<object width="640" height="505"><param name="movie" value="http://www.youtube.com/v/39eq5lgq9TA&#038;hl=en&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/39eq5lgq9TA&#038;hl=en&#038;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="640" height="505"></embed></object></p>
<p><object width="640" height="505"><param name="movie" value="http://www.youtube.com/v/kRcDvJE5HZ8&#038;hl=en&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/kRcDvJE5HZ8&#038;hl=en&#038;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="640" height="505"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.phanix.idv.tw/archives/2009/06/02/691/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Abandoned World</title>
		<link>http://blog.phanix.idv.tw/archives/2009/04/10/645/</link>
		<comments>http://blog.phanix.idv.tw/archives/2009/04/10/645/#comments</comments>
		<pubDate>Fri, 10 Apr 2009 07:32:46 +0000</pubDate>
		<dc:creator>Phanix</dc:creator>
				<category><![CDATA[學習工作]]></category>
		<category><![CDATA[工作]]></category>
		<category><![CDATA[研究]]></category>
		<category><![CDATA[閒聊嘴炮]]></category>
		<category><![CDATA[電腦網路]]></category>
		<category><![CDATA[2009]]></category>
		<category><![CDATA[California]]></category>
		<category><![CDATA[network]]></category>
		<category><![CDATA[Santa Cruz]]></category>
		<category><![CDATA[service]]></category>
		<category><![CDATA[USA]]></category>
		<category><![CDATA[加州]]></category>
		<category><![CDATA[服務中斷]]></category>
		<category><![CDATA[網路]]></category>
		<category><![CDATA[美國]]></category>
		<category><![CDATA[通訊]]></category>

		<guid isPermaLink="false">http://blog.phanix.idv.tw/archives/2009/04/10/645/</guid>
		<description><![CDATA[Early this morning, a fiber optic cable from Santa Cruz to San Francisco area is severed. When I woke up at 5 a.m. (Apr. 9, 2009) for water, I found the network is down for a while, but I had no idea about what is wrong actually. After I got to the lab, the network [...]]]></description>
			<content:encoded><![CDATA[<p>Early this morning, a fiber optic cable from Santa Cruz to San Francisco area is severed.</p>
<p><span id="more-645"></span></p>
<p>When I woke up at 5 a.m. (Apr. 9, 2009) for water, I found the network is down for a while, but I had no idea about what is wrong actually. After I got to the lab, the network connection was still not work. I checked the connection status, and traceroute results tell me that the network is down out of UCSC.</p>
<p>The official website of UCSC said that a cable is severed, and the network was only available inter UCSC. I pondered there may be a place in downtown able to access Internet, so I took the bus, got off campus and asked several coffee shops. Disappointedly, all shops said the network was all down in the whole downtown, including the tele-network. So, the whole Santa Cruz county became an Abandoned world virtually.</p>
<p>I finally decided to stay in a coffee shop to do some console works. During those hours, I found some interesting phenomenon, there were fewer customers using computers, and nobody using a cellphone for communication on street. Instead, more people talked and read and listened to the radio broadcast.</p>
<p>It is an interesting and joyful scene, and indeed another kind of peace. However, I still hope the network service can come back as soon as possible. (Well, the network is back around midnight&#8230;)</p>
<p>BTW, I think this is the day I listen to the radio for longest time during my stay in USA.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.phanix.idv.tw/archives/2009/04/10/645/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Completely Turn-off Revision in WordPress 2.6+</title>
		<link>http://blog.phanix.idv.tw/archives/2009/03/03/614/</link>
		<comments>http://blog.phanix.idv.tw/archives/2009/03/03/614/#comments</comments>
		<pubDate>Tue, 03 Mar 2009 00:06:55 +0000</pubDate>
		<dc:creator>Phanix</dc:creator>
				<category><![CDATA[blog]]></category>
		<category><![CDATA[電腦網路]]></category>
		<category><![CDATA[plug-in]]></category>
		<category><![CDATA[revision]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://blog.phanix.idv.tw/?p=614</guid>
		<description><![CDATA[從 WordPress 2.6 之後，就開始提供了 revision 的功能，雖然很貼心，可是每次的 autosave 都會建立一個 revision 版本，使得資料庫及文章編號成長的速度都變快許多，所以就有許多人想辦法來解決這個問題。 一開始我是參考廖大寫的方法，在 wp-config.php 中加上一行程式碼，或者安裝 Disable Revisions 或 No Revisions。 但是對我這種還是會去編輯過去已經發表的文章的人來說，這樣還是不夠的，因為如果去編輯「已經發表的文章」，我發現還是會建立一個 revision&#8230; 。原本已經打算手動改 wp-includes/post.php 了，幸好尋尋覓覓之後找到了 WP-CMS Post Control 這個 plug-in，一勞永逸把 autosave 跟 revision 通通關掉乾脆多了。]]></description>
			<content:encoded><![CDATA[<p>從 WordPress 2.6 之後，就開始提供了 revision 的功能，雖然很貼心，可是每次的 autosave 都會建立一個 revision 版本，使得資料庫及文章編號成長的速度都變快許多，所以就有許多人想辦法來解決這個問題。</p>
<p>一開始我是參考<a href="http://blog.ijliao.info/archives/2008/11/27/3631/" target="_blank">廖大寫的方法</a>，在 wp-config.php 中加上一行程式碼，或者安裝 <a href="http://wordpress.org/extend/plugins/disable-revisions/" target="_blank">Disable Revisions</a> 或 <a href="http://www.hostscope.com/wordpress-plugins/norevisions_wordpress_plugin" target="_blank">No Revisions</a>。</p>
<p>但是對我這種還是會去編輯過去已經發表的文章的人來說，這樣還是不夠的，因為如果去編輯「已經發表的文章」，我發現還是會建立一個 revision&#8230; 。原本已經打算手動改 wp-includes/post.php 了，幸好尋尋覓覓之後找到了 <a href="http://wordpress.org/extend/plugins/wp-cms-post-control/" target="_blank">WP-CMS Post Control</a> 這個 plug-in，一勞永逸把 autosave 跟 revision 通通關掉乾脆多了。</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.phanix.idv.tw/archives/2009/03/03/614/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ctrl-Tab &#8212; a great Firefox Add-on</title>
		<link>http://blog.phanix.idv.tw/archives/2009/02/07/568/</link>
		<comments>http://blog.phanix.idv.tw/archives/2009/02/07/568/#comments</comments>
		<pubDate>Sat, 07 Feb 2009 06:42:03 +0000</pubDate>
		<dc:creator>Phanix</dc:creator>
				<category><![CDATA[網路應用]]></category>
		<category><![CDATA[軟體]]></category>
		<category><![CDATA[電腦網路]]></category>
		<category><![CDATA[add-ons]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[tab]]></category>
		<category><![CDATA[分頁]]></category>

		<guid isPermaLink="false">http://blog.phanix.idv.tw/?p=568</guid>
		<description><![CDATA[If you are a &#8220;tab-holic&#8221; and usually open a mass of tabs, you will love this cutie. (L) 如果你是個tab(分頁)重度使用者，老是愛開一大堆 tab ，那一定會喜歡這玩意。 Well, I love the tab function of Firefox, that makes me feel easy to browse some urls after submitting a query to a search engine. However, a lot of tabs also make me hard [...]]]></description>
			<content:encoded><![CDATA[<p>If you are a &#8220;tab-holic&#8221; and usually open a mass of tabs, you will love this cutie. (L)</p>
<p>如果你是個tab(分頁)重度使用者，老是愛開一大堆 tab ，那一定會喜歡這玩意。</p>
<p><span id="more-568"></span></p>
<p>Well, I love the tab function of Firefox, that makes me feel easy to browse some urls after submitting a query to a search engine. However, a lot of tabs also make me hard to switch between them or arrange them. And this Firefox Add-on, <a href="https://addons.mozilla.org/en-US/firefox/addon/5244" target="_blank">Ctrl-Tab</a>, does a great job to solve my problem.</p>
<p>我非常喜歡 Firefox 所提供的分頁功能，當透過搜尋引擎找資料要開啟多個url時非常有用。但，當開啟的分頁過多的時候，在分頁之間切換或者該如何去管理這些分頁也成了一個大問題。而 <a href="https://addons.mozilla.org/en-US/firefox/addon/5244" target="_blank">Ctrl-Tab</a> 這個 Add-on 則是大大有幫助。</p>
<p><a title="ctrl-tab (a Firefox add-on) by Phanix, on Flickr" href="http://www.flickr.com/photos/phanix/3259867088/"><img src="http://farm4.static.flickr.com/3032/3259867088_27e7d4de6c_o.png" alt="ctrl-tab (a Firefox add-on)" width="690" /></a></p>
<p>After install and restart Firefox, you can press Ctrl-Tab to switch tabs (with snippet view of each tab). Furthermore, you can use Ctrl-Shift-A (Shift-Cmd-A) or Ctrl-Q to show a grid snippet view of tabs. In this grid view, you can search tab by keyword, switch to or close a tab by mouse click. Really easy, intuitive and cool!!!!</p>
<p>安裝並重新啟動Firefox之後，就可以按下Ctrl-Tab 來切換分頁，同時還可以看到分頁畫面的縮圖。此外，還可以透過Ctrl-Shift-A (Cmd-Shift-A) or Ctrl-Q 來叫出所有 tab 的縮圖，在這棋盤狀排列的畫面上就可以輸入關鍵字來找tab，或者利用滑鼠來挑選或關閉 tab。真是直覺又好用啊！！</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.phanix.idv.tw/archives/2009/02/07/568/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Photo on Schmap</title>
		<link>http://blog.phanix.idv.tw/archives/2009/01/17/540/</link>
		<comments>http://blog.phanix.idv.tw/archives/2009/01/17/540/#comments</comments>
		<pubDate>Fri, 16 Jan 2009 19:46:00 +0000</pubDate>
		<dc:creator>Phanix</dc:creator>
				<category><![CDATA[攝影]]></category>
		<category><![CDATA[網路應用]]></category>
		<category><![CDATA[自己拍]]></category>
		<category><![CDATA[電腦網路]]></category>
		<category><![CDATA[guide]]></category>
		<category><![CDATA[map]]></category>
		<category><![CDATA[schmap]]></category>
		<category><![CDATA[Seattle]]></category>
		<category><![CDATA[traveling]]></category>
		<category><![CDATA[website]]></category>
		<category><![CDATA[地圖]]></category>
		<category><![CDATA[導覽]]></category>
		<category><![CDATA[旅遊]]></category>
		<category><![CDATA[網站]]></category>
		<category><![CDATA[西雅圖]]></category>

		<guid isPermaLink="false">http://blog.phanix.idv.tw/?p=540</guid>
		<description><![CDATA[之前被 invite 的西雅圖照片在 Schmap 的 Seattle Guide (6th ed.) 上頭刊出了。 早上收到 Schmap 寄來的信&#8230; &#8230; I am delighted to let you know that your two submitted photos have been selected for inclusion in the newly released sixth edition of our Schmap Seattle Guide &#8230; 很棒的是 Schmap 也有 iphone 版本，對於遊客來講真的很方便。而我的照片在這邊跟這邊。而要看網頁版的也可以到 Seattle Central Library 跟 Olympic Sculpture Park 這兩個導覽網頁去看。 更有趣的是 Schmap 還提供了可以放在網頁上的導覽版本。 而這邊有人寫了一篇關於 Schmap!旅遊指南 [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://blog.phanix.idv.tw/archives/2009/01/02/513/" target="_blank">之前</a>被 invite 的西雅圖照片在 <a href="http://www.schmap.com/" target="_blank">Schmap</a> 的 Seattle Guide (6th ed.) 上頭刊出了。</p>
<p><span id="more-540"></span></p>
<p>早上收到 <a href="http://www.schmap.com/" target="_blank">Schmap</a> 寄來的信&#8230;</p>
<blockquote><p>&#8230; I am delighted to let you know that your two submitted photos have been selected for inclusion in the newly released sixth edition of our Schmap Seattle Guide &#8230;</p></blockquote>
<p>很棒的是 <a href="http://www.schmap.com/" target="_blank">Schmap</a> 也有 iphone 版本，對於遊客來講真的很方便。而我的照片在<a href="http://www.schmap.com/?m=iphone#uid=seattle&amp;sid=sights_pikeplacemarket&amp;p=331854&amp;i=331854_30" target="_blank">這邊</a>跟<a href="http://www.schmap.com/?m=iphone#uid=seattle&amp;sid=events_exhibitions&amp;p=348508&amp;i=348508_64" target="_blank">這邊</a>。而要看網頁版的也可以到 <a href="http://www.schmap.com/seattle/sights_pikeplacemarket/p=331854/i=331854_30.jpg" target="_blank">Seattle Central Library</a> 跟 <a href="http://www.schmap.com/seattle/events_exhibitions/p=348508/i=348508_64.jpg" target="_blank">Olympic Sculpture Park</a> 這兩個導覽網頁去看。</p>
<p>更有趣的是 <a href="http://www.schmap.com/" target="_blank">Schmap</a> 還提供了可以放在網頁上的導覽版本。</p>
<p><iframe id="schmapplet" frameborder="0" scrolling="no" marginwidth="0" marginheight="0"  allowTransparency="true" style="border-style:none; border-width:0px;"width="518" height="380" src="http://www.schmap.com/templates/t011py.html?uid=seattle&#038;sid=sights_pikeplacemarket&#038;ultranarrow=true&#038;si=SCHMAP-160109768197#mapview=Map&#038;tab=map&#038;topleft=47.60590085,-122.345070255&#038;bottomright=47.61072215,-122.332372845&#038;c=f6f6f6A72122A62122A62122FFF88FFAF5BBffffffFFF88Fd8d8d8A4A7A6A621226990ffECEBBD0000005C5A4E5C5A4E000000929292F0EFDA"></iframe></p>
<p><iframe id="schmapplet" frameborder="0" scrolling="no" marginwidth="0" marginheight="0"  allowTransparency="true" style="border-style:none; border-width:0px;"width="518" height="380" src="http://www.schmap.com/templates/t011py.html?uid=seattle&#038;sid=events_exhibitions&#038;ultranarrow=true&#038;si=SCHMAP-160109370086#mapview=Map&#038;tab=map&#038;topleft=47.60567535,-122.38564265&#038;bottomright=47.65268165,-122.19295235&#038;c=f6f6f6A72122A62122A62122FFF88FFAF5BBffffffFFF88Fd8d8d8A4A7A6A621226990ffECEBBD0000005C5A4E5C5A4E000000929292F0EFDA"></iframe></p>
<p>而這邊有人寫了一篇關於 <a href="http://blog.duncan.idv.tw/blogs/index.php?c=1&#038;more=1&#038;pb=1&#038;tb=1&#038;title=schmap_a_e_a_a" target="_blank">Schmap!旅遊指南</a> 的介紹文，如果對自助旅行有興趣的人，不妨參考這篇介紹文，或許 Schmap 可以在規劃行程的時候幫上不少忙。 <img src='http://blog.phanix.idv.tw/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.phanix.idv.tw/archives/2009/01/17/540/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[Note] Import Data in SQL Server 2005 (匯入資料)</title>
		<link>http://blog.phanix.idv.tw/archives/2009/01/09/523/</link>
		<comments>http://blog.phanix.idv.tw/archives/2009/01/09/523/#comments</comments>
		<pubDate>Fri, 09 Jan 2009 01:39:54 +0000</pubDate>
		<dc:creator>Phanix</dc:creator>
				<category><![CDATA[學習工作]]></category>
		<category><![CDATA[工作]]></category>
		<category><![CDATA[研究]]></category>
		<category><![CDATA[程式]]></category>
		<category><![CDATA[軟體]]></category>
		<category><![CDATA[電腦網路]]></category>
		<category><![CDATA[Data]]></category>
		<category><![CDATA[Import]]></category>
		<category><![CDATA[SQL Server 2005]]></category>
		<category><![CDATA[資料匯入]]></category>

		<guid isPermaLink="false">http://blog.phanix.idv.tw/?p=523</guid>
		<description><![CDATA[Remeber to check the item &#8220;Integration Services&#8221; (SSIS) in the install process, or you will fail and get a error message like &#8220;product level is insufficient for components&#8221; while importing data from txt, excel, etc. files into a SQL server 2005 database. Related: porduct level is insufficient for components]]></description>
			<content:encoded><![CDATA[<p>Remeber to check the item &#8220;Integration Services&#8221; (SSIS) in the install process, or you will fail and get a error message like &#8220;product level is insufficient for components&#8221; while importing data from txt, excel, etc. files into a SQL server 2005 database.</p>
<p>Related: <a href="http://sql-server-performance.com/Community/forums/p/616/1428.aspx" target="_blank">porduct level is insufficient for components</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.phanix.idv.tw/archives/2009/01/09/523/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

