<?xml version="1.0" encoding="utf-8"?>
<?xml-stylesheet href="http://blog.bs2.to/styles/rss.css" type="text/css"?>
<rss version="2.0" 
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
>
 <channel>
  <title>idly</title>
  <link>http://blog.bs2.to/chrislee</link>
  <description>(副) 懶惰地、無益地、徒然地、無所事事地閒著。</description>
  <pubDate>Fri, 19 Mar 2010 01:23:34 +0800</pubDate>
  <generator>http://blog.bs2.to</generator>
        <item>
   <title>webs-tv 提供的免費blog ..</title>
   <description>
    第三個idly站: &lt;a href=&quot;http://blog.webs-tv.net/chrislee/&quot;&gt;http://blog.webs-tv.net/chrislee/&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;他們家提供了 blog 相簿 的整合服務..總合的容量超過1G&lt;br /&gt;吸引人的是還送了 咱家mail2000系統的免費信箱..500MB.. 都免費&lt;br /&gt;&lt;br /&gt;唯一缺點是webs-tv 的服務得以身分証字號當帳號&lt;br /&gt;其餘...好像沒啥缺點了! 功能整合也蠻用心的..&lt;br /&gt;&lt;br /&gt;之後沒意外應該會移過去吧。&lt;br /&gt;&lt;br /&gt;第二個idly站就是這兒 (bs2) &lt;a href=&quot;http://blog.bs2.to/chrislee&quot;&gt;http://blog.bs2.to/chrislee&lt;/a&gt;&lt;br /&gt;第一個idly則是 sina 的: &lt;a href=&quot;http://blog.sina.com.tw/weblog.php?blog_id=22&quot;&gt;http://blog.sina.com.tw/weblog.php?blog_id=22&lt;/a&gt;&lt;br /&gt;&lt;br/&gt;&lt;br /&gt;
   </description>
   <link>http://blog.bs2.to/post/chrislee/2464</link>
   <comments>http://blog.bs2.to/post/chrislee/2464</comments>
   <guid>http://blog.bs2.to/post/chrislee/2464</guid>
      <dc:creator>chrislee</dc:creator>
      
    <category>weblog</category>
         <pubDate>Sun, 15 May 2005 21:13:02 +0800</pubDate>
   <source url="http://blog.bs2.to/rss/rss20/chrislee">idly</source>
     </item>
          <item>
   <title>firefox search box 全攻略: 1. 自己設計搜尋 (search plugin) 2. 鍵盤快速鍵</title>
   <description>
    
