<?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/"
	xmlns:creativeCommons="http://backend.userland.com/creativeCommonsRssModule"
>

<channel>
	<title>小斌睡著了&#187; 未分類</title>
	<atom:link href="http://shiaobin.dyndns.org/blog/archives/category/%e6%9c%aa%e5%88%86%e9%a1%9e/feed" rel="self" type="application/rss+xml" />
	<link>http://shiaobin.dyndns.org/blog</link>
	<description>原創風行 Ctrl [V]</description>
	<lastBuildDate>Wed, 21 Oct 2009 20:38:35 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<creativeCommons:license>http://creativecommons.org/licenses/by-sa/2.5/tw/</creativeCommons:license>
	
<!-- Start Of Script Generated By WP-PostViews Plus -->
<script type='text/javascript' src='http://shiaobin.dyndns.org/blog/wp-includes/js/jquery/jquery.js?ver=1.3.2'></script>
<script type="text/javascript">
/* <![CDATA[ */
/* ]]> */
</script>
<!-- End Of Script Generated By WP-PostViews Plus -->
	<item>
		<title>Plurk 自動發噗保卡馬</title>
		<link>http://shiaobin.dyndns.org/blog/archives/159</link>
		<comments>http://shiaobin.dyndns.org/blog/archives/159#comments</comments>
		<pubDate>Sun, 11 Oct 2009 22:05:59 +0000</pubDate>
		<dc:creator>小斌</dc:creator>
				<category><![CDATA[未分類]]></category>
		<category><![CDATA[技術指南]]></category>
		<category><![CDATA[資訊技術]]></category>

		<guid isPermaLink="false">http://shiaobin.dyndns.org/blog/?p=159</guid>
		<description><![CDATA[有時可能會有一段時間沒辦法用 Plurk 。此時如果不想讓卡馬下降，除了開啟假期模式以外，也可以參考「never4get 的記事本: [PHP 筆記] 發個私噗給自己」，利用程式定時自動發私噗給自己。在這裡稍微說明一下利用 Ubuntu Linux 系統實做的步驟。


Ubuntu 系統預設是沒有 CLI 跟 cURL 的，所以執行以下的指令來安裝：
sudo apt-get install php5-cli php5-curl

安裝完 cURL 之後，執行以下的指令重新啟動 Apache ，這樣 cURL 才會生效：
sudo /etc/init.d/apache2 restart

之後，新增 plurkbot.php ，內容如下：
&#60;?php
	header('Content-type:text/html; charset=utf-8');
	define('NICKNAME', ''); //輸入 PLURK 的帳號
	define('PASSWORD', ''); //輸入 PLURK 的密碼
	$user_id = getid(NICKNAME);
	define('USER_ID', &#34;$user_id&#34;);
	set_time_limit(240);

	// login
	$ch = curl_init();
	curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
	curl_setopt($ch, CURLOPT_COOKIEJAR, '\plurk_cookie_n.txt');
	curl_setopt($ch, CURLOPT_URL, 'http://www.plurk.com/Users/login');
	curl_setopt($ch, CURLOPT_POSTFIELDS, 'nick_name='.NICKNAME.'&#38;password='.PASSWORD);
	curl_exec($ch);
	curl_close($ch);

	//

	date_default_timezone_set(&#34;Asia/Taipei&#34;);
	$out = date(&#34;Y-m-d H:i:s&#34;);
	echo [...]]]></description>
			<content:encoded><![CDATA[<p>有時可能會有一段時間沒辦法用 Plurk 。此時如果不想讓卡馬下降，除了開啟假期模式以外，也可以參考「<a href="http://i-never4get.blogspot.com/2009/04/php.html">never4get 的記事本: [PHP 筆記] 發個私噗給自己</a>」，利用程式定時自動發私噗給自己。在這裡稍微說明一下利用 Ubuntu Linux 系統實做的步驟。</p>
<p><span id="more-159"></span></p>
<ol>
<li>Ubuntu 系統預設是沒有 CLI 跟 cURL 的，所以執行以下的指令來安裝：</p>
<pre class="brush: bash;">sudo apt-get install php5-cli php5-curl</pre>
</li>
<li>安裝完 cURL 之後，執行以下的指令重新啟動 Apache ，這樣 cURL 才會生效：
<pre class="brush: bash;">sudo /etc/init.d/apache2 restart</pre>
</li>
<li>之後，新增 plurkbot.php ，內容如下：
<pre class="brush: php;">&lt;?php
	header('Content-type:text/html; charset=utf-8');
	define('NICKNAME', ''); //輸入 PLURK 的帳號
	define('PASSWORD', ''); //輸入 PLURK 的密碼
	$user_id = getid(NICKNAME);
	define('USER_ID', &quot;$user_id&quot;);
	set_time_limit(240);

	// login
	$ch = curl_init();
	curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
	curl_setopt($ch, CURLOPT_COOKIEJAR, '\plurk_cookie_n.txt');
	curl_setopt($ch, CURLOPT_URL, 'http://www.plurk.com/Users/login');
	curl_setopt($ch, CURLOPT_POSTFIELDS, 'nick_name='.NICKNAME.'&amp;password='.PASSWORD);
	curl_exec($ch);
	curl_close($ch);

	//

	date_default_timezone_set(&quot;Asia/Taipei&quot;);
	$out = date(&quot;Y-m-d H:i:s&quot;);
	echo $out;
	post($out);

	function post($message){
		// post
		$ch3 = curl_init();
		curl_setopt($ch3, CURLOPT_COOKIEFILE, '\plurk_cookie_n.txt');
		curl_setopt($ch3, CURLOPT_URL, 'http://www.plurk.com/TimeLine/addPlurk');
		curl_setopt($ch3, CURLOPT_POSTFIELDS, 'qualifier=gives&amp;limited_to=%5B'.USER_ID.'%5D&amp;lang=tr_ch&amp;uid='.USER_ID.'&amp;no_comments=0&amp;content='.$message);
		curl_exec($ch3);
		curl_close($ch3);
	}

	function getid($name){
		$ourl= 'http://plurk.com/'.NICKNAME;
		$fid = file_get_contents($ourl);
		preg_match('/user_id\&quot;: (.*?)\,/s',$fid,$matches);
		$u_id = $matches[1];
		return($u_id);
	}
?&gt;</pre>
<p>帳號跟密碼記得要設定唷。確認一下 plurkbot.php 的絕對路徑；這裡以 &quot;/home/username/bin/plurkbot.php&quot; 為例。</li>
<li>最後，再利用 crontab 讓這個程式定期自動執行即可。執行：
<pre class="brush: bash;">crontab -e</pre>
<p>新增以下內容：</p>
<pre class="brush: plain;"># 每隔四小時噗浪自動發噗
0 */4 * * * /usr/bin/php /home/username/bin/plurkbot.php</pre>
<p>這裡的 &quot;/home/username/bin/plurkbot.php&quot; 應該要跟剛剛確認過的 plurkbot.php 絕對路徑相同。</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://shiaobin.dyndns.org/blog/archives/159/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-sa/2.5/tw/</creativeCommons:license>
	</item>
		<item>
		<title>逢甲經典美味 &#8211; 新大陸雞排</title>
		<link>http://shiaobin.dyndns.org/blog/archives/147</link>
		<comments>http://shiaobin.dyndns.org/blog/archives/147#comments</comments>
		<pubDate>Wed, 23 Sep 2009 22:15:47 +0000</pubDate>
		<dc:creator>小斌</dc:creator>
				<category><![CDATA[未分類]]></category>
		<category><![CDATA[日記]]></category>
		<category><![CDATA[生活]]></category>

		<guid isPermaLink="false">http://shiaobin.dyndns.org/blog/?p=147</guid>
		<description><![CDATA[餓了，想說很久沒吃過，來到了快半年沒去新大陸雞排買點宵夜。在吃宵夜的同時，特地寫一篇文章來紀念這間店。

到了雞排店，發現工讀生又換了別人。仔細想想，我已經來逢甲八年了。八年以來，新大陸雞排的招牌沒換，食材也都一樣，就連旁邊漏水的水龍頭也是跟以前一樣。不同的是，在雞排店顧攤的工讀生已經陸續換了三個了，不禁令人有景物依舊而人事已非之感慨。
依照慣例，買了必點的百葉豆腐、熱狗、雞米花、雞皮，回到了宿舍開始食用。嗯，口味還是跟之前一樣都沒變，還是那麼好吃。或許，這就是所謂的「經典美味」吧。

新大陸雞排，逢甲的經典美味，歷久而彌新。
]]></description>
			<content:encoded><![CDATA[<p>餓了，想說很久沒吃過，來到了快半年沒去新大陸雞排買點宵夜。在吃宵夜的同時，特地寫一篇文章來紀念這間店。</p>
<p><span id="more-147"></span></p>
<p>到了雞排店，發現工讀生又換了別人。仔細想想，我已經來逢甲八年了。八年以來，新大陸雞排的招牌沒換，食材也都一樣，就連旁邊漏水的水龍頭也是跟以前一樣。不同的是，在雞排店顧攤的工讀生已經陸續換了三個了，不禁令人有景物依舊而人事已非之感慨。</p>
<p>依照慣例，買了必點的百葉豆腐、熱狗、雞米花、雞皮，回到了宿舍開始食用。嗯，口味還是跟之前一樣都沒變，還是那麼好吃。或許，這就是所謂的「經典美味」吧。</p>
<p><a href="http://shiaobin.dyndns.org/blog/wp-content/uploads/2009/09/dsc00911.jpg"><img class="alignnone size-medium wp-image-149" title="新大陸雞排" src="http://shiaobin.dyndns.org/blog/wp-content/uploads/2009/09/dsc00911-300x225.jpg" alt="新大陸雞排" width="300" height="225" /></a></p>
<p>新大陸雞排，逢甲的經典美味，歷久而彌新。</p>
]]></content:encoded>
			<wfw:commentRss>http://shiaobin.dyndns.org/blog/archives/147/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-sa/2.5/tw/</creativeCommons:license>
	</item>
		<item>
		<title>更換了佈景主題</title>
		<link>http://shiaobin.dyndns.org/blog/archives/131</link>
		<comments>http://shiaobin.dyndns.org/blog/archives/131#comments</comments>
		<pubDate>Fri, 18 Sep 2009 11:47:01 +0000</pubDate>
		<dc:creator>小斌</dc:creator>
				<category><![CDATA[未分類]]></category>
		<category><![CDATA[日記]]></category>
		<category><![CDATA[資訊技術]]></category>

		<guid isPermaLink="false">http://shiaobin.dyndns.org/blog/?p=131</guid>
		<description><![CDATA[之前很懶惰，一直都用預設的佈景已久。今天，終於換了新的佈景，總算讓網誌看起來稍微不太一樣了。特別寫這篇文章，是為了紀念以及紀錄這次更換佈景主題的事情。


新舊比一比（點小圖看大圖）


之前網誌看起來像這樣：
現在網誌看起來像這樣：







新的佈景看起來似乎比較多彩，也比較好看。順道一提，頁首那隻貓是我們家的貓，叫做布丁。如果您有興趣的話，這裡有原照片可讓您看看（點小圖看大圖）：

以下是比較技術性的內容，提供給那些可能也想要試試這個佈景主題的人們參考：

佈景主題名稱：Connections Reloaded（可直接從管理後台內建的「新增佈景主題」找到）
由我所作的修改有這些：

更改頁首圖片大小（從 741&#215;142 改成 741&#215;250）

開啟 /wp-content/themes/connections-reloaded/functions.php
找到

define('HEADER_IMAGE_HEIGHT', 142);

改成

//define('HEADER_IMAGE_HEIGHT', 142);
define('HEADER_IMAGE_HEIGHT', 250);


開啟 /wp-content/themes/connections-reloaded/style.css
找到

#header {
	background: url(img/top.jpg) #FFFFFF no-repeat bottom;
	border: #FFCC99 0px solid;
	height: 183px;
	margin: 0 auto;
	padding: 0;
	width: 760px;
}

改成

#header {
	//background: url(img/top.jpg) #FFFFFF no-repeat bottom;
	background: url(img/top.png) #FFFFFF no-repeat bottom;
	border: #FFCC99 0px solid;
	//height: 183px;
	height: 287px;
	margin: 0 auto;
	padding: 0;
	width: 760px;
}

找到

#headimg {
	background: #7d8b5a url(img/train.jpg) center repeat-y;
	height: 142px;
	margin: 2px 0 0 10px;
	width: 741px;
}

改成

#headimg {
	//background: #7d8b5a url(img/train.jpg) [...]]]></description>
			<content:encoded><![CDATA[<p>之前很懶惰，一直都用預設的佈景已久。今天，終於換了新的佈景，總算讓網誌看起來稍微不太一樣了。特別寫這篇文章，是為了紀念以及紀錄這次更換佈景主題的事情。</p>
<p><span id="more-131"></span></p>
<table border="0">
<caption>新舊比一比（點小圖看大圖）</caption>
<tbody>
<tr>
<td>之前網誌看起來像這樣：</td>
<td>現在網誌看起來像這樣：</td>
</tr>
<tr>
<td><a href="http://shiaobin.dyndns.org/blog/wp-content/uploads/2009/09/2009-9-18-下午-06-55-25.png"><img class="alignnone size-large wp-image-132" title="舊網誌佈景" src="http://shiaobin.dyndns.org/blog/wp-content/uploads/2009/09/2009-9-18-下午-06-55-25-181x1024.png" alt="舊網誌佈景" width="181" height="1024" /></a></td>
<td><a href="http://shiaobin.dyndns.org/blog/wp-content/uploads/2009/09/2009-9-18-下午-06-56-26.png"><img class="alignnone size-large wp-image-133" title="新網誌佈景" src="http://shiaobin.dyndns.org/blog/wp-content/uploads/2009/09/2009-9-18-下午-06-56-26-132x1024.png" alt="新網誌佈景" width="132" height="1024" /></a></td>
</tr>
</tbody>
</table>
<p>新的佈景看起來似乎比較多彩，也比較好看。順道一提，頁首那隻貓是我們家的貓，叫做布丁。如果您有興趣的話，這裡有原照片可讓您看看（點小圖看大圖）：</p>
<p><a href="http://shiaobin.dyndns.org/blog/wp-content/uploads/2009/09/dsc00843.jpg"><img class="alignnone size-medium wp-image-136" title="布丁在草地上" src="http://shiaobin.dyndns.org/blog/wp-content/uploads/2009/09/dsc00843-300x225.jpg" alt="布丁在草地上" width="300" height="225" /></a></p>
<p>以下是比較技術性的內容，提供給那些可能也想要試試這個佈景主題的人們參考：</p>
<ul>
<li>佈景主題名稱：<a href="http://ajaydsouza.com/wordpress/wpthemes/connections-reloaded/">Connections Reloaded</a>（可直接從管理後台內建的「新增佈景主題」找到）</li>
<li>由我所作的修改有這些：
<ul>
<li>更改頁首圖片大小（從 741&#215;142 改成 741&#215;250）
<ul>
<li>開啟 <strong>/wp-content/</strong><strong>themes/connections-reloaded/functions.php</strong><br />
找到</p>
<pre class="brush: php;">
define('HEADER_IMAGE_HEIGHT', 142);
</pre>
<p>改成</p>
<pre class="brush: php;">
//define('HEADER_IMAGE_HEIGHT', 142);
define('HEADER_IMAGE_HEIGHT', 250);
</pre>
</li>
<li>開啟 <strong>/wp-content/</strong><strong>themes/connections-reloaded/style.css</strong><br />
找到</p>
<pre class="brush: css;">
#header {
	background: url(img/top.jpg) #FFFFFF no-repeat bottom;
	border: #FFCC99 0px solid;
	height: 183px;
	margin: 0 auto;
	padding: 0;
	width: 760px;
}
</pre>
<p>改成</p>
<pre class="brush: css;">
#header {
	//background: url(img/top.jpg) #FFFFFF no-repeat bottom;
	background: url(img/top.png) #FFFFFF no-repeat bottom;
	border: #FFCC99 0px solid;
	//height: 183px;
	height: 287px;
	margin: 0 auto;
	padding: 0;
	width: 760px;
}
</pre>
<p>找到</p>
<pre class="brush: css;">
#headimg {
	background: #7d8b5a url(img/train.jpg) center repeat-y;
	height: 142px;
	margin: 2px 0 0 10px;
	width: 741px;
}
</pre>
<p>改成</p>
<pre class="brush: css;">
#headimg {
	//background: #7d8b5a url(img/train.jpg) center repeat-y;
	background: #7d8b5a url(img/train.png) center repeat-y;
	//height: 142px;
	height: 250px;
	margin: 2px 0 0 10px;
	width: 741px;
}
</pre>
</li>
<li>上傳 <a href="http://shiaobin.dyndns.org/blog/wp-content/themes/connections-reloaded/img/top.png">top.png</a> 與 <a href="http://shiaobin.dyndns.org/blog/wp-content/themes/connections-reloaded/img/train.png">train.png</a><br />
到 <strong>/wp-content/</strong><strong>themes/connections-reloaded/img/</strong></li>
</ul>
</li>
<li>修改網誌文章的日期格式（從「週五 18 九月 2009」改成「2009 九月 18 週五」）
<ul>
<li>開啟 <strong>/wp-content/</strong><strong>themes/connections-reloaded/post.php</strong><br />
找到</p>
<pre class="brush: php;">
&lt;p class=&quot;post-date&quot;&gt;&lt;?php the_time('D j M Y'); ?&gt;&lt;/p&gt;
</pre>
<p>改成</p>
<pre class="brush: php;">
&lt;!-- &lt;p class=&quot;post-date&quot;&gt;&lt;?php the_time('D j M Y'); ?&gt;&lt;/p&gt; --&gt;
&lt;p class=&quot;post-date&quot;&gt;&lt;?php the_time('Y'); ?&gt;&lt;br /&gt;&lt;?php the_time('M j'); ?&gt;&lt;br /&gt;&lt;?php the_time('D'); ?&gt;&lt;/p&gt;
</pre>
</li>
</ul>
</li>
</ul>
</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://shiaobin.dyndns.org/blog/archives/131/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-sa/2.5/tw/</creativeCommons:license>
	</item>
		<item>
		<title>高雄市唱日文歌的好地方 &#8211; 銀河 KTV</title>
		<link>http://shiaobin.dyndns.org/blog/archives/125</link>
		<comments>http://shiaobin.dyndns.org/blog/archives/125#comments</comments>
		<pubDate>Wed, 26 Aug 2009 13:01:16 +0000</pubDate>
		<dc:creator>小斌</dc:creator>
				<category><![CDATA[未分類]]></category>
		<category><![CDATA[ACG]]></category>
		<category><![CDATA[生活]]></category>

		<guid isPermaLink="false">http://shiaobin.dyndns.org/blog/?p=125</guid>
		<description><![CDATA[最近跟了一個歌唱團，又發現一個不錯的地方好唱日文歌！
這家店是「銀河 KTV」，消費方式跟之前介紹過的櫻の戀卡拉 OK 很像，也是一場兩百，兩場三百；其中的差別是櫻の戀提供餐點，而銀河則是提供點心與水果。
銀河 KTV 好像歷史比櫻の戀還要久，桌數也比較多一些。或許這裡的人會比較多也說不定？點歌系統則是跟櫻の戀類似的V BeMAX&#8217;S，同樣也能在BMB &#124; 製品案内 &#124; 楽曲検索先查詢歌曲代碼。
交通方面也是很便利；從捷運中央公園站 2 號出口往東走大約 500 公尺就到了。
店名：銀河 KTV
系統：BMB 的 V BeMAX&#8217;S
地址：高雄市五福二路192之1號2樓(忠孝和林森路之間，享溫馨斜對面)
檢視較大的地圖
]]></description>
			<content:encoded><![CDATA[<p>最近跟了一個歌唱團，又發現一個不錯的地方好唱日文歌！</p>
<p><span id="more-125"></span>這家店是「<strong>銀河 KTV</strong>」，消費方式跟之前介紹過的<a href="http://shiaobin.dyndns.org/blog/archives/118">櫻の戀卡拉 OK</a> 很像，也是一場兩百，兩場三百；其中的差別是櫻の戀提供餐點，而銀河則是提供點心與水果。</p>
<p>銀河 KTV 好像歷史比櫻の戀還要久，桌數也比較多一些。或許這裡的人會比較多也說不定？點歌系統則是跟櫻の戀類似的V BeMAX&#8217;S，同樣也能在<a href="http://202.228.216.232/bmbjp/ctl.search.php">BMB | 製品案内 | 楽曲検索</a>先查詢歌曲代碼。</p>
<p>交通方面也是很便利；從捷運中央公園站 2 號出口往東走大約 500 公尺就到了。</p>
<p>店名：銀河 KTV</p>
<p>系統：BMB 的 V BeMAX&#8217;S</p>
<p>地址：高雄市五福二路192之1號2樓(忠孝和林森路之間，享溫馨斜對面)</p>
<p><iframe width="300" height="300" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.com.tw/maps?f=q&amp;source=s_q&amp;hl=zh-TW&amp;geocode=&amp;q=%E9%AB%98%E9%9B%84%E5%B8%82%E4%BA%94%E7%A6%8F%E4%BA%8C%E8%B7%AF192%E4%B9%8B1%E8%99%9F2%E6%A8%93&amp;sll=23.63446,120.970459&amp;sspn=3.934566,7.053223&amp;ie=UTF8&amp;brcurrent=3,0x346e048e35f2b70b:0x5857ffec47e2adb6,0&amp;ll=22.634768,120.309649&amp;spn=0.023766,0.025749&amp;z=14&amp;iwloc=A&amp;output=embed"></iframe><br /><small><a href="http://maps.google.com.tw/maps?f=q&amp;source=embed&amp;hl=zh-TW&amp;geocode=&amp;q=%E9%AB%98%E9%9B%84%E5%B8%82%E4%BA%94%E7%A6%8F%E4%BA%8C%E8%B7%AF192%E4%B9%8B1%E8%99%9F2%E6%A8%93&amp;sll=23.63446,120.970459&amp;sspn=3.934566,7.053223&amp;ie=UTF8&amp;brcurrent=3,0x346e048e35f2b70b:0x5857ffec47e2adb6,0&amp;ll=22.634768,120.309649&amp;spn=0.023766,0.025749&amp;z=14&amp;iwloc=A" style="color:#0000FF;text-align:left">檢視較大的地圖</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://shiaobin.dyndns.org/blog/archives/125/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-sa/2.5/tw/</creativeCommons:license>
	</item>
		<item>
		<title>高雄市唱日文歌的好地方 &#8211; 櫻の戀卡拉 OK</title>
		<link>http://shiaobin.dyndns.org/blog/archives/118</link>
		<comments>http://shiaobin.dyndns.org/blog/archives/118#comments</comments>
		<pubDate>Mon, 03 Aug 2009 17:02:29 +0000</pubDate>
		<dc:creator>小斌</dc:creator>
				<category><![CDATA[未分類]]></category>
		<category><![CDATA[ACG]]></category>
		<category><![CDATA[生活]]></category>

		<guid isPermaLink="false">http://shiaobin.dyndns.org/blog/?p=118</guid>
		<description><![CDATA[喜歡唱日文歌的高雄朋友們，不用再羨慕台北有青春譜、依斯特、亞都了。現在我們高雄自己就有一家可以唱到日文歌的店，而且消費非常低。

這家店就是「櫻の戀卡拉 OK」，位在中華四路跟三多四路路口的 7-11 樓上，地點很好找，從捷運三多站的大遠百出口往 85 大樓方向走不到五分鐘就到了。消費金額比台北的店要便宜多了。它是輪桌制，分成下午場跟晚場這兩個場次；一場的費用是 200 元，兩場則是 300 元。只要 200 元就能唱到日文 KTV 啊，真是佛心來的價格。店內也有提供餐點，一餐大約是 60 左右的價位。如果不知道要點哪道菜，特別推薦您可試試看咖哩飯。
跟台北不一樣的地方是，這家店很多客戶都是中年人，所以去的時候有非常大機會聽到演歌之類的。某些歌可能這輩子只會聽過這麼一次，想想也滿新奇的。因為是輪桌制，所以人多時就要輪到一次的時間就會比較久！上次我週六去的時候，大概是一小時才輪到一次。據說週一到週四的晚上人比較少，如果不想等太久的話，不妨考慮在這個時段前往吧。
這裡的系統是 BMB SuperMAX&#8217;s，可以在BMB &#124; 製品案内 &#124; 楽曲検索搜尋看看有沒有你想唱的歌。除此之外，這家店還有一大特色，就是可讓客戶帶自己的片子過去放，日文歌限定。很多中年客戶都是自己帶一大包片子過去放來唱的呢。
店名：櫻の戀卡拉 OK
系統：BMB的Super BeMAX&#8217;s
地址：高雄市苓雅區中華四路64號2樓
檢視較大的地圖
]]></description>
			<content:encoded><![CDATA[<p>喜歡唱日文歌的高雄朋友們，不用再羨慕台北有青春譜、依斯特、亞都了。現在我們高雄自己就有一家可以唱到日文歌的店，而且消費非常低。</p>
<p><span id="more-118"></span></p>
<p>這家店就是「櫻の戀卡拉 OK」，位在中華四路跟三多四路路口的 7-11 樓上，地點很好找，從捷運三多站的大遠百出口往 85 大樓方向走不到五分鐘就到了。消費金額比台北的店要便宜多了。它是輪桌制，分成下午場跟晚場這兩個場次；一場的費用是 200 元，兩場則是 300 元。只要 200 元就能唱到日文 KTV 啊，真是佛心來的價格。店內也有提供餐點，一餐大約是 60 左右的價位。如果不知道要點哪道菜，特別推薦您可試試看咖哩飯。</p>
<p>跟台北不一樣的地方是，這家店很多客戶都是中年人，所以去的時候有非常大機會聽到演歌之類的。某些歌可能這輩子只會聽過這麼一次，想想也滿新奇的。因為是輪桌制，所以人多時就要輪到一次的時間就會比較久！上次我週六去的時候，大概是一小時才輪到一次。據說週一到週四的晚上人比較少，如果不想等太久的話，不妨考慮在這個時段前往吧。</p>
<p>這裡的系統是 BMB SuperMAX&#8217;s，可以在<a href="http://202.228.216.232/bmbjp/ctl.search.php">BMB | 製品案内 | 楽曲検索</a>搜尋看看有沒有你想唱的歌。除此之外，這家店還有一大特色，就是可讓客戶帶自己的片子過去放，日文歌限定。很多中年客戶都是自己帶一大包片子過去放來唱的呢。</p>
<p>店名：櫻の戀卡拉 OK</p>
<p>系統：BMB的Super BeMAX&#8217;s</p>
<p>地址：高雄市苓雅區中華四路64號2樓</p>
<p><iframe width="300" height="300" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.com.tw/maps?f=q&amp;source=s_q&amp;hl=zh-TW&amp;geocode=&amp;q=%E9%AB%98%E9%9B%84%E5%B8%82%E8%8B%93%E9%9B%85%E5%8D%80%E4%B8%AD%E8%8F%AF%E5%9B%9B%E8%B7%AF64%E8%99%9F2%E6%A8%93&amp;sll=22.615219,120.303426&amp;sspn=0.007745,0.013776&amp;ie=UTF8&amp;brcurrent=3,0x346e03125ee30365:0xdcfb33e1848b46df,0&amp;ll=22.615774,120.303361&amp;spn=0.005942,0.006437&amp;z=16&amp;iwloc=A&amp;output=embed"></iframe><br /><small><a href="http://maps.google.com.tw/maps?f=q&amp;source=embed&amp;hl=zh-TW&amp;geocode=&amp;q=%E9%AB%98%E9%9B%84%E5%B8%82%E8%8B%93%E9%9B%85%E5%8D%80%E4%B8%AD%E8%8F%AF%E5%9B%9B%E8%B7%AF64%E8%99%9F2%E6%A8%93&amp;sll=22.615219,120.303426&amp;sspn=0.007745,0.013776&amp;ie=UTF8&amp;brcurrent=3,0x346e03125ee30365:0xdcfb33e1848b46df,0&amp;ll=22.615774,120.303361&amp;spn=0.005942,0.006437&amp;z=16&amp;iwloc=A" style="color:#0000FF;text-align:left">檢視較大的地圖</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://shiaobin.dyndns.org/blog/archives/118/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-sa/2.5/tw/</creativeCommons:license>
	</item>
		<item>
		<title>我也開始用真名寫部落格的原因</title>
		<link>http://shiaobin.dyndns.org/blog/archives/114</link>
		<comments>http://shiaobin.dyndns.org/blog/archives/114#comments</comments>
		<pubDate>Fri, 26 Jun 2009 17:35:51 +0000</pubDate>
		<dc:creator>小斌</dc:creator>
				<category><![CDATA[未分類]]></category>
		<category><![CDATA[日記]]></category>

		<guid isPermaLink="false">http://shiaobin.dyndns.org/blog/?p=114</guid>
		<description><![CDATA[其實，是否要用真名寫部落格這回事，我從兩年前剛弄這個部落格的時候就有考慮過了。當初，的確就是因為蔡志浩先生的這篇為什麼你應該用真實姓名寫部落格，而開始考慮這件事情。當年，我並沒有立刻就轉而用真名寫部落格。

那麼，現在又為什麼決定用真名寫了呢？這也是經過一番考慮而做的決定。用了真名寫部落格，是一種表示自己開始要認真耕耘這裡的宣示。我不能讓別人用我的姓名找到這裡，卻發現「啊！這個人好懶。」
用真名，也是表示對自己言論負責的一種宣示。現在任何發表的內容，都可以直接知道是誰的，所以在作任何發表之前，我必須要更加深思熟慮，確認不是不適當的內容。
發這篇文章，除了是註記，也是提醒自己，別忘了當初為何決定用真名寫部落格。

為什麼你應該用真實姓名寫部落格

]]></description>
			<content:encoded><![CDATA[<p>其實，是否要用真名寫部落格這回事，我從兩年前剛弄這個部落格的時候就有考慮過了。當初，的確就是因為蔡志浩先生的這篇<a href="http://taiwan.chtsai.org/2006/08/01/weisheme_ni_yinggai_yong_zhenshi_xingming/">為什麼你應該用真實姓名寫部落格</a>，而開始考慮這件事情。當年，我並沒有立刻就轉而用真名寫部落格。</p>
<p><span id="more-114"></span></p>
<p>那麼，現在又為什麼決定用真名寫了呢？這也是經過一番考慮而做的決定。用了真名寫部落格，是一種表示自己開始要認真耕耘這裡的宣示。我不能讓別人用我的姓名找到這裡，卻發現「啊！這個人好懶。」</p>
<p>用真名，也是表示對自己言論負責的一種宣示。現在任何發表的內容，都可以直接知道是誰的，所以在作任何發表之前，我必須要更加深思熟慮，確認不是不適當的內容。</p>
<p>發這篇文章，除了是註記，也是提醒自己，別忘了當初為何決定用真名寫部落格。</p>
<div id="_mcePaste" style="overflow: hidden; position: absolute; left: -10000px; top: 0px; width: 1px; height: 1px;">
<h2 class="post-title-single"><a title="Permalink to 為什麼你應該用真實姓名寫部落格" rel="bookmark" href="http://taiwan.chtsai.org/2006/08/01/weisheme_ni_yinggai_yong_zhenshi_xingming/">為什麼你應該用真實姓名寫部落格</a></h2>
</div>
]]></content:encoded>
			<wfw:commentRss>http://shiaobin.dyndns.org/blog/archives/114/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-sa/2.5/tw/</creativeCommons:license>
	</item>
		<item>
		<title>重新好好整理這裡一下</title>
		<link>http://shiaobin.dyndns.org/blog/archives/102</link>
		<comments>http://shiaobin.dyndns.org/blog/archives/102#comments</comments>
		<pubDate>Sun, 21 Jun 2009 22:35:29 +0000</pubDate>
		<dc:creator>小斌</dc:creator>
				<category><![CDATA[未分類]]></category>
		<category><![CDATA[日記]]></category>

		<guid isPermaLink="false">http://shiaobin.dyndns.org/blog/?p=102</guid>
		<description><![CDATA[太久沒回來關心這裡了，原來好多連結都打不開，真糟糕。
經過整理後，現在應該已經沒問題了。之後，也要好好思考一下以後該怎麼經營這裡，不能讓這裡一直荒廢著。
]]></description>
			<content:encoded><![CDATA[<p>太久沒回來關心這裡了，原來好多連結都打不開，真糟糕。</p>
<p>經過整理後，現在應該已經沒問題了。之後，也要好好思考一下以後該怎麼經營這裡，不能讓這裡一直荒廢著。</p>
]]></content:encoded>
			<wfw:commentRss>http://shiaobin.dyndns.org/blog/archives/102/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-sa/2.5/tw/</creativeCommons:license>
	</item>
		<item>
		<title>FreeBSD on USB &#8211; Part 1</title>
		<link>http://shiaobin.dyndns.org/blog/archives/31</link>
		<comments>http://shiaobin.dyndns.org/blog/archives/31#comments</comments>
		<pubDate>Sun, 07 Dec 2008 18:12:48 +0000</pubDate>
		<dc:creator>小斌</dc:creator>
				<category><![CDATA[未分類]]></category>
		<category><![CDATA[技術指南]]></category>
		<category><![CDATA[資訊技術]]></category>

		<guid isPermaLink="false">http://shiaobin.dyndns.org/blog/?p=31</guid>
		<description><![CDATA[前言
這是一個教您如何在 USB 隨身碟上安裝 FreeBSD 作業系統的指引。您將會在隨身碟上安裝 FreeBSD 作業系統、啟用 ssh 服務、以及安裝 KDE 桌面環境。
Part 1 將告訴您該如何在 USB 隨身碟裝好 FreeBSD 並用裝好作業系統的隨身碟開機，還有關機。
快速步驟

使用 FreeBSD 7.0-RELEASE 安裝光碟第一片開機，開始安裝。
選擇國籍 。
選擇鍵盤對應 。
Custom 自訂安裝。
Options, Partition, Label, Distributions, Media, Commit 各做一次 。
設定網路 。
重開機，用隨身碟開機。
用 root 登入。
重開機/關機。

以下是詳細的解說。

事前準備
請下載 FreeBSD 7.0-RELEASE 安裝光碟第一片以及第二片的光碟映像檔，燒成光碟。
請準備一支隨身碟，大小至少要有 2G 。

▲將您要操作的電腦主機的 IP 位址、子網路遮罩、預設閘道、以及 DNS 伺服器抄起來備用。
安裝最基本的作業系統
請將安裝光碟第一片放入光碟機，隨身碟也一起插上去，用光碟開機。關於如何選擇開機裝置，請看您的主機板說明書。

▲出現這個畫面時，請按一下 Enter 或等 10 秒鐘。裝好以後每次開機都會出現這畫面，請比照辦理。

▲過一段時間後，就會出現選擇國家的畫面了。請選擇 215 Taiwan 並按一下 Enter 。（之後要選擇選項的場合，只要沒有特別說明的話，都是一樣用 Enter 按鍵選擇。）

▲選擇鍵盤的形式。這裡請直接選用預設的 USA ISO [...]]]></description>
			<content:encoded><![CDATA[<h3>前言</h3>
<p>這是一個教您如何在 USB 隨身碟上安裝 FreeBSD 作業系統的指引。您將會在隨身碟上安裝 FreeBSD 作業系統、啟用 ssh 服務、以及安裝 KDE 桌面環境。</p>
<p>Part 1 將告訴您該如何在 USB 隨身碟裝好 FreeBSD 並用裝好作業系統的隨身碟開機，還有關機。</p>
<h3>快速步驟</h3>
<ol>
<li>使用 FreeBSD 7.0-RELEASE 安裝光碟第一片開機，開始安裝。</li>
<li>選擇國籍 。</li>
<li>選擇鍵盤對應 。</li>
<li>Custom 自訂安裝。</li>
<li>Options, Partition, Label, Distributions, Media, Commit 各做一次 。</li>
<li>設定網路 。</li>
<li>重開機，用隨身碟開機。</li>
<li>用 root 登入。</li>
<li>重開機/關機。</li>
</ol>
<p>以下是詳細的解說。</p>
<p><span id="more-31"></span></p>
<h3>事前準備</h3>
<p>請下載 FreeBSD 7.0-RELEASE 安裝光碟<a href="ftp://ftp.tw.freebsd.org/pub/FreeBSD/releases/i386/ISO-IMAGES/7.0/7.0-RELEASE-i386-disc1.iso">第一片</a>以及<a href="ftp://ftp.tw.freebsd.org/pub/FreeBSD/releases/i386/ISO-IMAGES/7.0/7.0-RELEASE-i386-disc2.iso">第二片</a>的光碟映像檔，燒成光碟。</p>
<p>請準備一支隨身碟，大小至少要有 2G 。</p>
<p><a href="http://shiaobin.dyndns.org/blog/wp-content/uploads/2008/12/0000.png"><img class="alignnone size-full wp-image-32" title="0000" src="http://shiaobin.dyndns.org/blog/wp-content/uploads/2008/12/0000.png" alt="" width="404" height="423" /></a><br />
▲將您要操作的電腦主機的 <strong>IP 位址</strong>、<strong>子網路遮罩</strong>、<strong>預設閘道</strong>、以及 <strong>DNS 伺服器</strong>抄起來備用。</p>
<h3>安裝最基本的作業系統</h3>
<p>請將安裝光碟第一片放入光碟機，隨身碟也一起插上去，用光碟開機。關於如何選擇開機裝置，請看您的主機板說明書。</p>
<p><a href="http://shiaobin.dyndns.org/blog/wp-content/uploads/2008/12/0001.png"><img class="alignnone size-full wp-image-33" title="0001" src="http://shiaobin.dyndns.org/blog/wp-content/uploads/2008/12/0001.png" alt="" width="500" height="277" /></a><br />
▲出現這個畫面時，請<strong>按一下 Enter</strong> 或<strong>等 10 秒鐘</strong>。裝好以後每次開機都會出現這畫面，請比照辦理。</p>
<p><a href="http://shiaobin.dyndns.org/blog/wp-content/uploads/2008/12/0002.png"><img class="alignnone size-full wp-image-34" title="0002" src="http://shiaobin.dyndns.org/blog/wp-content/uploads/2008/12/0002.png" alt="" width="500" height="277" /></a><br />
▲過一段時間後，就會出現選擇國家的畫面了。請<strong>選擇 215 Taiwan</strong> 並<strong>按一下 Enter</strong> 。（之後要選擇選項的場合，只要沒有特別說明的話，都是一樣用 Enter 按鍵選擇。）</p>
<p><a href="http://shiaobin.dyndns.org/blog/wp-content/uploads/2008/12/0003.png"><img class="alignnone size-full wp-image-35" title="0003" src="http://shiaobin.dyndns.org/blog/wp-content/uploads/2008/12/0003.png" alt="" width="500" height="277" /></a><br />
▲選擇鍵盤的形式。這裡請直接選用預設的 <strong>USA ISO</strong> 選項 。</p>
<p><a href="http://shiaobin.dyndns.org/blog/wp-content/uploads/2008/12/0004.png"><img class="alignnone size-full wp-image-36" title="0004" src="http://shiaobin.dyndns.org/blog/wp-content/uploads/2008/12/0004.png" alt="" width="500" height="277" /></a><br />
▲進入了系統安裝的主畫面。因為是裝在 USB 隨身碟上，所以只選擇部份的元件來安裝以節省容量。請選擇 <strong>Custom</strong> 選項。</p>
<p><a href="http://shiaobin.dyndns.org/blog/wp-content/uploads/2008/12/0005.png"><img class="alignnone size-full wp-image-37" src="http://shiaobin.dyndns.org/blog/wp-content/uploads/2008/12/0005.png" alt="" width="500" height="277" /></a><br />
▲這裡一共有 6 個項目，每一項都會做一次。首先請選擇 <strong>2 Options</strong> 。</p>
<p><a href="http://shiaobin.dyndns.org/blog/wp-content/uploads/2008/12/0006.png"><img class="alignnone size-full wp-image-38" title="0006" src="http://shiaobin.dyndns.org/blog/wp-content/uploads/2008/12/0006.png" alt="" width="500" height="277" /></a><br />
▲這裡有很多項目可以調整。目前不去改這些選項，請直接按 <strong>Q</strong> 離開此畫面。</p>
<p><a href="http://shiaobin.dyndns.org/blog/wp-content/uploads/2008/12/0007.png"><img class="alignnone size-full wp-image-39" title="0007" src="http://shiaobin.dyndns.org/blog/wp-content/uploads/2008/12/0007.png" alt="" width="500" height="277" /></a><br />
▲接下來請選 <strong>3 Partition</strong> 進行磁碟分割。</p>
<p><a href="http://shiaobin.dyndns.org/blog/wp-content/uploads/2008/12/0008.png"><img class="alignnone size-full wp-image-40" title="0008" src="http://shiaobin.dyndns.org/blog/wp-content/uploads/2008/12/0008.png" alt="" width="499" height="324" /></a><br />
▲安裝程式詢問您要對哪些磁碟做分割；其中 ad 開頭的都是 IDE 硬碟，而 da 開頭的才是隨身碟。請選擇 <strong>da0</strong> 的項目。</p>
<p><strong>小心</strong>：請不要選到 ad0 ，否則安裝時將會破壞硬碟上的資料。這裡是整個過程中最需要格外注意的步驟，不要選錯喔。</p>
<p><a href="http://shiaobin.dyndns.org/blog/wp-content/uploads/2008/12/0009.png"><img class="alignnone size-full wp-image-41" title="0009" src="http://shiaobin.dyndns.org/blog/wp-content/uploads/2008/12/0009.png" alt="" width="499" height="324" /></a><br />
▲硬碟分割的畫面。請先確認一下 Disk name 是否為 <strong>da0</strong> ，以及磁碟容量是否為<strong>您隨身碟的大小</strong>。如果發現磁碟容量是五位數以上的話，就是您選錯磁碟選到硬碟了，請重頭再來一遍。</p>
<p>確認無誤後，請選<strong>不是 unused</strong> 的部份，按一下 <strong>D</strong> 刪除分割區。</p>
<p><a href="http://shiaobin.dyndns.org/blog/wp-content/uploads/2008/12/0010.png"><img class="alignnone size-full wp-image-42" title="0010" src="http://shiaobin.dyndns.org/blog/wp-content/uploads/2008/12/0010.png" alt="" width="499" height="324" /></a><br />
▲刪除完之後，您應該就只剩下一個 unused 的分割區了。請按一下 <strong>A</strong> 使用整個磁碟。</p>
<p><a href="http://shiaobin.dyndns.org/blog/wp-content/uploads/2008/12/0011.png"><img class="alignnone size-full wp-image-43" title="0011" src="http://shiaobin.dyndns.org/blog/wp-content/uploads/2008/12/0011.png" alt="" width="499" height="324" /></a><br />
▲安裝程式自動使用了整個磁碟來進行安裝。請按一下 <strong>Q</strong> 離開此畫面。</p>
<p><a href="http://shiaobin.dyndns.org/blog/wp-content/uploads/2008/12/0012.png"><img class="alignnone size-full wp-image-44" title="0012" src="http://shiaobin.dyndns.org/blog/wp-content/uploads/2008/12/0012.png" alt="" width="500" height="277" /></a><br />
▲安裝程式詢問您是否要使用開機管理程式。因為沒有要弄多重開機系統，請選擇 <strong>Stanrard</strong> 選項，不安裝開機管理程式。</p>
<p><a href="http://shiaobin.dyndns.org/blog/wp-content/uploads/2008/12/0013.png"><img class="alignnone size-full wp-image-45" title="0013" src="http://shiaobin.dyndns.org/blog/wp-content/uploads/2008/12/0013.png" alt="" width="499" height="324" /></a><br />
▲同樣的畫面又出現了，只不過這次 da0 選項出現了被選起來的 X 符號，表示您已經對 da0 做好了設定。請按 <strong>Tab</strong> 將游標移到 <strong>OK</strong> 的選項上，按一下 <strong>Enter</strong> 。（之後只要是需要選擇下方橫列選項的場合，都請使用 Tab 按鍵來做選擇。）</p>
<p><a href="http://shiaobin.dyndns.org/blog/wp-content/uploads/2008/12/0014.png"><img class="alignnone size-full wp-image-46" title="0014" src="http://shiaobin.dyndns.org/blog/wp-content/uploads/2008/12/0014.png" alt="" width="500" height="277" /></a><br />
▲又回到這個地方了。請選擇 <strong>4 Label</strong> 選項進行已分割磁碟空間的分配。</p>
<p><a href="http://shiaobin.dyndns.org/blog/wp-content/uploads/2008/12/0015.png"><img class="alignnone size-full wp-image-47" title="0015" src="http://shiaobin.dyndns.org/blog/wp-content/uploads/2008/12/0015.png" alt="" width="499" height="324" /></a><br />
▲在此，請直接按一下 <strong>A</strong> ，讓安裝程式自動替您分配空間即可。</p>
<p><a href="http://shiaobin.dyndns.org/blog/wp-content/uploads/2008/12/0016.png"><img class="alignnone size-full wp-image-48" title="0016" src="http://shiaobin.dyndns.org/blog/wp-content/uploads/2008/12/0016.png" alt="" width="499" height="324" /></a><br />
▲安裝程式自動分配的結果看起來會像是這個樣子。請按一下 <strong>Q</strong> 離開此畫面。</p>
<p><a href="http://shiaobin.dyndns.org/blog/wp-content/uploads/2008/12/0017.png"><img class="alignnone size-full wp-image-49" title="0017" src="http://shiaobin.dyndns.org/blog/wp-content/uploads/2008/12/0017.png" alt="" width="500" height="277" /></a><br />
▲請選擇 <strong>5 Distributions</strong> 選項，進行安裝元件的選擇。</p>
<p><a href="http://shiaobin.dyndns.org/blog/wp-content/uploads/2008/12/0018.png"><img class="alignnone size-full wp-image-50" title="0018" src="http://shiaobin.dyndns.org/blog/wp-content/uploads/2008/12/0018.png" alt="" width="500" height="277" /></a><br />
▲請選擇最下面的 <strong>B Custom</strong> 選項，自訂安裝元件的選擇。</p>
<p><a href="http://shiaobin.dyndns.org/blog/wp-content/uploads/2008/12/0019.png"><img class="alignnone size-full wp-image-51" title="0019" src="http://shiaobin.dyndns.org/blog/wp-content/uploads/2008/12/0019.png" alt="" width="500" height="277" /></a><br />
▲要能夠開機，至少要裝 base 以及 kernels 才行。手冊也很重要，所以 man 也建議您裝起來。請選擇 <strong>base</strong> 選項。</p>
<p><a href="http://shiaobin.dyndns.org/blog/wp-content/uploads/2008/12/0020.png"><img class="alignnone size-full wp-image-52" title="0020" src="http://shiaobin.dyndns.org/blog/wp-content/uploads/2008/12/0020.png" alt="" width="500" height="277" /></a><br />
▲接著請選 <strong>kernels</strong> 選項。</p>
<p><a href="http://shiaobin.dyndns.org/blog/wp-content/uploads/2008/12/0021.png"><img class="alignnone size-full wp-image-53" title="0021" src="http://shiaobin.dyndns.org/blog/wp-content/uploads/2008/12/0021.png" alt="" width="500" height="277" /></a><br />
▲在此要選擇安裝哪一種核心。目前只有一種 <strong>GENERIC</strong> 可選，請選擇這項。</p>
<p><a href="http://shiaobin.dyndns.org/blog/wp-content/uploads/2008/12/0022.png"><img class="alignnone size-full wp-image-54" title="0022" src="http://shiaobin.dyndns.org/blog/wp-content/uploads/2008/12/0022.png" alt="" width="500" height="277" /></a><br />
▲您會發現 GENERIC 項目被選起來了。請按 Tab 選擇 <strong>OK</strong> 選項。（在這裡選 <strong>X Exit</strong> 也一樣可以。）</p>
<p><a href="http://shiaobin.dyndns.org/blog/wp-content/uploads/2008/12/0023.png"><img class="alignnone size-full wp-image-55" title="0023" src="http://shiaobin.dyndns.org/blog/wp-content/uploads/2008/12/0023.png" alt="" width="500" height="277" /></a><br />
▲最後，請選擇 <strong>man</strong> 選項。</p>
<p><a href="http://shiaobin.dyndns.org/blog/wp-content/uploads/2008/12/0024.png"><img class="alignnone size-full wp-image-56" title="0024" src="http://shiaobin.dyndns.org/blog/wp-content/uploads/2008/12/0024.png" alt="" width="500" height="277" /></a><br />
▲確認 base 、 kernels 以及 man 都選起來後，請選擇 <strong>X Exit</strong> 回到上一層選單。</p>
<p><a href="http://shiaobin.dyndns.org/blog/wp-content/uploads/2008/12/0025.png"><img class="alignnone size-full wp-image-57" title="0025" src="http://shiaobin.dyndns.org/blog/wp-content/uploads/2008/12/0025.png" alt="" width="500" height="277" /></a><br />
▲然後再選 <strong>X Exit</strong> 回到上一層選單。</p>
<p><a href="http://shiaobin.dyndns.org/blog/wp-content/uploads/2008/12/0026.png"><img class="alignnone size-full wp-image-58" title="0026" src="http://shiaobin.dyndns.org/blog/wp-content/uploads/2008/12/0026.png" alt="" width="500" height="277" /></a><br />
▲終於快好啦。請選 <strong>6 Media</strong> 選擇安裝來源。</p>
<p><a href="http://shiaobin.dyndns.org/blog/wp-content/uploads/2008/12/0027.png"><img class="alignnone size-full wp-image-59" title="0027" src="http://shiaobin.dyndns.org/blog/wp-content/uploads/2008/12/0027.png" alt="" width="500" height="277" /></a><br />
▲請選擇 <strong>1 CD/DVD</strong> 使用光碟來安裝。</p>
<p><a href="http://shiaobin.dyndns.org/blog/wp-content/uploads/2008/12/0028.png"><img class="alignnone size-full wp-image-60" title="0028" src="http://shiaobin.dyndns.org/blog/wp-content/uploads/2008/12/0028.png" alt="" width="500" height="277" /></a><br />
▲所有的安裝前設定都完成了！請選擇 <strong>7 Commit</strong> 開始進行安裝。</p>
<p><a href="http://shiaobin.dyndns.org/blog/wp-content/uploads/2008/12/0029.png"><img class="alignnone size-full wp-image-61" title="0029" src="http://shiaobin.dyndns.org/blog/wp-content/uploads/2008/12/0029.png" alt="" width="500" height="277" /></a><br />
▲因為磁碟上原有資料都會全部消除的關係，安裝程式向您進行最終確認。覺得沒問題的話，就請選擇 <strong>Yes</strong> 。</p>
<p><a href="http://shiaobin.dyndns.org/blog/wp-content/uploads/2008/12/0030.png"><img class="alignnone size-full wp-image-62" title="0030" src="http://shiaobin.dyndns.org/blog/wp-content/uploads/2008/12/0030.png" alt="" width="500" height="277" /></a><br />
▲正在安裝中，請稍等，休息一下。</p>
<p><a href="http://shiaobin.dyndns.org/blog/wp-content/uploads/2008/12/0031.png"><img class="alignnone size-full wp-image-63" title="0031" src="http://shiaobin.dyndns.org/blog/wp-content/uploads/2008/12/0031.png" alt="" width="500" height="277" /></a><br />
▲應該不用多久，就會裝好了。安裝程式詢問您是否要做些安裝後的設定，請選擇 <strong>Yes</strong> 。</p>
<p><a href="http://shiaobin.dyndns.org/blog/wp-content/uploads/2008/12/0032.png"><img class="alignnone size-full wp-image-64" title="0032" src="http://shiaobin.dyndns.org/blog/wp-content/uploads/2008/12/0032.png" alt="" width="500" height="277" /></a><br />
▲在這裡先進行網路的設定，之後就可以省去一次重開機的麻煩了。請選擇 <strong>Networking</strong> 選項。</p>
<p><a href="http://shiaobin.dyndns.org/blog/wp-content/uploads/2008/12/0033.png"><img class="alignnone size-full wp-image-65" title="0033" src="http://shiaobin.dyndns.org/blog/wp-content/uploads/2008/12/0033.png" alt="" width="500" height="277" /></a><br />
▲請選擇 <strong>Interfaces</strong> 項目，對網路卡進行設定。</p>
<p><a href="http://shiaobin.dyndns.org/blog/wp-content/uploads/2008/12/0034.png"><img class="alignnone size-full wp-image-66" title="0034" src="http://shiaobin.dyndns.org/blog/wp-content/uploads/2008/12/0034.png" alt="" width="500" height="277" /></a><br />
▲請選擇<strong>網路卡的型號</strong>；以這裡的例子，是選擇 em0 Inter(R) PRO/1000 Ethernet card 。不同的網路卡，看起來可能會不太一樣，請自行判斷一下。通常會是第一個。</p>
<p><a href="http://shiaobin.dyndns.org/blog/wp-content/uploads/2008/12/0035.png"><img class="alignnone size-full wp-image-67" title="0035" src="http://shiaobin.dyndns.org/blog/wp-content/uploads/2008/12/0035.png" alt="" width="500" height="277" /></a><br />
▲不要使用 IPv6 組態，請選擇 <strong>No</strong> 。</p>
<p><a href="http://shiaobin.dyndns.org/blog/wp-content/uploads/2008/12/0036.png"><img class="alignnone size-full wp-image-68" title="0036" src="http://shiaobin.dyndns.org/blog/wp-content/uploads/2008/12/0036.png" alt="" width="500" height="277" /></a><br />
▲不使用 DHCP 組態，請選擇 <strong>No</strong> 。</p>
<p><a href="http://shiaobin.dyndns.org/blog/wp-content/uploads/2008/12/0037.png"><img class="alignnone size-full wp-image-69" title="0037" src="http://shiaobin.dyndns.org/blog/wp-content/uploads/2008/12/0037.png" alt="" width="500" height="277" /></a><br />
▲請拿出您之前抄下來的 IP 位址，填入這個表。請使用 <strong>Tab</strong> 以及 <strong>Shift+Tab</strong> 在不同的欄位中移動。</p>
<p>目前 Host 跟 Domain 暫時沒用到，可隨意設定。Extra options to ifconfig 請留空不填寫。</p>
<p>如果您不太了解各項目的意義，這裡有個對照表提供您參考：</p>
<ul>
<li>IPv4 Gateway = 預設閘道</li>
<li>Name server = DNS 伺服器</li>
<li>IPv4 Address = IP 位址</li>
<li>Netmask = 子網路遮罩</li>
</ul>
<p>全部填寫完成後，請選擇 <strong>OK</strong> 選項。</p>
<p><a href="http://shiaobin.dyndns.org/blog/wp-content/uploads/2008/12/0038.png"><img class="alignnone size-full wp-image-70" title="0038" src="http://shiaobin.dyndns.org/blog/wp-content/uploads/2008/12/0038.png" alt="" width="500" height="277" /></a><br />
▲安裝程式詢問您是否要啟動剛剛設定好的網路卡。請選擇 <strong>Yes</strong> 。</p>
<p><a href="http://shiaobin.dyndns.org/blog/wp-content/uploads/2008/12/0039.png"><img class="alignnone size-full wp-image-71" title="0039" src="http://shiaobin.dyndns.org/blog/wp-content/uploads/2008/12/0039.png" alt="" width="500" height="277" /></a><br />
▲接著就要結束安裝程式重開機了。請選擇 <strong>X Exit</strong> 選項。</p>
<p><a href="http://shiaobin.dyndns.org/blog/wp-content/uploads/2008/12/0040.png"><img class="alignnone size-full wp-image-72" title="0040" src="http://shiaobin.dyndns.org/blog/wp-content/uploads/2008/12/0040.png" alt="" width="500" height="277" /></a><br />
▲繼續選擇 <strong>X Exit</strong> 選項。</p>
<p><a href="http://shiaobin.dyndns.org/blog/wp-content/uploads/2008/12/0041.png"><img class="alignnone size-full wp-image-73" title="0041" src="http://shiaobin.dyndns.org/blog/wp-content/uploads/2008/12/0041.png" alt="" width="500" height="277" /></a><br />
▲還是選擇 <strong>X Exit</strong> 選項。</p>
<p><a href="http://shiaobin.dyndns.org/blog/wp-content/uploads/2008/12/0042.png"><img class="alignnone size-full wp-image-74" title="0042" src="http://shiaobin.dyndns.org/blog/wp-content/uploads/2008/12/0042.png" alt="" width="500" height="277" /></a><br />
▲選擇下面的 <strong>X Exit Install</strong> ，離開安裝程式。</p>
<p><a href="http://shiaobin.dyndns.org/blog/wp-content/uploads/2008/12/0043.png"><img class="alignnone size-full wp-image-75" title="0043" src="http://shiaobin.dyndns.org/blog/wp-content/uploads/2008/12/0043.png" alt="" width="500" height="277" /></a><br />
▲安裝程式向您確認是否真的要離開了。請將光碟拿出來後，選 <strong>Yes</strong> 重開機。</p>
<p><a href="http://shiaobin.dyndns.org/blog/wp-content/uploads/2008/12/0044.png"><img class="alignnone size-full wp-image-76" title="0044" src="http://shiaobin.dyndns.org/blog/wp-content/uploads/2008/12/0044.png" alt="" width="500" height="277" /></a><br />
▲之後，請用隨身碟開機，直到出現等待登入的畫面。請輸入 <strong>root</strong> ，按 <strong>Enter</strong> 。</p>
<p><a href="http://shiaobin.dyndns.org/blog/wp-content/uploads/2008/12/0045.png"><img class="alignnone size-full wp-image-77" title="0045" src="http://shiaobin.dyndns.org/blog/wp-content/uploads/2008/12/0045.png" alt="" width="500" height="277" /></a><br />
▲沒有意外的話，您就會看到登入後的畫面了。恭喜您，您已經成功地將 FreeBSD 裝在 USB 隨身碟上並且確認可開機了。</p>
<h3>如何關機與重開機</h3>
<p>直接按電源鈕關機或重開機，可能會造成資料毀損的問題。請確實依照以下的方法進行關機或重開機。</p>
<h4>重開機</h4>
<p>先執行兩三次 sync ，再執行 reboot 就可以了。您可以將這些指令濃縮成一行，不同的指令用分號隔開，像這樣：</p>
<p><strong>sync;sync;reboot</strong></p>
<h4>關機</h4>
<p>先執行兩三次 sync ，再執行 halt -p 就可以了。您可以將這些指令濃縮成一行，不同的指令用分號隔開，像這樣：</p>
<p><strong>sync;sync;halt -p</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://shiaobin.dyndns.org/blog/archives/31/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-sa/2.5/tw/</creativeCommons:license>
	</item>
		<item>
		<title>再抱怨一次， DiscuZ! 實在是難用</title>
		<link>http://shiaobin.dyndns.org/blog/archives/27</link>
		<comments>http://shiaobin.dyndns.org/blog/archives/27#comments</comments>
		<pubDate>Mon, 13 Oct 2008 14:26:16 +0000</pubDate>
		<dc:creator>小斌</dc:creator>
				<category><![CDATA[未分類]]></category>

		<guid isPermaLink="false">http://shiaobin.dyndns.org/blog/?p=27</guid>
		<description><![CDATA[DiscuZ! 這套鬼系統，實在是一直都用不慣。之前就曾經抱怨過一次註冊所用的 E-mail 限制了。今天，又想抱怨另外一個按鈕變成不能按的問題。
按鈕不能按？到底是怎麼一回事？

剛剛我在某個使用 DiscuZ! 的論壇系統想註冊一個新帳號，於是就點了註冊帳號連結，填寫資料。到這裡沒什麼問題。不過，我不小心寫錯了 E-Mail 位址，他不接受，跑出了錯誤訊息，叫我回上一頁填寫正確資料；於是，我就按了瀏覽器的上一頁按鈕，修改之後，再重新送出。該死的，結果這時候按鈕竟然不能按。按鈕好好的在那裡，結果不管點多少次都沒用。沒辦法，只好重新點一次註冊帳號的連結，從頭再來一遍。
其實我知道是怎麼一回事。當初設計者作成這樣，一定是希望不會有人重複送出相同的資料。但是，他完全沒考慮到，如果直接按瀏覽器的回到上一頁，那個按鈕竟然還是他媽的維持在不能按的狀態！說真的，這種設計算是空前絕後了吧，在其他地方從來都沒看過這樣的白痴設計。
]]></description>
			<content:encoded><![CDATA[<p>DiscuZ! 這套<span style="text-decoration: line-through;">鬼</span>系統，實在是一直都用不慣。之前就曾經抱怨過一次<a href="archives/20">註冊所用的 E-mail 限制了</a>。今天，又想抱怨另外一個按鈕變成不能按的問題。</p>
<p>按鈕不能按？到底是怎麼一回事？<br />
<span id="more-27"></span></p>
<p>剛剛我在某個使用 DiscuZ! 的論壇系統想註冊一個新帳號，於是就點了註冊帳號連結，填寫資料。到這裡沒什麼問題。不過，我不小心寫錯了 E-Mail 位址，他不接受，跑出了錯誤訊息，叫我回上一頁填寫正確資料；於是，我就按了瀏覽器的上一頁按鈕，修改之後，再重新送出。<span style="text-decoration: line-through;">該死的，</span>結果這時候按鈕竟然不能按。按鈕好好的在那裡，結果不管點多少次都沒用。沒辦法，只好重新點一次註冊帳號的連結，從頭再來一遍。</p>
<p>其實我知道是怎麼一回事。當初設計者作成這樣，一定是希望不會有人重複送出相同的資料。但是，他完全沒考慮到，如果直接按瀏覽器的回到上一頁，那個按鈕竟然還是<span style="text-decoration: line-through;">他媽的</span>維持在不能按的狀態！說真的，這種設計算是空前絕後了吧，在其他地方從來都沒看過這樣的<span style="text-decoration: line-through;">白痴</span>設計。</p>
]]></content:encoded>
			<wfw:commentRss>http://shiaobin.dyndns.org/blog/archives/27/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-sa/2.5/tw/</creativeCommons:license>
	</item>
		<item>
		<title>頭上的大蝴蝶結</title>
		<link>http://shiaobin.dyndns.org/blog/archives/26</link>
		<comments>http://shiaobin.dyndns.org/blog/archives/26#comments</comments>
		<pubDate>Sun, 15 Jun 2008 23:15:03 +0000</pubDate>
		<dc:creator>小斌</dc:creator>
				<category><![CDATA[未分類]]></category>
		<category><![CDATA[ACG]]></category>

		<guid isPermaLink="false">http://shiaobin.dyndns.org/blog/?p=26</guid>
		<description><![CDATA[在頭上綁著大大的蝴蝶結，看起來真是可愛。不過，現實生活中會這樣打扮的女生似乎不多。為什麼呢？


▲「ドルアーガの塔 〜the Aegis of URUK〜」的クーパ

▲「魔女の宅急便」的キキ

▲「らき☆すた」的柊つかさ
不過，不知道各位有沒有想過一件事，就是在現實生活中，幾乎沒有看過頭上使用大蝴蝶結裝飾的女生呢。為甚麼呢？跟朋友討論的結果是，或許是因為會看起來很幼稚吧，實際上適合這樣打扮的女生不多。
其實我滿喜歡頭上綁大蝴蝶結的裝飾的，可惜似乎真的很少人適合這樣做。這裡有一些真人戴蝴蝶結的照片，可以看看：雜拍活動＋是瘋狂的部落客聚會嗎ＸＤ(內文補完!!) @ 居口小姐和歐歐 ::PIXNET 痞客邦::（第三張開始）、台北拍攝遊玩記　 @ 信爺的美容保養經驗談 ::PIXNET 痞客邦::（中間部份的照片）。雖然看起來是不會幼稚，可是……我覺得成熟的裝扮不適合蝴蝶結啊。如果她不要畫睫毛跟畫眼影的話，應該會更好吧。
現實生活中在頭上綁大蝴蝶結的人真的非常少見。如果有讀者有這樣的照片，希望請您來跟大家分享一下，謝謝啦。:D
]]></description>
			<content:encoded><![CDATA[<p>在頭上綁著大大的蝴蝶結，看起來真是可愛。不過，現實生活中會這樣打扮的女生似乎不多。為什麼呢？</p>
<p><span id="more-26"></span></p>
<p><img src="http://img174.imageshack.us/img174/7803/tvadruaga0301sqe6.jpg" alt="" /></p>
<p>▲「ドルアーガの塔 〜the Aegis of URUK〜」的クーパ</p>
<p><a href="http://img507.imageshack.us/img507/6764/001cs8.jpg"><img src="http://img507.imageshack.us/img507/6764/001cs8.jpg" alt="" width="384" height="288" /></a></p>
<p>▲「魔女の宅急便」的キキ</p>
<p><img src="http://img185.imageshack.us/img185/2216/tntsukasaaaaasnap5vb3.jpg" alt="" /></p>
<p>▲「らき☆すた」的柊つかさ</p>
<p>不過，不知道各位有沒有想過一件事，就是在現實生活中，幾乎沒有看過頭上使用大蝴蝶結裝飾的女生呢。為甚麼呢？跟朋友討論的結果是，或許是因為會看起來很幼稚吧，實際上適合這樣打扮的女生不多。</p>
<p>其實我滿喜歡頭上綁大蝴蝶結的裝飾的，可惜似乎真的很少人適合這樣做。這裡有一些真人戴蝴蝶結的照片，可以看看：<a href="http://blog.pixnet.net/gicle/post/18516702">雜拍活動＋是瘋狂的部落客聚會嗎ＸＤ(內文補完!!) @ 居口小姐和歐歐 ::PIXNET 痞客邦::</a>（第三張開始）、<a href="http://blog.pixnet.net/sinshow/post/18511549">台北拍攝遊玩記　 @ 信爺的美容保養經驗談 ::PIXNET 痞客邦::</a>（中間部份的照片）。雖然看起來是不會幼稚，可是……我覺得成熟的裝扮不適合蝴蝶結啊。如果她不要畫睫毛跟畫眼影的話，應該會更好吧。</p>
<p>現實生活中在頭上綁大蝴蝶結的人真的非常少見。如果有讀者有這樣的照片，希望請您來跟大家分享一下，謝謝啦。:D</p>
]]></content:encoded>
			<wfw:commentRss>http://shiaobin.dyndns.org/blog/archives/26/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<creativeCommons:license>http://creativecommons.org/licenses/by-sa/2.5/tw/</creativeCommons:license>
	</item>
	</channel>
</rss>
