<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">
 <channel>
  <title>Tsung's Blog</title>
  <link>http://plog.longwin.com.tw</link>
  <description> 廢話的定義: 聽起來好像很具體，實際上是很空洞的話，看起來好像講到問題的徵結了，實際上是在迴避所有的答案，所以這段話聽起來很流暢，但是他註定是要作廢的。 
</description>
  <pubDate>Sun, 22 Nov 2009 17:05:17 +0800</pubDate>
  <generator>http://www.lifetype.net</generator>
    <atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/tsungblog" type="application/rss+xml" /><feedburner:emailServiceId>tsungblog</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com" /><item>
   <title>使用 vimdiff 來呈現 Git diff 差異</title>
   <description>&lt;p&gt;
GIT diff 最近一次 commit 到此次更改的所有變動(進階參數, 暫時先不列入此範圍), 呈現結果跟一般 diff 差不多.
&lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;註: 若於 .gitconfig 設定下述, 則可多加上顏色區別.
	&lt;blockquote&gt;
		[color]&lt;br /&gt;
		&amp;nbsp;&amp;nbsp;&amp;nbsp; diff = auto
	&lt;/blockquote&gt;
	&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;
若想要用 vimdiff 來取代 Git diff, 要如何做呢?
(下述步驟 參考此文: &lt;a href="http://technotales.wordpress.com/2009/05/17/git-diff-with-vimdiff/" target="_blank" title="Git Diff with Vimdiff"&gt;Git Diff with Vimdiff&lt;/a&gt;)
&lt;/p&gt;
&lt;h4&gt;
設定 vimdiff 取代 Git diff
&lt;/h4&gt;
&lt;ol&gt;
	&lt;li&gt;vim /usr/local/bin/git_diff_wrapper # 此位置只要放在可被執行的路徑即可, 在此先放在 /usr/local/bin/.
	&lt;blockquote&gt;
		#!/bin/sh&lt;br /&gt;
		vimdiff &amp;quot;$2&amp;quot; &amp;quot;$5&amp;quot;
	&lt;/blockquote&gt;
	&lt;/li&gt;
	&lt;li&gt;chmod +x /usr/local/bin/git_diff_wrapper&lt;/li&gt;
	&lt;li&gt;vim ~/.gitconfig # 下述兩行都需要加入, pager 使用 diff 的設定, diff 呼叫外部程式 git_diff_wrapper.
	&lt;blockquote&gt;
		[diff]&lt;br /&gt;
		&amp;nbsp;&amp;nbsp;&amp;nbsp; external = git_diff_wrapper&lt;br /&gt;
		[pager]&lt;br /&gt;
		&amp;nbsp;&amp;nbsp;&amp;nbsp; diff =
	&lt;/blockquote&gt;
	&lt;/li&gt;
	&lt;li&gt;或 vim ~/.gitconfig (二者挑其一即可) 
	&lt;blockquote&gt;
		[diff]&lt;br /&gt;
		&amp;nbsp;&amp;nbsp;&amp;nbsp; external = git_diff_wrapper&lt;br /&gt;
		[core]&lt;br /&gt;
		&amp;nbsp;&amp;nbsp;&amp;nbsp; pager =
	&lt;/blockquote&gt;
	&lt;/li&gt;
	&lt;li&gt;完成.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;
上述完成後, 直接於修改過的專案目錄下, 輸入 &lt;strong&gt;git diff&lt;/strong&gt;, 就會於 vimdiff 的畫面 顯示 差異結果.
&lt;/p&gt;
&lt;h4&gt;
顯示 預設 git diff 結果
&lt;/h4&gt;
&lt;p&gt;
若想要看原始 git diff 的結果, 可用下述做法:
&lt;/p&gt;
&lt;ol&gt;
	&lt;li&gt;vim ~/.bashrc # 最後一行加入下述
	&lt;blockquote&gt;
		function git_diff() {&lt;br /&gt;
		&amp;nbsp;&amp;nbsp;&amp;nbsp; git diff --no-ext-diff -w &amp;quot;$@&amp;quot; | vim -R -&lt;br /&gt;
		}
	&lt;/blockquote&gt;
	&lt;blockquote&gt;
		&lt;h5&gt;
		Git diff 參數說明
		&lt;/h5&gt;
		&lt;ul&gt;
			&lt;li&gt;--no-ext-diff : 不允許執行外部 diff 命令(防止 call vimdiff)&lt;/li&gt;
			&lt;li&gt;-w : 忽略所有空白&lt;/li&gt;
			&lt;li&gt;-R : 將 vim 設定於唯讀模式(read-only mode)&lt;/li&gt;
			&lt;li&gt;- : 讓 vim 作為 pager&lt;/li&gt;
			&lt;li&gt;詳細可見: git diff --help&lt;/li&gt;
		&lt;/ul&gt;
	&lt;/blockquote&gt;
	&lt;/li&gt;
	&lt;li&gt;於修改過的專案目錄 輸入 &lt;strong&gt;git_diff&lt;/strong&gt;, 就會進入 vim 編輯原始 git diff 的結果.&lt;/li&gt;