firefox 的右上角，也就是網址輸入區的右邊，有個可以輸入搜尋的小方塊..&lt;br /&gt;裡面內建了 google search, 這邊我們可以用很簡單的方式自訂自己喜愛的搜尋唷!&lt;br /&gt;&lt;br /&gt;這個搜尋方塊相關的鍵盤快速鍵是 &lt;br /&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;Ctrl &lt;/span&gt;+&lt;span style=&quot;font-weight: bold;&quot;&gt; K&lt;/span&gt;  &lt;span style=&quot;text-decoration: underline;&quot;&gt;切換到輸入搜尋關鍵字&lt;/span&gt;的狀態&lt;br /&gt;然後&lt;br /&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;Ctrl &lt;/span&gt;+ &lt;span style=&quot;font-weight: bold;&quot;&gt;上&lt;/span&gt; 或 &lt;span style=&quot;font-weight: bold;&quot;&gt;下 &lt;/span&gt; 可以&lt;span style=&quot;text-decoration: underline;&quot;&gt;切換搜尋方法&lt;/span&gt; (比如說從 google 切到 博客來)&lt;br /&gt;&lt;br /&gt;本篇內文中會介紹如何自己做 firefox search plugin 也就是自己製作search box 中新的搜尋方法囉 :D&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;tt /&gt;&lt;br/&gt;
我舉我自己最先做的兩個搜尋當例子:&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;I. 博客來網路書店&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;首先先弄到博客來搜尋的網址，方法就是先到博客來隨便搜一個詞，例如QQQ:&lt;br /&gt;
然後觀察到，它搜尋的完整網址是:&lt;br /&gt;
http://search.books.com.tw/exep/openfind_all.php?key=QQQ&amp;amp;page=0&amp;amp;sort=1&lt;br /&gt;
&lt;br /&gt;
所以會寫 CGI 的朋友們，請直接看下面就行了: QQQ的地方不用寫value，而是寫個 user 在裡頭，表示這就是每次要輸入的東西。&lt;br /&gt;
&lt;br /&gt;&lt;tt style=&quot;rgb(0, 51, 102);&quot;&gt;&lt;p&gt;&amp;lt;search&lt;br /&gt;
name=&amp;quot;博客來網路書店&amp;quot;&lt;br /&gt;
sourceTextEncoding=&amp;quot;2&amp;quot; &lt;br /&gt;
method=&amp;quot;GET&amp;quot;&lt;br /&gt;
action=&amp;quot;http://search.books.com.tw/exep/openfind_all.php&amp;quot;&lt;br /&gt;
queryCharset=&amp;quot;Big5&amp;quot;&lt;br /&gt;
&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;input name=&amp;quot;key&amp;quot; user&amp;gt;&lt;br /&gt;
&amp;lt;input name=&amp;quot;sort&amp;quot; value=&amp;quot;1&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/search&amp;gt;&lt;/p&gt;
&lt;/tt&gt;&lt;br /&gt;&lt;br /&gt;
然後把以上內容，存到 firefox 目錄中的 searchplugins 子目錄，命名為例如 books.src 即可。(副檔名 src) 若想要有漂漂的圖檔，請存 16x16 的 gif 為 books.gif (同名的 gif 就是了)&lt;br /&gt;
&lt;br /&gt;
不會寫 CGI 的朋友，可以參考此篇: &lt;a onclick=&quot;
function onclick(event) {

    function onclick(event) {

        function onclick(event) {

            function onclick(event) {

                function onclick(event) {
                    return top.js.OpenExtLink(window, event, this);
                }

            }

        }

    }

}
&quot; target=&quot;_blank&quot; href=&quot;http://wiki.moztw.org/index.php?title=Make_your_own_Search_Plugin&quot;&gt;http://wiki.moztw.org/index&lt;wbr /&gt;.php?title=Make_your_own&lt;wbr /&gt;_Search_Plugin&lt;/a&gt;&lt;br /&gt;
或是自己從例子中學習唷，請觀察網址中 問號 &lt;span style=&quot;font-weight: bold;&quot;&gt;?&lt;/span&gt; 之後，然後用 &lt;span style=&quot;font-weight: bold;&quot;&gt;&amp;amp;&lt;/span&gt; 切開... 就可以了。 :)&lt;br /&gt;&lt;br style=&quot;font-weight: bold;&quot; /&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;II. yahoo奇摩拍賣&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;然後一樣， yahoo 拍賣的搜尋網址長這樣: (加上&amp;quot;現在出價由低到高&amp;quot; 的選項)&lt;br /&gt;http://tw.search.bid.yahoo.com/search/ac?p=QQQ&amp;amp;s=curprice&lt;br /&gt;&lt;br /&gt;所以我的 tw_yahoo_bid.src 的內容就是:&lt;br /&gt;&lt;br /&gt;&lt;tt style=&quot;rgb(102, 51, 51);&quot;&gt;&lt;p&gt;&amp;lt;search&lt;br /&gt;
name=&amp;quot;Yahoo奇摩拍賣&amp;quot;&lt;br /&gt;
sourceTextEncoding=&amp;quot;2&amp;quot; &lt;br /&gt;
method=&amp;quot;GET&amp;quot;&lt;br /&gt;
action=&amp;quot;http://tw.search.bid.yahoo.com/search/ac&amp;quot;&lt;br /&gt;
queryCharset=&amp;quot;Big5&amp;quot;&lt;br /&gt;
&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;input name=&amp;quot;p&amp;quot; user&amp;gt;&lt;br /&gt;
&amp;lt;input name=&amp;quot;s&amp;quot; value=&amp;quot;curprice&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/search&amp;gt;&lt;/p&gt;&lt;/tt&gt;
   </description>
   <link>http://blog.bs2.to/post/chrislee/2302</link>
   <comments>http://blog.bs2.to/post/chrislee/2302</comments>
   <guid>http://blog.bs2.to/post/chrislee/2302</guid>
      <dc:creator>chrislee</dc:creator>
      
    <category>weblog</category>
         <pubDate>Mon, 02 May 2005 11:14:56 +0800</pubDate>
   <source url="http://blog.bs2.to/rss/rss20/chrislee">idly</source>
     </item>
          <item>
   <title>找到 WinAMP 的 AB Repeat plugin 囉~~~</title>
   <description>
    &lt;p&gt;&lt;a href=&quot;http://www.winamp.com/plugins/details.php?id=30749&quot;&gt;http://www.winamp.com/plugins/details.php?id=30749&lt;/a&gt; &lt;a href=&quot;http://www.winamp.com/plugins/details.php?id=30749&quot;&gt;&lt;span class=&quot;fontsize-xsm&quot;&gt;&lt;b&gt;Loop Master Musicians Tool&lt;/b&gt;&lt;/span&gt; &lt;br /&gt;&lt;/a&gt;如果你正在尋找電腦上播放音樂檔用的 A-B repeat 這就是了! 相信需要的人一定為了它要特地裝&lt;a href=&quot;http://www.winamp.com&quot;&gt;WinAMP&lt;/a&gt;也願意吧? &lt;/p&gt;&lt;p&gt;什麼是 AB repeat? 一般在 CD player 或 mp3 player裡會有的，通常是拿來幫助語言學習的功能，因為它可以設定(音樂、錄音中的)某一個時間點為 A (loop start), 再設另一個時間點為 B (loop end)，然後就會一直重覆 AB 之間! 也就是你可以拿來重覆一句聽不懂的錄音、一個樂句、一段副歌..等等! 需要的時候真的非常有用唷!!&lt;/p&gt;&lt;p&gt;找到時真的很高興，所以特地分享給大家~&lt;/p&gt;&lt;br/&gt;
   </description>
   <link>http://blog.bs2.to/post/chrislee/1691</link>
   <comments>http://blog.bs2.to/post/chrislee/1691</comments>
   <guid>http://blog.bs2.to/post/chrislee/1691</guid>
      <dc:creator>chrislee</dc:creator>
      
    <category>techlog</category>
         <pubDate>Sun, 27 Mar 2005 13:31:08 +0800</pubDate>
   <source url="http://blog.bs2.to/rss/rss20/chrislee">idly</source>
     </item>
          <item>
   <title>Google 查電影影評 (reviews)</title>
   <description>
    &lt;p&gt;到估狗&lt;br /&gt;打 movie:電影名 (就是在要查的東西前面打 movie 加冒號)&lt;br /&gt;通常可以配合雙引號使用，例如&lt;br /&gt;movie:&amp;quot;gone with the wind&amp;quot;  範例結果: &lt;a href=&quot;http://www.google.com/search?hl=en&amp;amp;lr=&amp;amp;q=movie%3A%22gone+with+the+wind%22&quot;&gt;http://www.google.com/search?hl=en&amp;amp;lr=&amp;amp;q=movie%3A%22gone+with+the+wind%22&lt;/a&gt; &lt;/p&gt;&lt;p&gt;這兒是這個東西的介紹&lt;br /&gt;&lt;a href=&quot;http://www.google.com/googleblog/2005/02/google-movies-now-playing.html&quot;&gt;http://www.google.com/googleblog/2005/02/google-movies-now-playing.html&lt;/a&gt; &lt;/p&gt;&lt;br/&gt;
   </description>
   <link>http://blog.bs2.to/post/chrislee/1558</link>
   <comments>http://blog.bs2.to/post/chrislee/1558</comments>
   <guid>http://blog.bs2.to/post/chrislee/1558</guid>
      <dc:creator>chrislee</dc:creator>
      
    <category>weblog</category>
         <pubDate>Mon, 21 Mar 2005 10:43:19 +0800</pubDate>
   <source url="http://blog.bs2.to/rss/rss20/chrislee">idly</source>
     </item>
          <item>
   <title>感佩 GMail 之 BASIC HTML UI</title>
   <description>
    
