<?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/%e7%b6%b2%e8%b7%af%e6%87%89%e7%94%a8/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>原來天空中有這麼多飛機!!</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>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>Qoop Calendar 心得</title>
		<link>http://blog.phanix.idv.tw/archives/2008/11/25/484/</link>
		<comments>http://blog.phanix.idv.tw/archives/2008/11/25/484/#comments</comments>
		<pubDate>Tue, 25 Nov 2008 05:13:23 +0000</pubDate>
		<dc:creator>Phanix</dc:creator>
				<category><![CDATA[攝影]]></category>
		<category><![CDATA[生活點滴]]></category>
		<category><![CDATA[網路應用]]></category>
		<category><![CDATA[電腦網路]]></category>
		<category><![CDATA[calendar]]></category>
		<category><![CDATA[Qoop]]></category>
		<category><![CDATA[月曆]]></category>

		<guid isPermaLink="false">http://blog.phanix.idv.tw/?p=484</guid>
		<description><![CDATA[這幾天有點累，可能是因為天氣開始冷了愛睡覺，所以要寫心得文就有點懶惰，隨意寫寫好了。 這次會選擇用 QOOP 製作的原因主要是人在美國，所以就近方便就用 QOOP 作月曆了，要不然我覺得桌曆會比較小巧精緻(可以參考去年作的，連結在最下面)，擺在桌上可以常常看這樣。XD 運送的包裝作得不錯，有用塑膠膜先整個封起來。 拆封後，月曆封面。 紙張是使用光面紙（還是叫銅版紙？我實在是不熟），要再上頭作書寫的話也不是難事，可以看到在下半部的日期格子都還不小，展開來大小大概是 B4。(擺在Asus F9E上頭作大小對照) 塑膠環裝。跟一般常見的月曆一樣。 唯一比較不喜歡的色調我覺得比原本的照片稍偏暖色，同時亮度偏低，下次如果要印的話需要先把照片亮度先調整過。 印出來的樣子 原本的照片 封底。可以發現有打孔，所以是可以掛在牆壁上的，如果要擺置在桌上，就需要有東西固定位置了。 整體來說，如果不是礙於在美國不方便的話，我會親自去找印刷廠作輸出，或者是像去年一樣找相館印出來當作桌曆，畢竟可以當面洽談是最好的，也可以先看過印出的 sample 然後溝通，只不過找印刷廠價錢會是個問題，而且來回所花的時間也會不少就是。 Related: 2009月曆、2008京都風情桌曆]]></description>
			<content:encoded><![CDATA[<p>這幾天有點累，可能是因為天氣開始冷了愛睡覺，所以要寫心得文就有點懶惰，隨意寫寫好了。</p>
<p><span id="more-484"></span></p>
<p>這次會選擇用 QOOP 製作的原因主要是人在美國，所以就近方便就用 QOOP 作月曆了，要不然我覺得桌曆會比較小巧精緻(可以參考去年作的，連結在最下面)，擺在桌上可以常常看這樣。XD</p>
<p>運送的包裝作得不錯，有用塑膠膜先整個封起來。<br />
<a href="http://www.flickr.com/photos/phanix/3057366953/" title="R0014711 (by Phanix)"><img src="http://farm4.static.flickr.com/3001/3057366953_2785a5e3f2.jpg" title="R0014711 (by Phanix)" alt="R0014711 (by Phanix)" width="500" height="333" /></a></p>
<p>拆封後，月曆封面。<br />
<a href="http://www.flickr.com/photos/phanix/3058208370/" title="R0014720 (by Phanix)"><img src="http://farm4.static.flickr.com/3152/3058208370_94fde8011e.jpg" title="R0014720 (by Phanix)" alt="R0014720 (by Phanix)" width="500" height="333" /></a></p>
<p>紙張是使用光面紙（還是叫銅版紙？我實在是不熟），要再上頭作書寫的話也不是難事，可以看到在下半部的日期格子都還不小，展開來大小大概是 B4。(擺在Asus F9E上頭作大小對照)<br />
<a href="http://www.flickr.com/photos/phanix/3057374853/" title="R0014721 (by Phanix)"><img src="http://farm4.static.flickr.com/3187/3057374853_568d22262a.jpg" title="R0014721 (by Phanix)" alt="R0014721 (by Phanix)" width="333" height="500" /></a></p>
<p>塑膠環裝。跟一般常見的月曆一樣。<br />
<a href="http://www.flickr.com/photos/phanix/3057378751/" title="R0014722 (by Phanix)"><img src="http://farm4.static.flickr.com/3234/3057378751_85de42b9b7.jpg" title="R0014722 (by Phanix)" alt="R0014722 (by Phanix)" width="500" height="333" /></a></p>
<p>唯一比較不喜歡的色調我覺得比原本的照片稍偏暖色，同時亮度偏低，下次如果要印的話需要先把照片亮度先調整過。<br />
印出來的樣子<br />
<a href="http://www.flickr.com/photos/phanix/3057391623/" title="R0014726 (by Phanix)"><img src="http://farm4.static.flickr.com/3245/3057391623_5bd4ba2cc8.jpg" title="R0014726 (by Phanix)" alt="R0014726 (by Phanix)" width="500" height="333" /></a><br />
原本的照片<br />
<a href="http://www.flickr.com/photos/phanix/2992946187/" title="_MG_5760 (by Phanix)"><img src="http://farm4.static.flickr.com/3035/2992946187_cc6b3a9aec.jpg" title="_MG_5760 (by Phanix)" alt="_MG_5760 (by Phanix)" width="500" height="333" /></a></p>
<p>封底。可以發現有打孔，所以是可以掛在牆壁上的，如果要擺置在桌上，就需要有東西固定位置了。<br />
<a href="http://www.flickr.com/photos/phanix/3058231044/" title="R0014727 (by Phanix)"><img src="http://farm4.static.flickr.com/3064/3058231044_5ef07e3243.jpg" title="R0014727 (by Phanix)" alt="R0014727 (by Phanix)" width="500" height="333" /></a></p>
<p>整體來說，如果不是礙於在美國不方便的話，我會親自去找印刷廠作輸出，或者是像去年一樣找相館印出來當作桌曆，畢竟可以當面洽談是最好的，也可以先看過印出的 sample 然後溝通，只不過找印刷廠價錢會是個問題，而且來回所花的時間也會不少就是。</p>
<p>Related: <a href="http://blog.phanix.idv.tw/archives/2008/01/24/284/" target="_blank">2009月曆</a>、<a href="http://blog.phanix.idv.tw/archives/2008/01/24/284/" target="_blank">2008京都風情桌曆</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.phanix.idv.tw/archives/2008/11/25/484/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nowpublic.com</title>
		<link>http://blog.phanix.idv.tw/archives/2008/11/12/478/</link>
		<comments>http://blog.phanix.idv.tw/archives/2008/11/12/478/#comments</comments>
		<pubDate>Wed, 12 Nov 2008 04:54:10 +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[閒聊嘴炮]]></category>
		<category><![CDATA[電腦網路]]></category>
		<category><![CDATA[folk]]></category>
		<category><![CDATA[information]]></category>
		<category><![CDATA[media]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[photo]]></category>
		<category><![CDATA[媒體]]></category>
		<category><![CDATA[照片]]></category>
		<category><![CDATA[群眾力量]]></category>
		<category><![CDATA[資訊]]></category>

		<guid isPermaLink="false">http://blog.phanix.idv.tw/?p=478</guid>
		<description><![CDATA[Nowpublic.com is a news website, the difference from other news provider is that the news of Nowpublic.com are provided from real people all around the world. Can this model work out in Taiwan? Here is a short description of Nowpublic.com Technology has broken the corporate news monopoly. Digital cameras, camera phones, blogs, and RSS put [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://my.nowpublic.com/" target="_blank">Nowpublic.com</a> is a news website, the difference from other news provider is that the news of <a href="http://my.nowpublic.com/" target="_blank">Nowpublic.com</a> are provided from real people all around the world. Can this model work out in Taiwan?</p>
<p><span id="more-478"></span></p>
<p>Here is a short description of Nowpublic.com</p>
<blockquote><p>Technology has broken the corporate news monopoly. Digital cameras, camera phones, blogs, and RSS put the tools of the news trade into the hands of the public, and now real news comes from real people everywhere. Now you can demand coverage of the stories you care about—all you need is nowPublic. Here public demand launches investigations. Story Ideas come from people on the ground, insiders, community leaders. Footage comes from eye witnesses, citizen reporters, people close to the real st.</p></blockquote>
<p>I never knew this site until I received a request mail this morning. </p>
<blockquote><p>Hi,</p>
<p>NowPublic is running a news story on  starbucks profit down 97% and we’re trying to put together a collection of photos of starbucks. If you&#8217;re interested in sharing your photo, please follow the links below and feel free to add your own comment as well. Looking forward to seeing your work on the site!</p>
<p>In case you haven&#8217;t heard of us, NowPublic.com is a participatory news website. The requested photos will appear as thumbnails when you follow the link. I&#8217;d also encourage you to comment on the article (after following the link) if you have opinions on the topic. It will appear as a comment beneath the article (NOT as a caption to the photo).</p></blockquote>
<p>In brief, the author on <a href="http://my.nowpublic.com/" target="_blank">Nowpublic.com</a> wants to use two photos in <a href="http://ww.flickr.com/photos/phanix" target="_blank">my flickr photostream</a> (as the follows). And, here is the <a href="http://my.nowpublic.com/tech-biz/starbucks-4q-profit-down-97-same-store-sales-drop-8" target="_blank">news</a>, a bad news of Starbucks. XD</p>
<p><a href="http://www.flickr.com/photos/phanix/3012314040/" title="_MG_4711 (by Phanix)"><img src="http://farm4.static.flickr.com/3293/3012314040_dde8a91014_m.jpg" title="_MG_4711 (by Phanix)" alt="_MG_4711 (by Phanix)" width="160" height="240" /></a>&nbsp;&nbsp;&nbsp;<a href="http://www.flickr.com/photos/phanix/3012289738/" title="_MG_4705 (by Phanix)"><img src="http://farm4.static.flickr.com/3221/3012289738_980b41ae4e_m.jpg" title="_MG_4705 (by Phanix)" alt="_MG_4705 (by Phanix)" width="240" height="160" /></a></p>
<p>It is really interesting, and let me to think of <a href="http://zh.wikipedia.org/wiki/%E9%84%89%E6%B0%91_(%E7%B6%B2%E8%B7%AF%E7%94%A8%E8%AA%9E)" target="_blank">鄉民</a> and the Gossiping discussion group (八卦板) in <a href="http://zh.wikipedia.org/w/index.php?title=%E6%89%B9%E8%B8%A2%E8%B8%A2&#038;variant=zh-tw" target="_blank">PTT</a>. I think the information from <a href="http://zh.wikipedia.org/wiki/%E9%84%89%E6%B0%91_(%E7%B6%B2%E8%B7%AF%E7%94%A8%E8%AA%9E)" target="_blank">鄉民</a> is really great, quick, powerful and true (well, sometimes is just gossiping), and, now, I am wondering the model like <a href="http://my.nowpublic.com/" target="_blank">Nowpublic.com</a>, gathering the information from users to form news, can work out or not in Taiwan&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.phanix.idv.tw/archives/2008/11/12/478/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Change the look of my blog</title>
		<link>http://blog.phanix.idv.tw/archives/2008/10/14/449/</link>
		<comments>http://blog.phanix.idv.tw/archives/2008/10/14/449/#comments</comments>
		<pubDate>Mon, 13 Oct 2008 20:25:52 +0000</pubDate>
		<dc:creator>Phanix</dc:creator>
				<category><![CDATA[blog]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[網路應用]]></category>
		<category><![CDATA[電腦網路]]></category>
		<category><![CDATA[theme]]></category>

		<guid isPermaLink="false">http://blog.phanix.idv.tw/?p=449</guid>
		<description><![CDATA[About 1 month past from the last change, and I think it is enough for the celebration of my espresso system. So, I change the look of my blog again. The major changes include the new title picture, it was taken in Kobe, Japan. And I also heighten the canvas of title picture. Another major [...]]]></description>
			<content:encoded><![CDATA[<p>About 1 month past from the <a href="http://blog.phanix.idv.tw/archives/2008/09/16/424/">last change</a>, and I think it is enough for the celebration of my espresso system. So, I change the look of my blog again.</p>
<p>The major changes include the new title picture, it was taken in Kobe, Japan. And I also heighten the canvas of title picture. Another major change is I widen the area of article body, because I want to place larger pictures in my blog. I think larger pictures grab more and inform more. <img src='http://blog.phanix.idv.tw/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>[Update, 2008/10/14]<br />
I add a javascript, and now the title picture will choose one from four randomly. <img src='http://blog.phanix.idv.tw/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p><center><br />
<a href="http://www.flickr.com/photos/phanix/2937245452/" title="_MG_3727 (by Phanix)"><img src="http://farm4.static.flickr.com/3229/2937245452_70821e6791_b.jpg" title="_MG_3727 (by Phanix)" alt="_MG_3727 (by Phanix)" width="590" /></a></p>
<p><a href="http://www.flickr.com/photos/phanix/2936403793/" title="_MG_3729 (by Phanix)"><img src="http://farm4.static.flickr.com/3074/2936403793_de046f8b3f_b.jpg" title="_MG_3729 (by Phanix)" alt="_MG_3729 (by Phanix)" height="590" /></a><br />
</center></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.phanix.idv.tw/archives/2008/10/14/449/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sell you photo on QOOP</title>
		<link>http://blog.phanix.idv.tw/archives/2008/10/03/439/</link>
		<comments>http://blog.phanix.idv.tw/archives/2008/10/03/439/#comments</comments>
		<pubDate>Fri, 03 Oct 2008 06:13:36 +0000</pubDate>
		<dc:creator>Phanix</dc:creator>
				<category><![CDATA[攝影]]></category>
		<category><![CDATA[新玩意]]></category>
		<category><![CDATA[網路應用]]></category>
		<category><![CDATA[電腦網路]]></category>
		<category><![CDATA[flickr]]></category>
		<category><![CDATA[Qoop]]></category>
		<category><![CDATA[social network]]></category>
		<category><![CDATA[商品]]></category>
		<category><![CDATA[電子商務]]></category>

		<guid isPermaLink="false">http://blog.phanix.idv.tw/?p=439</guid>
		<description><![CDATA[想賣照片嗎？印在馬克杯上？印成海報？來試試 Qoop 推出的新服務！ 不久前 Qoop 推出了新服務，叫做 myQoop，標榜是個 Social Commerce Platform。而Qoop本來就跟flickr有著合作關係，可以讓flickr的使用者將自己的照片透過Qoop印出來，或者是做成其他的照片商品，例如馬克杯、日曆、海報等等。 所以，透過這個新服務，就可以把自己的照片做成商品然後在網路上販賣了！預設的售價是Qoop製作的價格，而自己可以決定要在加上多少錢作為最後的販售價。今天自己就試做了一張海報，還蠻好玩的。 不過比較大的問題應該是稅，對於不在美國的人來說應該是很麻煩吧]]></description>
			<content:encoded><![CDATA[<p>想賣照片嗎？印在馬克杯上？印成海報？來試試 Qoop 推出的新服務！</p>
<p><span id="more-439"></span></p>
<p>不久前 Qoop 推出了新服務，叫做 myQoop，標榜是個 Social Commerce Platform。而Qoop本來就跟flickr有著合作關係，可以讓flickr的使用者將自己的照片透過Qoop印出來，或者是做成其他的照片商品，例如<a href="http://blog.phanix.idv.tw/archives/2008/08/16/410/" target="_blank">馬克杯</a>、日曆、海報等等。</p>
<p>所以，透過這個新服務，就可以把自己的照片做成商品然後在網路上販賣了！預設的售價是Qoop製作的價格，而自己可以決定要在加上多少錢作為最後的販售價。今天自己就試做了<a href="http://my.qoop.com/store/5052012245725982/6351857375274" target="_blank">一張海報</a>，還蠻好玩的。</p>
<p>不過比較大的問題應該是稅，對於不在美國的人來說應該是很麻煩吧</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.phanix.idv.tw/archives/2008/10/03/439/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