&lt;/ol&gt;
&lt;h4&gt;
Vimdiff 操作快速鍵
&lt;/h4&gt;
&lt;p&gt;
下述部份摘錄自此篇: &lt;a href="http://amjith.blogspot.com/2008/08/quick-and-dirty-vimdiff-tutorial.html" target="_blank" title="Quick and Dirty : Vimdiff Tutorial"&gt;Quick and Dirty : Vimdiff Tutorial&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;
最常用的是 dp, vimdiff 會顯示左右兩個視窗, 於兩者差異處, 此區塊是要的, 就切換到要的那個視窗, 對想要的那個段落按 dp, 就會自動將此段內容複製到另外一個視窗的對應位置.
&lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;do - Get changes from other window into the current window.&lt;/li&gt;
	&lt;li&gt;&lt;strong&gt;dp - Put the changes from current window into the other window.&lt;/strong&gt;&lt;/li&gt;
	&lt;li&gt;]c - Jump to the next change.&lt;/li&gt;
	&lt;li&gt;[c - Jump to the previous change.&lt;/li&gt;
	&lt;li&gt;Ctrl W + Ctrl W - Switch to the other split window.&lt;/li&gt;
	&lt;li&gt;:diffupdate &amp;ndash; diff update&amp;nbsp;&lt;/li&gt;
	&lt;li&gt;:syntax off &amp;ndash; syntax off&amp;nbsp;&lt;/li&gt;
	&lt;li&gt;zo &amp;ndash; open folded text&lt;/li&gt;
	&lt;li&gt;zc &amp;ndash; close folded text&lt;/li&gt;
&lt;/ul&gt;&lt;img src="http://feeds.feedburner.com/~r/tsungblog/~4/RHzQgftEPN8" height="1" width="1"/&gt;</description>
   <link>http://feedproxy.google.com/~r/tsungblog/~3/RHzQgftEPN8/vimdiff-vs-git-diff-2009</link>
   <comments>http://plog.longwin.com.tw/my_note-unix/2009/11/20/vimdiff-vs-git-diff-2009</comments>
   <guid isPermaLink="false">http://plog.longwin.com.tw/my_note-unix/2009/11/20/vimdiff-vs-git-diff-2009</guid>
      <dc:creator>jon</dc:creator>
      
    <category>My_Note-Unix</category>
         <pubDate>Fri, 20 Nov 2009 08:22:53 +0800</pubDate>
   <source url="http://plog.longwin.com.tw/rss.php?blogId=1&amp;profile=rss20">Tsung's Blog</source>
     <feedburner:origLink>http://plog.longwin.com.tw/my_note-unix/2009/11/20/vimdiff-vs-git-diff-2009</feedburner:origLink></item>
    <item>
   <title>好文: CSS Hack 在各瀏覽器的差異、用法 整理</title>
   <description>&lt;p&gt;
CSS 在各個瀏覽器呈現多少有點差異, 於是就有 CSS Hack 產生, 主要用在瀏覽器的微調, 可見: &lt;a href="http://plog.longwin.com.tw/news-windows/2007/01/10/css_ie_hint_2007" target="_blank" title="CSS 處理不同瀏覽器畫面錯亂問題"&gt;CSS 處理不同瀏覽器畫面錯亂問題&lt;/a&gt;.
&lt;/p&gt;
&lt;p&gt;
除了 *, _ 等, 還有其它的 Hack, 在各種瀏覽器的運作狀況如何呢?
&lt;/p&gt;

&lt;p&gt;
下述表格轉載自: &lt;a href="http://www.blog.e-creative.tw/archives/531" target="_blank" title="CSS hack區分IE6、IE7、IE8、Firefox、Opera、Google、PCManCB"&gt;CSS hack區分IE6、IE7、IE8、Firefox、Opera、Google、PCManCB&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;
註1: 不過將表格中的 PCManCB 移除, 因為 PCManCB 是吃 IE 核心, 跟機器安裝的 IE 版本有關, 與 PCManCB 無關.
&lt;/p&gt;
&lt;p&gt;
註2: 將測試沒用的語法移除. =.=|||
&lt;/p&gt;
&lt;p&gt;
&lt;table class="diff"&gt;
	&lt;thead&gt;
		&lt;tr&gt;
			&lt;th&gt;&amp;nbsp;&lt;/th&gt;
			&lt;th&gt;IE6&lt;/th&gt;
			&lt;th&gt;IE7&lt;/th&gt;
			&lt;th&gt;IE8&lt;/th&gt;
			&lt;th&gt;Firefox&lt;/th&gt;
			&lt;th&gt;Opera&lt;/th&gt;
			&lt;th&gt;Google&lt;/th&gt;
			&lt;th&gt;範例&lt;/th&gt;
		&lt;/tr&gt;
	&lt;/thead&gt;
	&lt;tbody&gt;
		&lt;tr&gt;
			&lt;th&gt;.&lt;/th&gt;
			&lt;td&gt;&lt;strong&gt;Y&lt;/strong&gt;&lt;/td&gt;
			&lt;td&gt;&lt;strong&gt;Y&lt;/strong&gt;&lt;/td&gt;
			&lt;td&gt;N&lt;/td&gt;
			&lt;td&gt;N&lt;/td&gt;
			&lt;td&gt;N&lt;/td&gt;
			&lt;td&gt;N&lt;/td&gt;
			&lt;td class="desc"&gt;.type { .color: #F00; }&lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;
			&lt;th&gt;*&lt;/th&gt;
			&lt;td&gt;&lt;strong&gt;Y&lt;/strong&gt;&lt;/td&gt;
			&lt;td&gt;&lt;strong&gt;Y&lt;/strong&gt;&lt;/td&gt;
			&lt;td&gt;N&lt;/td&gt;
			&lt;td&gt;N&lt;/td&gt;
			&lt;td&gt;N&lt;/td&gt;
			&lt;td&gt;N&lt;/td&gt;
			&lt;td class="desc"&gt;.type { *color: #F00; }&lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;
			&lt;th&gt;_&lt;/th&gt;
			&lt;td&gt;&lt;strong&gt;Y&lt;/strong&gt;&lt;/td&gt;
			&lt;td&gt;N&lt;/td&gt;
			&lt;td&gt;N&lt;/td&gt;
			&lt;td&gt;N&lt;/td&gt;
			&lt;td&gt;N&lt;/td&gt;
			&lt;td&gt;N&lt;/td&gt;
			&lt;td class="desc"&gt;.type { _color: #F00; }&lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;
			&lt;th&gt;!important &lt;/th&gt;
			&lt;td&gt;&lt;strong&gt;Y&lt;/strong&gt;&lt;/td&gt;
			&lt;td&gt;&lt;strong&gt;Y&lt;/strong&gt;&lt;/td&gt;
			&lt;td&gt;&lt;strong&gt;Y&lt;/strong&gt;&lt;/td&gt;
			&lt;td&gt;&lt;strong&gt;Y&lt;/strong&gt;&lt;/td&gt;
			&lt;td&gt;&lt;strong&gt;Y&lt;/strong&gt;&lt;/td&gt;
			&lt;td&gt;&lt;strong&gt;Y&lt;/strong&gt;&lt;/td&gt;
			&lt;td class="desc"&gt;.type { color: #F00 !important; }&lt;/td&gt;
		&lt;/tr&gt;
		&lt;tr&gt;
			&lt;th&gt;*+&lt;/th&gt;
			&lt;td&gt;&lt;strong&gt;Y&lt;/strong&gt;&lt;/td&gt;
			&lt;td&gt;&lt;strong&gt;Y&lt;/strong&gt;&lt;/td&gt;
			&lt;td&gt;N&lt;/td&gt;
			&lt;td&gt;N&lt;/td&gt;
			&lt;td&gt;N&lt;/td&gt;
			&lt;td&gt;N&lt;/td&gt;
			&lt;td class="desc"&gt;.type { *+color: #F00; }&lt;/td&gt;
		&lt;/tr&gt;
	&lt;/tbody&gt;
	&lt;tfoot&gt;
	&lt;/tfoot&gt;
&lt;/table&gt;
&lt;/p&gt;
&lt;h4&gt;相關網頁&lt;/h4&gt;
&lt;ul&gt;
	&lt;li&gt;&lt;a href="http://articles.sitepoint.com/article/ie6-ie7-ie8-win7-xp-mode/2" target="_blank" title="Run IE6, IE7, and IE8 on the Same Machine Using Windows 7 XP Mode"&gt;Run IE6, IE7, and IE8 on the Same Machine Using Windows 7 XP Mode&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a href="http://bytesizecss.com/blog/post/ie6-and-the-important-rule" target="_blank" title="IE6 and the !important rule"&gt;IE6 and the !important rule&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a href="http://hi.baidu.com/commy/blog/item/66539e8fa84699fc503d9265.html" target="_blank" title="IE6 ！IMPORTANT BUG"&gt;IE6 ！IMPORTANT BUG&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a href="http://webdevelop.nitamihai.com/ie8-css-hack/" target="_blank" title="IE 8 CSS Hack"&gt;IE 8 CSS Hack&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;IE 8 Hack: text-align:left \9; (使用 \9)&lt;/li&gt;
&lt;/ul&gt;&lt;img src="http://feeds.feedburner.com/~r/tsungblog/~4/cs_NXSNbEIA" height="1" width="1"/&gt;</description>
   <link>http://feedproxy.google.com/~r/tsungblog/~3/cs_NXSNbEIA/paper-css-hack-browser-diff-howto-2009</link>
   <comments>http://plog.longwin.com.tw/document-ebook/2009/11/19/paper-css-hack-browser-diff-howto-2009</comments>
   <guid isPermaLink="false">http://plog.longwin.com.tw/document-ebook/2009/11/19/paper-css-hack-browser-diff-howto-2009</guid>
      <dc:creator>jon</dc:creator>
      
    <category>Document-Ebook</category>
         <pubDate>Thu, 19 Nov 2009 08:49:36 +0800</pubDate>
   <source url="http://plog.longwin.com.tw/rss.php?blogId=1&amp;profile=rss20">Tsung's Blog</source>
     <feedburner:origLink>http://plog.longwin.com.tw/document-ebook/2009/11/19/paper-css-hack-browser-diff-howto-2009</feedburner:origLink></item>
    <item>
   <title>Ubuntu 9.10 增加 / 設定 語系(Locale)</title>
   <description>&lt;p&gt;
語系增加在 Debian / Ubuntu Linux 上, 都是編輯 /etc/locale.gen 此檔案, 再執行 locale-gen 即可.
&lt;/p&gt;
&lt;p&gt;
在 Ubuntu Linux 9.10 後, /etc/locale.gen 這個檔案不見了, 設上去也沒有用, 於是來找找新的設定法.
&lt;/p&gt;

&lt;h4&gt;
Locales 設定
&lt;/h4&gt;
&lt;ul&gt;
	&lt;li&gt;由 &lt;q&gt;&lt;strong&gt;man locale-gen&lt;/strong&gt;&lt;/q&gt; 可以找到新的設定位置: &lt;strong&gt;/var/lib/locales/supported.d/*&lt;/strong&gt;&lt;/li&gt;
	&lt;li&gt;cat /var/lib/locales/supported.d/local # 可以看到目前設定語系
	&lt;blockquote&gt;
		zh_TW.UTF-8 UTF-8
	&lt;/blockquote&gt;
	&lt;/li&gt;
&lt;/ul&gt;
&lt;h4&gt;
Locales 增加
&lt;/h4&gt;
&lt;p&gt;
要增加語系可以有下述兩種做法: (註: 語系列表可見: &lt;strong&gt;/usr/share/i18n/SUPPORTED&lt;/strong&gt;)
&lt;/p&gt;
&lt;ol&gt;
	&lt;li&gt;手動加入語系
	&lt;ul&gt;
		&lt;li&gt;vim /var/lib/locales/supported.d/zh # 隨意新增一個檔案(zh 這個檔名可隨意命名)
		&lt;blockquote&gt;
			zh_CN.UTF-8 UTF-8
			&lt;br /&gt;
			zh_SG.UTF-8 UTF-8
			&lt;br /&gt;
			zh_HK.UTF-8 UTF-8
			&lt;br /&gt;
			zh_TW.UTF-8 UTF-8
		&lt;/blockquote&gt;
		&lt;/li&gt;
	&lt;/ul&gt;
	&lt;/li&gt;
	&lt;li&gt;使用 locale-gen 加入語系
	&lt;blockquote&gt;
		&lt;ol&gt;
			&lt;li&gt;sudo locale-gen zh_TW&lt;/li&gt;
			&lt;li&gt;sudo locale-gen zh_TW.UTF-8&lt;/li&gt;
			&lt;li&gt;cat /var/lib/locales/supported.d/local # 加入完成後, 可於此檔案看到資訊&lt;/li&gt;
		&lt;/ol&gt;
	&lt;/blockquote&gt;
	&lt;/li&gt;
&lt;/ol&gt;
&lt;h4&gt;
重新建立 Locales
&lt;/h4&gt;
&lt;p&gt;
上述設定完成後, 執行重新建立的動作.
&lt;/p&gt;
&lt;ol&gt;
	&lt;li&gt;sudo locale-gen # 執行即可&lt;/li&gt;
	&lt;li&gt;完成可見: ls /usr/lib/locale # 語系檔資料庫. &lt;/li&gt;
&lt;/ol&gt;&lt;img src="http://feeds.feedburner.com/~r/tsungblog/~4/LxsyB5KDf2Q" height="1" width="1"/&gt;</description>
   <link>http://feedproxy.google.com/~r/tsungblog/~3/LxsyB5KDf2Q/ubuntu-910-add-set-locale-gen-2009</link>
   <comments>http://plog.longwin.com.tw/my_note-unix/2009/11/18/ubuntu-910-add-set-locale-gen-2009</comments>
   <guid isPermaLink="false">http://plog.longwin.com.tw/my_note-unix/2009/11/18/ubuntu-910-add-set-locale-gen-2009</guid>
      <dc:creator>jon</dc:creator>
      
    <category>My_Note-Unix</category>
         <pubDate>Wed, 18 Nov 2009 08:20:38 +0800</pubDate>
   <source url="http://plog.longwin.com.tw/rss.php?blogId=1&amp;profile=rss20">Tsung's Blog</source>
     <feedburner:origLink>http://plog.longwin.com.tw/my_note-unix/2009/11/18/ubuntu-910-add-set-locale-gen-2009</feedburner:origLink></item>
    <item>
   <title>線上環境的 MySQL 預設值修改(Jeremy 建議)</title>
   <description>&lt;p&gt;
MySQL 灌好後, 有某些預設值是有爭議的(或者說, 是很沒意義的), Jeremy 提出了幾點建議~
&lt;/p&gt;

&lt;p&gt;
下述取自 &lt;a href="http://jeremy.zawodny.com/" target="_blank" title="Jeremy Zawodny"&gt;Jeremy Zawodny&lt;/a&gt; 的文章: &lt;a href="http://jeremy.zawodny.com/blog/archives/011421.html" target="_blank" title="Fixing Poor MySQL Default Configuration Values"&gt;Fixing Poor MySQL Default Configuration Values&lt;/a&gt;.
&lt;/p&gt;
&lt;p&gt;
直接取重點, 就是把下面這幾行加到 /etc/mysql/my.cnf 最後面, 或者 /etc/mysql/conf.d/jeremy.cnf 裡.
&lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;max_connect_errors = 1844674407370954751&lt;/li&gt;
	&lt;li&gt;connect_timeout = 20&lt;/li&gt;
	&lt;li&gt;&lt;strong&gt;skip-name-resolve&lt;/strong&gt;&lt;/li&gt;
	&lt;li&gt;slave_net_timeout = 30&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;
為何要加這些, 可以參考原文, 或者參考 DK 此篇文章: &lt;a href="http://blog.gslin.org/archives/2009/11/10/2154/" target="_blank" title="無論如何都應該修改的 MySQL 預設值"&gt;無論如何都應該修改的 MySQL 預設值&lt;/a&gt;.
&lt;/p&gt;
&lt;h4&gt;
相關網頁
&lt;/h4&gt;
&lt;ul&gt;
	&lt;li&gt;&lt;a href="http://blog.wu-boy.com/2009/11/20/1851/" target="_blank" title="[MySQL] 必要修正一些預設值 (performance tunning)"&gt;[MySQL] 必要修正一些預設值 (performance tunning)&lt;/a&gt; &lt;/li&gt;
&lt;/ul&gt;&lt;img src="http://feeds.feedburner.com/~r/tsungblog/~4/x1_nt4gU1eA" height="1" width="1"/&gt;</description>
   <link>http://feedproxy.google.com/~r/tsungblog/~3/x1_nt4gU1eA/mysql-default-value-modify-by-jeremy-2009</link>
   <comments>http://plog.longwin.com.tw/my_note-unix/2009/11/17/mysql-default-value-modify-by-jeremy-2009</comments>
   <guid isPermaLink="false">http://plog.longwin.com.tw/my_note-unix/2009/11/17/mysql-default-value-modify-by-jeremy-2009</guid>
      <dc:creator>jon</dc:creator>
      
    <category>My_Note-Unix</category>
         <pubDate>Tue, 17 Nov 2009 09:09:39 +0800</pubDate>
   <source url="http://plog.longwin.com.tw/rss.php?blogId=1&amp;profile=rss20">Tsung's Blog</source>
     <feedburner:origLink>http://plog.longwin.com.tw/my_note-unix/2009/11/17/mysql-default-value-modify-by-jeremy-2009</feedburner:origLink></item>
    <item>
   <title>MPlayer 關閉錯誤訊息 (Linux)</title>
   <description>&lt;p&gt;
自從升級到 Ubuntu Linux 9.10 後, MPlayer 的錯誤訊息還不少.
&lt;/p&gt;
&lt;p&gt;
錯誤訊息在命令列就算了, 麻煩的是看到一半彈跳個錯誤視窗出來, 再來需要按掉才能繼續播放. =.=|||
&lt;/p&gt;

&lt;p&gt;
這種事情發生在休閒看影片的時刻, 實在不是很舒服~ 於是來將錯誤訊息關掉, 眼不見為淨~ XD
&lt;/p&gt;
&lt;h4&gt;
參數
&lt;/h4&gt;
&lt;blockquote&gt;
	&lt;p&gt;
	-msglevel &amp;lt;all=&amp;lt;level&amp;gt;:&amp;lt;module&amp;gt;=&amp;lt;level&amp;gt;:...&amp;gt;
	&lt;/p&gt;
	&lt;ul&gt;
		&lt;li&gt;-1 complete silence&lt;/li&gt;
		&lt;li&gt;0&amp;nbsp; fatal messages only&lt;/li&gt;
		&lt;li&gt;1&amp;nbsp; error messages&lt;/li&gt;
		&lt;li&gt;2&amp;nbsp; warning messages&lt;/li&gt;
		&lt;li&gt;3&amp;nbsp; short hints&lt;/li&gt;
		&lt;li&gt;4&amp;nbsp; informational messages&lt;/li&gt;
		&lt;li&gt;5&amp;nbsp; status messages (default)&lt;/li&gt;
		&lt;li&gt;6&amp;nbsp; verbose messages&lt;/li&gt;
		&lt;li&gt;7&amp;nbsp; debug level 2&lt;/li&gt;
		&lt;li&gt;8&amp;nbsp; debug level 3&lt;/li&gt;
		&lt;li&gt;9&amp;nbsp; debug level 4&lt;/li&gt;
	&lt;/ul&gt;
&lt;/blockquote&gt;
&lt;p&gt;
範例: &lt;strong&gt;mplayer -msglevel all=-1&lt;/strong&gt; # 這樣子 mplayer 就不會秀錯誤訊息出來囉~
&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/tsungblog/~4/R2DN7hylE5Q" height="1" width="1"/&gt;</description>
   <link>http://feedproxy.google.com/~r/tsungblog/~3/R2DN7hylE5Q/mplayer-disable-error-message-2009</link>
   <comments>http://plog.longwin.com.tw/my_note-unix/2009/11/16/mplayer-disable-error-message-2009</comments>
   <guid isPermaLink="false">http://plog.longwin.com.tw/my_note-unix/2009/11/16/mplayer-disable-error-message-2009</guid>
      <dc:creator>jon</dc:creator>
      
    <category>My_Note-Unix</category>
         <pubDate>Mon, 16 Nov 2009 00:37:53 +0800</pubDate>
   <source url="http://plog.longwin.com.tw/rss.php?blogId=1&amp;profile=rss20">Tsung's Blog</source>
     <feedburner:origLink>http://plog.longwin.com.tw/my_note-unix/2009/11/16/mplayer-disable-error-message-2009</feedburner:origLink></item>
    <item>
   <title>新程式語言 Vim - Zimbu, Google - Go</title>
   <description>&lt;p&gt;
現在開始流行開發程式語言? 大家都要寫一套~ XD
&lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;&lt;a href="http://www.vim.org/" target="_blank" title="welcome home : vim online"&gt;Vim&lt;/a&gt; 作者 &lt;a href="http://en.wikipedia.org/wiki/Bram_Moolenaar" target="_blank" title="Bram Moolenaar - Wikipedia"&gt;Bram Moolenaar&lt;/a&gt; 開發新程式語言 - &lt;a href="http://www.zimbu.org/" target="_blank" title="Home (the Zimbu programming language)"&gt;Zimbu&lt;/a&gt;.&lt;/li&gt;
	&lt;li&gt;&lt;a href="http://www.google.com/" target="_blank" title="Google"&gt;Google&lt;/a&gt; 開發新的程式語言 - &lt;a href="http://golang.org/" target="_blank" title="The Go Programming Language"&gt;Go&lt;/a&gt;.&lt;/li&gt;
&lt;/ul&gt;

&lt;h4&gt;
新聞
&lt;/h4&gt;
&lt;ul&gt;
	&lt;li&gt;&lt;a href="http://developers.solidot.org/article.pl?sid=09/11/10/0733216" target="_blank" title="Vim作者 創造新程式語言 Zimbu"&gt;Vim作者 創造新程式語言 Zimbu&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a href="http://www.ithome.com.tw/itadm/article.php?c=58033" target="_blank" title="Google發表新的程式語言「Go」"&gt;Google發表新的程式語言「Go」&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h4&gt;
Zimbu 特色
&lt;/h4&gt;
&lt;ul&gt;
	&lt;li&gt;Zimbu 官方網站: &lt;a href="http://www.zimbu.org/" target="_blank" title="Home (the Zimbu programming language)"&gt;Home (the Zimbu programming language)&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;Zimbu 下載: &lt;a href="http://code.google.com/p/zimbu/" target="_blank" title="zimbu - A no-nonsense programming language"&gt;zimbu - A no-nonsense programming language&lt;/a&gt; (Google Code)&lt;/li&gt;
	&lt;li&gt;下述取自 官方首頁: (Zimbu 要打倒的對象. XD)
	&lt;ul&gt;
		&lt;li&gt;It has to be as fast as possible, so interpreted languages are out.&lt;/li&gt;
		&lt;li&gt;You don't want to micro manage memory, so C is out.&lt;/li&gt;
		&lt;li&gt;You don't want to require programmers to have a degree, so C++ is out.&lt;/li&gt;
		&lt;li&gt;You want fast startup and not depend on a big runtime, so Java is out.&lt;/li&gt;
		&lt;li&gt;It has to run on most systems, anything with a C compiler, so D is out.&lt;/li&gt;
		&lt;li&gt;You want to have fun making something new.&lt;/li&gt;
	&lt;/ul&gt;
	&lt;/li&gt;
&lt;/ul&gt;
&lt;h4&gt;
Zimbu 範例
&lt;/h4&gt;
&lt;h5&gt;
hello.zu
&lt;/h5&gt;
&lt;blockquote&gt;
	&lt;code&gt;
	MAIN()&lt;br /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp; IO.write(&amp;quot;Hello, World!\n&amp;quot;)&lt;br /&gt;
	}
	&lt;/code&gt;
&lt;/blockquote&gt;
&lt;p&gt;
看完此 Hello world 的範例, 如果要學的話, Vim 的縮排又要開始頭痛了~
&lt;/p&gt;
&lt;h4&gt;
Go 特色
&lt;/h4&gt;
&lt;ul&gt;
	&lt;li&gt;官方網頁: &lt;a href="http://golang.org/" target="_blank" title="The Go Programming Language"&gt;The Go Programming Language&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;下述取自 官方網頁:
	&lt;ul&gt;
		&lt;li&gt;a systems programming language&lt;/li&gt;
		&lt;li&gt;expressive, concurrent, garbage-collected&lt;/li&gt;
		&lt;li&gt;simple, fast, safe, concurrent, fun, open source&lt;/li&gt;
	&lt;/ul&gt;
	&lt;/li&gt;
&lt;/ul&gt;
&lt;h5&gt;
hello.go
&lt;/h5&gt;
&lt;blockquote&gt;
	&lt;code&gt;
	package main&lt;br /&gt;
	&amp;nbsp;&lt;br /&gt;
	import &amp;quot;fmt&amp;quot;&lt;br /&gt;
	&amp;nbsp;&lt;br /&gt;
	func main() {&lt;br /&gt;
	&amp;nbsp; fmt.Printf(&amp;quot;Hello, 世界\n&amp;quot;)&lt;br /&gt;
	}
	&lt;/code&gt;
&lt;/blockquote&gt;
&lt;p&gt;
註: 上述是官方首頁的完整範例, &amp;quot;世界&amp;quot; &lt;strike&gt;確實是打中文沒錯~ :)&lt;/strike&gt; 是漢字. XD
&lt;/p&gt;
&lt;h4&gt;
Go 語法 範例
&lt;/h4&gt;
&lt;blockquote&gt;
	&lt;code&gt;
	package main&lt;br /&gt;
	&amp;nbsp;&lt;br /&gt;
	import fmt &amp;quot;fmt&amp;quot;&lt;br /&gt;
	&amp;nbsp;&lt;br /&gt;
	const (&lt;br /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Space = &amp;quot; &amp;quot;;&lt;br /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; )&lt;br /&gt;
	&amp;nbsp;&lt;br /&gt;
	func main() {&lt;br /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp; var s string = &amp;quot;&amp;quot;;&lt;br /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp; for i := 0; i &amp;lt; 10; i++ {&lt;br /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if i &amp;gt; 0 {&lt;br /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; s += Space&lt;br /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; s += &amp;quot;foo&amp;quot;&lt;br /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br /&gt;
	&amp;nbsp;&lt;br /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp; var a int;&lt;br /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp; b := 0;&lt;br /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp; c := 0;&lt;br /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp; switch {&lt;br /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; case a &amp;lt; b:&lt;br /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; c = -1&lt;br /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; case a == b:&lt;br /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; c = 0&lt;br /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; case a &amp;gt; b:&lt;br /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; c = 1&lt;br /&gt;
	&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br /&gt;
	}
	&lt;/code&gt;
&lt;/blockquote&gt;
&lt;h4&gt;
相關網頁 
&lt;/h4&gt;
&lt;ul&gt;
	&lt;li&gt;
	&lt;a href="http://blogoscoped.com/archive/2009-11-11-n75.html" target="_blank" title="Go, a Programming Language by Google"&gt;Go, a Programming Language by Google&lt;/a&gt;
	&lt;/li&gt;
	&lt;li&gt;&lt;a href="http://google-opensource.blogspot.com/2009/11/hey-ho-lets-go.html" target="_blank" title="Google Open Source Blog: Hey! Ho! Let's Go!"&gt;Google Open Source Blog: Hey! Ho! Let's Go!&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;img src="http://feeds.feedburner.com/~r/tsungblog/~4/XQSxpu_thbE" height="1" width="1"/&gt;</description>
   <link>http://feedproxy.google.com/~r/tsungblog/~3/XQSxpu_thbE/program-language-vim-zimbu-google-go-2009</link>
   <comments>http://plog.longwin.com.tw/news-technology/2009/11/13/program-language-vim-zimbu-google-go-2009</comments>
   <guid isPermaLink="false">http://plog.longwin.com.tw/news-technology/2009/11/13/program-language-vim-zimbu-google-go-2009</guid>
      <dc:creator>jon</dc:creator>
      
    <category>News-Technology</category>
         <pubDate>Fri, 13 Nov 2009 09:43:39 +0800</pubDate>
   <source url="http://plog.longwin.com.tw/rss.php?blogId=1&amp;profile=rss20">Tsung's Blog</source>
     <feedburner:origLink>http://plog.longwin.com.tw/news-technology/2009/11/13/program-language-vim-zimbu-google-go-2009</feedburner:origLink></item>
    <item>
   <title>Linux 文字模式 螢幕畫面共享 - 使用Screen</title>
   <description>&lt;p&gt;
Linux 於 shell 要教學、操作給遠端的人看, 有什麼辦法可以邊操作, 讓遠端的人一邊都可以看到, 甚至遠端的人也可以一起動手修改、練習?
&lt;/p&gt;

&lt;h4&gt;
工具 - 使用 Screen
&lt;/h4&gt;
&lt;ul&gt;
	&lt;li&gt;使用: screen -x (Multi display mode)&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;
screen 就可以做到這件事, 本來 screen 進去後, 若自己用另外一台機器登入, 想要進去原先登入的 screen, 就必須要用 screen -dr, 把之前登入的強制踢除.
&lt;/p&gt;
&lt;p&gt;
若不想踢除, 只是臨時想看看而已, 可以使用 screen -x 達到, 例如:
&lt;/p&gt;
&lt;ol&gt;
	&lt;li&gt;註: 下述 PC-A, PC-B 是兩台電腦, 但是都 &lt;strong&gt;登入到同一台 Server, 使用同一個帳號.&lt;/strong&gt;&lt;/li&gt;
	&lt;li&gt;PC-A: screen -S irc # 開啟一個 名為 irc 的 screen&lt;/li&gt;
	&lt;li&gt;PC-B: screen -x irc # PC-B 也可以看到 PC-A 的畫面, 與 PC-A 一同操作&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;
若是 不同人、帳號, 可以考慮折衷方案 =&amp;gt; 都變成 root (若都有 sudo 權限的話)
&lt;/p&gt;
&lt;h4&gt;
步驟
&lt;/h4&gt;
&lt;ol&gt;
	&lt;li&gt;在&lt;strong&gt;同一台機器&lt;/strong&gt;上的 USER-A, USER-B 由 USER-A 先建立 screen, 讓 USER-B 進來觀看(當然 USER-B 也是可以操作)&lt;/li&gt;
	&lt;li&gt;USER-A: sudo su - # 變成 root &lt;/li&gt;
	&lt;li&gt;USER-A: screen # 或 screen -S demo 都可以, 看要不要指定名稱 &lt;/li&gt;
	&lt;li&gt;USER-B: sudo su - # 變成 root &lt;/li&gt;
	&lt;li&gt;USER-B: screen -x # 或 screen -x demo &lt;/li&gt;
	&lt;li&gt;這樣 此畫面 打的任何資料, 雙方就都可以互相看見囉~&lt;/li&gt;
	&lt;li&gt;註1: 若 Ctrl + a 切到其它畫面, 另一方是看不見的&lt;/li&gt;
	&lt;li&gt;註2: 若畫面亂亂的, Ctrl + l 可以將畫面整理乾淨.&lt;/li&gt;
&lt;/ol&gt;
&lt;h4&gt;
相關網頁
&lt;/h4&gt;
&lt;ul&gt;
	&lt;li&gt;&lt;a href="http://blog.chinaunix.net/u1/40349/showart_1710869.html" target="_blank" title="Linux 文字模式下的 &amp;quot;遠端桌面共享&amp;quot; 及 螢幕錄制"&gt;Linux 文字模式下的 &amp;quot;遠端桌面共享&amp;quot; 及 螢幕錄制&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a href="http://www.51testing.com/?uid-159438-action-viewspace-itemid-133370" target="_blank" title="Linux 下共享 screen 進行協作"&gt;Linux 下共享 screen 進行協作&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a href="http://www.51testing.com/?uid-159438-action-viewspace-itemid-133521" target="_blank" title="使用 screen 與 expect 共享 shell"&gt;使用 screen 與 expect 共享 shell&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;img src="http://feeds.feedburner.com/~r/tsungblog/~4/A-7ER1GrEtw" height="1" width="1"/&gt;</description>
   <link>http://feedproxy.google.com/~r/tsungblog/~3/A-7ER1GrEtw/linux-monitor-share-screen-2009</link>
   <comments>http://plog.longwin.com.tw/my_note-unix/2009/11/12/linux-monitor-share-screen-2009</comments>
   <guid isPermaLink="false">http://plog.longwin.com.tw/my_note-unix/2009/11/12/linux-monitor-share-screen-2009</guid>
      <dc:creator>jon</dc:creator>
      
    <category>My_Note-Unix</category>
         <pubDate>Thu, 12 Nov 2009 10:19:10 +0800</pubDate>
   <source url="http://plog.longwin.com.tw/rss.php?blogId=1&amp;profile=rss20">Tsung's Blog</source>
     <feedburner:origLink>http://plog.longwin.com.tw/my_note-unix/2009/11/12/linux-monitor-share-screen-2009</feedburner:origLink></item>
    <item>
   <title>大陸新浪網 的 App Engine</title>
   <description>&lt;p&gt;
大陸在新浪網(Sina)推出 Sina App Engine(SAE), 一樣是號稱 雲端運算, 而這個 App Engine 環境支援下述:
&lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;PHP 5.3.0&lt;/li&gt;
	&lt;li&gt;Mysql 5.0.86&lt;/li&gt;
	&lt;li&gt;Memcache&lt;/li&gt;
	&lt;li&gt;Fetch URL&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;
不過需要邀請碼, 暫時是沒機會使用了,&amp;nbsp;
真想玩玩看~ 
&lt;/p&gt;

&lt;h4&gt;
官方網頁
&lt;/h4&gt;
&lt;ul&gt;
	&lt;li&gt;&lt;a href="http://sae.sina.com.cn/" target="_blank" title="Sina App Engine"&gt;Sina App Engine&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a href="http://blog.sae.sina.com.cn/" target="_blank" title="Sina App Engine Blog"&gt;Sina App Engine Blog&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h4&gt;
文件
&lt;/h4&gt;
&lt;ul&gt;
	&lt;li&gt;&lt;a href="http://wiki.sae.sina.com.cn/doku.php" target="_blank" title="SAE 開發者文件中心"&gt;SAE 開發者文件中心&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a href="http://wiki.sae.sina.com.cn/doku.php?id=sae%E8%BF%90%E8%A1%8C%E7%8E%AF%E5%A2%83%E6%8C%87%E5%8D%97#%E8%BF%90%E8%A1%8C%E7%8E%AF%E5%A2%83%E7%AE%80%E4%BB%8B" target="_blank" title="運行環境簡介"&gt;運行環境簡介&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a href="http://wiki.sae.sina.com.cn/doku.php?id=sae_mysql" target="_blank" title="sae_mysql"&gt;sae_mysql&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a href="http://wiki.sae.sina.com.cn/doku.php?id=cron%E4%BD%BF%E7%94%A8%E7%AE%80%E4%BB%8B#cron%E4%BD%BF%E7%94%A8%E7%AE%80%E4%BB%8B" target="_blank" title="Cron 使用簡介"&gt;Cron 使用簡介&lt;/a&gt; &lt;/li&gt;
&lt;/ul&gt;&lt;img src="http://feeds.feedburner.com/~r/tsungblog/~4/9yYz3IkHNSQ" height="1" width="1"/&gt;</description>
   <link>http://feedproxy.google.com/~r/tsungblog/~3/9yYz3IkHNSQ/sina-app-engine-cn-2009</link>
   <comments>http://plog.longwin.com.tw/news-application/2009/11/11/sina-app-engine-cn-2009</comments>
   <guid isPermaLink="false">http://plog.longwin.com.tw/news-application/2009/11/11/sina-app-engine-cn-2009</guid>
      <dc:creator>jon</dc:creator>
      
    <category>News-Application</category>
         <pubDate>Wed, 11 Nov 2009 10:15:36 +0800</pubDate>
   <source url="http://plog.longwin.com.tw/rss.php?blogId=1&amp;profile=rss20">Tsung's Blog</source>
     <feedburner:origLink>http://plog.longwin.com.tw/news-application/2009/11/11/sina-app-engine-cn-2009</feedburner:origLink></item>
    <item>
   <title>Google Dashboard, Web History - 個人 設定、隱私資料庫</title>
   <description>&lt;p&gt;
Google 到底儲存多少資料? Google 在我們的操作過程紀錄多少東西?
&lt;/p&gt;

&lt;h4&gt;
操作、使用紀錄查詢
&lt;/h4&gt;
&lt;ul&gt;
	&lt;li&gt;&lt;a href="https://www.google.com/dashboard" target="_blank" title="Google Dashboard"&gt;Google Dashboard&lt;/a&gt; - 管理所有網路服務設定&lt;/li&gt;
	&lt;li&gt;&lt;a href="http://www.google.com/history/" target="_blank" title="Web History"&gt;Web History&lt;/a&gt; - 網頁紀錄, 所有搜尋結果使用行為&lt;/li&gt;
&lt;/ul&gt;
&lt;h4&gt;
Google Dashboard 
&lt;/h4&gt;
&lt;p&gt;
Google 推出 Google Dashboard 的服務, 目前裡面有 Blogger、Gmail、Calendar、Docs、Web History、Orkut、YouTube、Picasa、GTalk、Reader ... 等等.
&lt;/p&gt;
&lt;p&gt;
凡走過必留下痕跡, 只要用過 Google 的服務, 都會在 Google Dashboard 留下足跡.
&lt;/p&gt;
&lt;h4&gt;
Google Web History 
&lt;/h4&gt;
&lt;p&gt;
不過 Dashboard 紀錄是都還好, 在中間看到 Web History 的紀錄, 不知道何時跑出這種服務, 而且我的使用量還蠻高的.
&lt;/p&gt;
&lt;p&gt;
原來這服務把 我在 幾點幾分 搜尋過哪個字, 搜尋結果頁, 點幾個連結、點第幾個連結 等等, 都紀錄的一清二楚, 而且知道我何時做什麼事情. (看起來比 Google Calendar 還方便. XD)
&lt;/p&gt;
&lt;p&gt;
但是從另一個角度看, 這個工具蠻恐佈的, 某些不該查, 不該看的, 也都會被紀錄下來.
&lt;/p&gt;
&lt;p&gt;
想要避免這種事情, 這個工具左邊選單下方, 有 &lt;q&gt;暫停&lt;/q&gt;、&lt;q&gt;移除項目&lt;/q&gt; 可以用, 可以將這些紀錄全部移除.
&lt;/p&gt;
&lt;p&gt;
如果不想再被有任何紀錄, 可以點 &lt;q&gt;暫停&lt;/q&gt;, 就不會再紀錄了. (這個服務是 by Google Email Account 為單位)
&lt;/p&gt;
&lt;h4&gt;
相關網頁
&lt;/h4&gt;
&lt;ul&gt;
	&lt;li&gt;&lt;a href="http://www.ithome.com.tw/itadm/article.php?c=57964" target="_blank" title="Google Dashboard上線 助你管理所有網路服務設定"&gt;
	Google Dashboard上線 助你管理所有網路服務設定&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a href="http://brownywalking.blogspot.com/2009/11/google-dashboard-web-history.html" target="_blank" title="原來真正恐怖的不是 Google Dashboard 而是 Web History"&gt;原來真正恐怖的不是 Google Dashboard 而是 Web History&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;img src="http://feeds.feedburner.com/~r/tsungblog/~4/oh3ZNtcXDzY" height="1" width="1"/&gt;</description>
   <link>http://feedproxy.google.com/~r/tsungblog/~3/oh3ZNtcXDzY/google-private-dashboard-web-history-db-2009</link>
   <comments>http://plog.longwin.com.tw/news-google-yahoo/2009/11/10/google-private-dashboard-web-history-db-2009</comments>
   <guid isPermaLink="false">http://plog.longwin.com.tw/news-google-yahoo/2009/11/10/google-private-dashboard-web-history-db-2009</guid>
      <dc:creator>jon</dc:creator>
      
    <category>News-Google-Yahoo</category>
         <pubDate>Tue, 10 Nov 2009 11:01:47 +0800</pubDate>
   <source url="http://plog.longwin.com.tw/rss.php?blogId=1&amp;profile=rss20">Tsung's Blog</source>
     <feedburner:origLink>http://plog.longwin.com.tw/news-google-yahoo/2009/11/10/google-private-dashboard-web-history-db-2009</feedburner:origLink></item>
    <item>
   <title>Linux 掛載 MDF 檔案(Mount)</title>
   <description>&lt;p&gt;
Debian / Ubuntu Linux 要將 mdf 檔案掛載(Mount)起來, 跟掛載 ISO 命令一樣, 只要掛對檔案, 就可以很輕易掛載起來.
&lt;/p&gt;

&lt;p&gt;
&lt;strong&gt;要記得是 掛載 MDF, 而不是 MDS.&lt;/strong&gt; (註: 此篇最大重點就是要紀錄這句話, 掛錯檔案會讓你白忙一個下午. orz)
&lt;/p&gt;
&lt;h4&gt;
掛載命令(Mount)
&lt;/h4&gt;
&lt;blockquote&gt;
	&lt;ul&gt;
		&lt;li&gt;mount -o loop -t iso9660 filename.mdf /media/cdrom&lt;/li&gt;
	&lt;/ul&gt;
&lt;/blockquote&gt;
&lt;h4&gt;
相關網頁
&lt;/h4&gt;
&lt;ul&gt;
	&lt;li&gt;&lt;a href="http://plog.longwin.com.tw/my_note-unix/2006/03/28/mount_iso_file_command_2006" target="_blank" title="Mount ISO File 命令"&gt;Mount ISO File 命令&lt;/a&gt; &lt;/li&gt;
&lt;/ul&gt;&lt;img src="http://feeds.feedburner.com/~r/tsungblog/~4/rBwB4qscyzQ" height="1" width="1"/&gt;</description>
   <link>http://feedproxy.google.com/~r/tsungblog/~3/rBwB4qscyzQ/linux-mount-mdf-file-command-2009</link>
   <comments>http://plog.longwin.com.tw/my_note-unix/2009/11/09/linux-mount-mdf-file-command-2009</comments>
   <guid isPermaLink="false">http://plog.longwin.com.tw/my_note-unix/2009/11/09/linux-mount-mdf-file-command-2009</guid>
      <dc:creator>jon</dc:creator>
      
    <category>My_Note-Unix</category>
         <pubDate>Mon, 09 Nov 2009 00:32:41 +0800</pubDate>
   <source url="http://plog.longwin.com.tw/rss.php?blogId=1&amp;profile=rss20">Tsung's Blog</source>
     <feedburner:origLink>http://plog.longwin.com.tw/my_note-unix/2009/11/09/linux-mount-mdf-file-command-2009</feedburner:origLink></item>
   </channel>
</rss>