&lt;span style=&quot;font-style: italic;&quot;&gt;「好吧!我們就來挑戰讓世界上所有最阿公阿嬤的瀏覽器，也可以用我們家的讚讚新功能吧」&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt; -- 分享一件 google 之 gmail 讓我覺得神奇的事:&lt;br /&gt;
&lt;br /&gt;&lt;br /&gt;&lt;br/&gt;
最近發現 gmail 它又推出&lt;a href=&quot;http://www.google.com/gmail/help/whatsnew.html&quot;&gt;新功能&lt;/a&gt; ，第一項新功能是結合 PC 的複合功能的圖片picasa　可以直接以gmail 帳號send 圖(並自動把圖resize到剛好一封信可以10MB寄出)...這個..沒用過、也不想裝picasa，所以不予置評；&lt;br /&gt;
&lt;br /&gt;
第二個功能是提供 basic HTML 的介面，意思是說沒那麼 fancy 的 gmail 介面，但支援舊的 browser:&lt;br /&gt;
&lt;br /&gt;&lt;basefont /&gt;
&lt;p style=&quot;margin-left: 40px;&quot;&gt;&lt;font size=&quot;-1&quot; style=&quot;font-style: italic;&quot;&gt;&lt;b&gt;Not just any old computer. Actually, yes, any old 
computer!&lt;/b&gt;&lt;br /&gt;Basic HTML view lets you access your Gmail messages from almost 
any computer running almost any web browser, even old ones (not just IE5.5+, 
Mozilla, and Safari). Especially great for traveling, since you never know what 
kind of browser that internet café in Siberia is going to have. &lt;a target=&quot;_blank&quot; href=&quot;http://gmail.google.com/support/bin/answer.py?answer=15046&quot;&gt;Learn more&lt;/a&gt;&lt;/font&gt;&lt;font size=&quot;-1&quot;&gt;&lt;br /&gt;&lt;/font&gt;&lt;/p&gt;
&lt;br /&gt;
請注意他的意思不是說什麼「我們也支援firefox唷」這麼簡單&lt;br /&gt;(事實上 GMail 用 firefox 操作本來就完全沒問題)；&lt;br /&gt;他的意思是: 「喂! 我們弄了一個新介面，它完全支援一些阿公阿嬤的瀏覽器!!&lt;br /&gt;什麼 Netscape 3, 4之類的都放馬過來吧!!」 &lt;br /&gt;&lt;br /&gt;..不過我本人自己沒真的去測試啦，我只用我正常的現代的瀏覽器們，試過了這個東東；&lt;br /&gt;basic HTML 介面其實『看起來』還是跟原來的差不多；&lt;br /&gt;
但我知道它骨子裡的意義，我覺得它背後的用心讓我..有點感動、很多佩服:&lt;br /&gt;&lt;br /&gt;
本來 gmail fancy 版 (也就是預設的正常版) ，姑且不論那些新概念的操作方式，&lt;br /&gt;光在技術上，是用了很多 fancy 的炫炫新技術的，可以說是新一代 web UI 技術的代表範例之一；&lt;br /&gt;但在這『之後』，他們可以放下身段，再去開發一個 basic 版 (而且其實這大概就等於&lt;span style=&quot;font-weight: bold;&quot;&gt;重寫&lt;/span&gt;囉!)，&lt;br /&gt;讓無敵超級古老的瀏覽器也能使用幾乎相容的操作介面.... &lt;br /&gt;&lt;br /&gt;這種用心真的很難得!!&lt;br /&gt;&lt;br /&gt;大家應該可以想像，一般工程師對於 新技術 及 相容性 的衝突，&lt;br /&gt;態度大多會是:&lt;br /&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;「馬的你們全部都更新到最新的瀏覽器，不然我不鳥你」&lt;/span&gt;&lt;br /&gt;但今天 gmail 做的事是:&lt;br /&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;「好吧!我們就來挑戰讓世界上所有最阿公阿嬤的瀏覽器，&lt;/span&gt;&lt;br style=&quot;font-weight: bold;&quot; /&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;也可以用我們家的讚讚新功能吧! 不論要花多少功夫!」&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;好吧.. 也許他們家的博士多，要做這種事不難 (這我相信，當你有成千上百個博士的時候，&lt;br /&gt;大概沒什麼辦不到的鬼技術吧?) 但我的重點是，這種用心、這種政策，&lt;br /&gt;真的是時下的技術產業少見的ho?&lt;br /&gt;&lt;br /&gt;嗯..我個人不愛 google, 也沒多忠心, 而且 google 在粉多方面都是我(們公司)的敵人..&lt;br /&gt;不過.. 總可以感動、佩服一下唄? 呵呵!&lt;br /&gt;&lt;br /&gt;
   </description>
   <link>http://blog.bs2.to/post/chrislee/1147</link>
   <comments>http://blog.bs2.to/post/chrislee/1147</comments>
   <guid>http://blog.bs2.to/post/chrislee/1147</guid>
      <dc:creator>chrislee</dc:creator>
      
    <category>weblog</category>
         <pubDate>Sat, 05 Mar 2005 13:12:13 +0800</pubDate>
   <source url="http://blog.bs2.to/rss/rss20/chrislee">idly</source>
     </item>
          <item>
   <title>尬上PTT == 今天推薦了 bs2 給奇摩家族的朋友</title>
   <description>
    &lt;p&gt;據內線消息指出，Yahoo奇摩有可能會關閉 最受歡迎但又無從收費的『家族』服務，我今天推薦了 bs2 給家族長..看有沒有意從 「轉移到ptt」改為「轉移到 bs2」；我不知道 bs2 設立的目的是什麼，但我想應該還是有想要跟 ptt 或無名 拼上一拼的感覺吧! 呵，身為交大資科人及一個使用者，樂見其成啦~&lt;/p&gt;&lt;p&gt;以下是我給家族長的推薦及比較分析..不知道我提的那些「劣處」..是不是有誤呢.. 也不知道族長是不是有興趣過來一試啦..&lt;/p&gt;&lt;p&gt;阿~無論如何， 在2005三月五號的此時，先預祝&lt;strong&gt;&lt;font color=&quot;#cc0000&quot;&gt;梅竹交大必勝&lt;/font&gt;&lt;/strong&gt;啦!!!&lt;/p&gt;&lt;blockquote dir=&quot;ltr&quot; style=&quot;MARGIN-RIGHT: 0px&quot;&gt;&lt;p&gt;&lt;em&gt;族長我發現另一個站..交大資科的 bs2 &lt;br /&gt;（也跟ptt一樣是半公營性質的） &lt;br /&gt;&lt;br /&gt;(bbs/telnet) bs2.twbbs.org &lt;br /&gt;&lt;br /&gt;也有開放申請家族／個人／公開板 &lt;br /&gt;而且限制相對而言非常低； &lt;br /&gt;&lt;br /&gt;我評估一下與ptt的相同處、好處、壞處如下： &lt;br /&gt;[相同] &lt;br /&gt;都是學校系級單位(半)公營性質: &lt;br /&gt;固定IP、軟硬體資源充足(也會擴充)、網路速度快、 &lt;br /&gt;都是資訊系在管所以會一直擴充及更新功能、 &lt;br /&gt;不會當站不管 &lt;br /&gt;&lt;br /&gt;[好處] &lt;br /&gt;1. 連署門檻較ptt低 (個人1人、家族2人、公開10人+站長審核) &lt;br /&gt;2. (這點ptt好像也有) &lt;br /&gt;同一帳號直接附贈100MB個人相簿 &lt;/em&gt;&lt;a href=&quot;http://bs2.twbbs.org/&quot; target=&quot;_blank&quot;&gt;&lt;em&gt;http://bs2.twbbs.org&lt;/em&gt;&lt;/a&gt;&lt;em&gt; &lt;br /&gt;及 blog &lt;/em&gt;&lt;a href=&quot;http://bs2.twbbs.org/blog&quot; target=&quot;_blank&quot;&gt;&lt;em&gt;http://bs2.twbbs.org/blog&lt;/em&gt;&lt;/a&gt;&lt;em&gt; 相信以後應該還會開別的 &lt;br /&gt;3. 系統目前還沒太熱門, 相信限制也少, 但功能不會少太多 &lt;br /&gt;&lt;br /&gt;[壞處] &lt;br /&gt;1. 沒有ptt的大人氣 (雖然交大資科應該在清交算非常大站 呵) &lt;br /&gt;2. 大部分人應該沒有這兒的帳號, 所以大家都得新來申請 &lt;br /&gt;3. 因為歷史較不久、包袱不大, 真的做不下去想關站也是有可能 &lt;br /&gt;&lt;br /&gt;以上提供給族長參考一下啦 :) &lt;br /&gt;&lt;/em&gt;&lt;/p&gt;&lt;/blockquote&gt;&lt;br/&gt;
   </description>
   <link>http://blog.bs2.to/post/chrislee/1146</link>
   <comments>http://blog.bs2.to/post/chrislee/1146</comments>
   <guid>http://blog.bs2.to/post/chrislee/1146</guid>
      <dc:creator>chrislee</dc:creator>
      
    <category>weblog</category>
         <pubDate>Sat, 05 Mar 2005 12:22:39 +0800</pubDate>
   <source url="http://blog.bs2.to/rss/rss20/chrislee">idly</source>
     </item>
     </channel>
</rss>
