<?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>紅.攝.情.感. &#187; Research</title>
	<atom:link href="http://www.redmaple.idv.tw/index.php/archives/category/research/feed" rel="self" type="application/rss+xml" />
	<link>http://www.redmaple.idv.tw</link>
	<description>- 在這複雜世界，透過鏡頭找尋並紀錄單純的感動 - by 紅楓 　http://www.redmaple.idv.tw</description>
	<lastBuildDate>Sat, 21 Jan 2012 16:54:09 +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>NS2 &#8211; TCL 傳入值 &amp; 警告訊息排除 warning: no class variable</title>
		<link>http://www.redmaple.idv.tw/index.php/archives/213</link>
		<comments>http://www.redmaple.idv.tw/index.php/archives/213#comments</comments>
		<pubDate>Mon, 24 Mar 2008 06:35:28 +0000</pubDate>
		<dc:creator>紅楓</dc:creator>
				<category><![CDATA[Research]]></category>
		<category><![CDATA[ns2]]></category>
		<category><![CDATA[tcl]]></category>

		<guid isPermaLink="false">http://red.ns2go.com/index.php/archives/213</guid>
		<description><![CDATA[//***** 2008.03.25 update ***** 原來要從 TCL 丟值進 agent 中，並沒想像中那麼難（知道怎麼傳之後，才這樣說= =，之前心底還在叫：難啊！） =====newagent.h===== class NewAgent : public Agent { public: NewAgent(); //建構子 int command(int argc, onst char*const* argv); private: int var1; //要傳入的變數一，型態為 int double var2; //要傳入的變數二，型態為 double }; =====newagent.cc===== NewAgent::NewAgent() : Agent(PT_DIFF) { //將 TCL 中的 var1_otcl 變數對應到 agent 中的 variable var1 bind("var1_otcl", &#38;var1); //在建構子中加入，希望在agent 產生同時，就將值傳入 var1 [...]]]></description>
			<content:encoded><![CDATA[<p>//***** 2008.03.25 update *****</p>
<p>原來要從 TCL 丟值進 agent 中，並沒想像中那麼難（知道怎麼傳之後，才這樣說= =，之前心底還在叫：難啊！）</p>
<p><font color="#333333">=====newagent.h===== </font></p>
<p><span id="more-213"></span><font color="#333333">class NewAgent : public Agent {<br />
public:<br />
NewAgent();        //建構子<br />
int command(int argc, onst char*const* argv);<br />
private:<br />
int var1; //要傳入的變數一，型態為 int<br />
double var2;    //要傳入的變數二，型態為 double<br />
};<br />
</font></p>
<p><font color="#333333">=====newagent.cc===== </font></p>
<p><font color="#333333">NewAgent::NewAgent() : Agent(PT_DIFF)<br />
{<br />
//將 TCL 中的 var1_otcl 變數對應到 agent 中的 variable var1<br />
bind("var1_otcl", &amp;var1);    //在建構子中加入，希望在agent 產生同時，就將值傳入 var1 的型態為 int<br />
bind("var2_otcl", &amp;var2);    //在建構子中加入，希望在agent 產生同時，就將值傳入 var2 的型態為 double<br />
}</font></p>
<p>最後在 TCL 中加入設定，就可以順利將值丟入 agent 中啦！</p>
<p>但在 TCL 中，要使用傳入值丟入到 agent 中，雖可以執行，但卻有警告訊息，看起來很礙眼 ~"~</p>
<p><font color="#000000">warning: no class variable Agent/NewAgent::var1_otcl2_</font></p>
<p><font color="#000000">       see tcl-object.tcl in tclcl for info about this warning.</font></p>
<p>一般看到的寫法似下方的方式，但就會產生上方兩句（重覆很多遍）的訊息</p>
<p>set newagent [new Agent/NewAgent ];</p>
<p><font color="#0000ff">　newagent set var1_otcl_　10</font></p>
<p><font color="#0000ff">　newagent set var2_otcl　0.95</font></p>
<p>Google 一下，看到將傳入方式改為以下方式，訊息就不會亂飆出來了&#8230;</p>
<p>set newagent [new Agent/NewAgent ];</p>
<p><strike><font color="#0000ff">　newagent set var1_otcl_　2</font></strike></p>
<p><font color="#ff0000">　Agent/NewAgent </font><font color="#ff0000">set var1_otcl_　10</font></p>
<p><strike><font color="#0000ff">　newagent set var2_otcl　3.14</font></strike></p>
<p><font color="#ff0000">　Agent/NewAgent set var2_otcl　0.95</font></p>
<p>.</p>
<p>============2008.03.25 update　將 agent 掛至 node 的作法=====================</p>
<p>&#8230;&#8230;..</p>
<p>&#8230;&#8230;&#8230;&#8230;..<br />
for { set i 0 } { $i &lt; $val(nn) } { incr i } {</p>
<p><font color="#ff0000">#1.先設定傳入值的變數，待 Agent attach 到 node 中使用</font></p>
<p>Agent/NewAgent set var1_otcl_　10</p>
<p>Agent/NewAgent set var2_otcl　0.95</p>
<p><font color="#ff0000">#2.將 agent attach 到 node上使用</font></p>
<p>set flooding_($i) [new Agent/NewAgent]    ;#將各個 node 加上 agent ，並將變數傳入</p>
<p>．．．．．．　．．．<br />
}</p>
<p>後記：</p>
<p><font color="#0000ff">先前發生的狀況為：先 attach 第 0 個 node 有 agent 然後再宣告變數，這樣導致第 0 個node（第1個node之後就都有收到）會沒接收到變數而產生警告， 而輸出以下訊息</font></p>
<p><font color="#0000ff">warning: no class variable Agent/NewAgent::var1_otcl2_</font></p>
<p><font color="#0000ff">       see tcl-object.tcl in tclcl for info about this warning.</font></p>
<p><font color="#0000ff">※這是因為先 attach 再宣告變數產生的問題，導致最初的一個會收到空值 </font></p>
<p><font color="#0000ff">若</font></p>
<p><font color="#0000ff">先宣告好變數，再 attach 就不會有這樣的問題了 ~~ </font></p>]]></content:encoded>
			<wfw:commentRss>http://www.redmaple.idv.tw/index.php/archives/213/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SOP（Standard Operating Procedure，標準作業程序）之實驗步驟</title>
		<link>http://www.redmaple.idv.tw/index.php/archives/244</link>
		<comments>http://www.redmaple.idv.tw/index.php/archives/244#comments</comments>
		<pubDate>Mon, 10 Mar 2008 14:44:14 +0000</pubDate>
		<dc:creator>紅楓</dc:creator>
				<category><![CDATA[Research]]></category>

		<guid isPermaLink="false">http://red.ns2go.com/index.php/archives/244</guid>
		<description><![CDATA[SOP（Standard Operating Procedure，標準作業程序）在這次的實驗過程中，自己突然回想起的一個方法 在於實驗過程中，過多的程式修改及測試，導致錯誤叢出也浪費了不少時間 最原先的起因在於認為自己能同時控制住兩台測試機的設定及修改，但實際上在兩、三次時就開始出錯 發現叢出的錯誤時，就將手邊所有的程序先暫停，停下思緒思考該如何處置 1.找出原因 找出了原因，主要有傳入參數忘了修改、對應的Map配對錯誤、程式中的設定，這三大項造就了一天多的時間浪費（若是在公司的話，可能會浪費了更多人力及時間） 2.寫出標準處理步驟：人非電腦能準確執行所定義好的程序（電腦都有可能會出錯了..更何況是人 = ="） 雖稱不上是標準程序，但跟著步驟走，總是能省下一絲絲的煩惱，減少錯誤產生 1.調整參數 2.更換對應的Map 3.再次檢查 4.Go 3.記錄當次所使用的參數設度及環境配置 4.每次使用時依步驟先後動作進行 感想： 調整使用訂下的SOP後，每次皆依程序動作，就沒再出錯了~~設定也不會忘了改 實驗快點跑、也跑快點.. GO ~~]]></description>
			<content:encoded><![CDATA[<p>SOP（Standard Operating Procedure，標準作業程序）在這次的實驗過程中，自己突然回想起的一個方法</p>
<p>在於實驗過程中，過多的程式修改及測試，導致錯誤叢出也浪費了不少時間</p>
<p>最原先的起因在於認為自己能同時控制住兩台測試機的設定及修改，但實際上在兩、三次時就開始出錯</p>
<p><span id="more-244"></span>發現叢出的錯誤時，就將手邊所有的程序先暫停，停下思緒思考該如何處置</p>
<p>1.找出原因</p>
<p>找出了原因，主要有傳入參數忘了修改、對應的Map配對錯誤、程式中的設定，這三大項造就了一天多的時間浪費（若是在公司的話，可能會浪費了更多人力及時間）</p>
<p>2.寫出標準處理步驟：人非電腦能準確執行所定義好的程序（電腦都有可能會出錯了..更何況是人 = ="）</p>
<p>雖稱不上是標準程序，但跟著步驟走，總是能省下一絲絲的煩惱，減少錯誤產生</p>
<p>1.調整參數</p>
<p>2.更換對應的Map</p>
<p>3.再次檢查</p>
<p>4.Go</p>
<p>3.記錄當次所使用的參數設度及環境配置</p>
<p>4.每次使用時依步驟先後動作進行</p>
<p>感想：</p>
<p>調整使用訂下的SOP後，每次皆依程序動作，就沒再出錯了~~設定也不會忘了改</p>
<p>實驗快點跑、也跑快點.. GO ~~</p>]]></content:encoded>
			<wfw:commentRss>http://www.redmaple.idv.tw/index.php/archives/244/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>NS2 傳輸範圍計算與設定</title>
		<link>http://www.redmaple.idv.tw/index.php/archives/212</link>
		<comments>http://www.redmaple.idv.tw/index.php/archives/212#comments</comments>
		<pubDate>Tue, 27 Nov 2007 11:53:37 +0000</pubDate>
		<dc:creator>紅楓</dc:creator>
				<category><![CDATA[IT]]></category>
		<category><![CDATA[Research]]></category>
		<category><![CDATA[cygwin]]></category>
		<category><![CDATA[ns2]]></category>

		<guid isPermaLink="false">http://red.ns2go.com/index.php/archives/212</guid>
		<description><![CDATA[先感謝這位作者：『網路節點模擬』研究日誌 &#8211; 設定傳輸範圍 其實在作者的網頁上已寫的蠻清楚 在路徑 /ns-allinone-2.27/ns-2.27/indep-utils/propagation/ 中可以看到 threshold.cc 這個檔案 #g++  threshold.cc  -o threshold 執行之後，會看到一串似錯誤的訊息 #./threshold -m TwoRayGround -fr 2.4e+9 250 會出現一些訊息，最底下那行，即為我們所計算的距離 將設定寫入 tcl 中 #設定trace file set ns [new Simulator] ;#產生ns simulator Phy/WirelessPhy set RXThresh_ 3.652e-10 ;#設定傳輸範圍為 250m 其他參考資料： 1.How can you set the communication radius in wireless nodes? 2.NS-2 下的IEEE 802.11 Ad Hoc 無線網路模擬(pdf更完整資料) [...]]]></description>
			<content:encoded><![CDATA[<p>先感謝這位作者：<a href="http://blog.pixnet.net/NS2lab/post/10050300" target="_blank">『網路節點模擬』研究日誌 &#8211; 設定傳輸範圍</a></p>
<p>其實在作者的網頁上已寫的蠻清楚</p>
<p>在路徑 <font color="#0000ff">/ns-allinone-2.27/ns-2.27/indep-utils/propagation/</font> 中可以看到 <font color="#ff0000">threshold.cc</font> 這個檔案</p>
<p><span id="more-212"></span>#g++   threshold.cc  -o threshold</p>
<p>執行之後，會看到一串似錯誤的訊息</p>
<p>#./threshold -m TwoRayGround -fr 2.4e+9 <font color="#0000ff">250</font></p>
<p>會出現一些訊息，最底下那行，即為我們所計算的距離</p>
<p><a href="http://red.ns2go.com/wp-content/uploads/2007.11/NS2_threshold.gif" onclick="ps_imagemanager_popup(this.href,'NS2_threshold.gif','962','389');return false" onfocus="this.blur()"><img src="http://red.ns2go.com/wp-content/uploads/2007.11/.thumbs/.NS2_threshold.gif" alt="NS2_threshold.gif" title="NS2_threshold.gif" border="0" height="81" width="200" /></a></p>
<p>將設定寫入 tcl 中</p>
<p>#設定trace file<br />
set ns            [new Simulator]    ;#產生ns simulator<br />
<font color="#0000ff">Phy/WirelessPhy set RXThresh_ 3.652e-10</font>        ;#設定傳輸範圍為 250m</p>
<p>其他參考資料：</p>
<p><span lang="EN-US">1.<a href="http://hpds.ee.ncku.edu.tw/~smallko/ns2/range.htm" target="_blank">How can you set the communication radius in  wireless nodes?</a></span><a href="http://hpds.ee.ncku.edu.tw/~smallko/ns2/range.htm" target="_blank"> </a></p>
<p>2.<a href="http://nsda.ee.ncku.edu.tw/chengrs/report/adhoc/Linux-AdHoc.pdf" onmousedown="return rwt(this,'','','res','6','AFQjCNHIxHTNVglgUwmzptI4Si1qx8YsbQ','&#038;sig2=-s8akjB_-HU3BG81-_oDpg')" class="l"><font color="#cc0033">NS-2</font> 下的IEEE 802.11 Ad Hoc 無線網路模擬(pdf更完整資料)</a></p>
<p>3.<a href="http://hitblueghost.spaces.live.com/blog/cns!78ACD4C09B748E6E!203.entry" target="_blank">ns tool 簡介</a></p>
<p><span id="ctl00_MainContentPlaceholder_ctl01_ctl00_lblEntry">NS中提供了3种传播模 型：FreeSpace, TwoRayGround, Shadowing。一个数据包如果要在接收方正确接收，接收功率必须大于某个接收功率阈值(threshold).threshold用来计算在某种传 播模型下，如何设定接收功率阈值来控制无线传输的范围。</span></p>]]></content:encoded>
			<wfw:commentRss>http://www.redmaple.idv.tw/index.php/archives/212/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>在 Debian 3.0r0 Sarge 安裝 NS2 2.27</title>
		<link>http://www.redmaple.idv.tw/index.php/archives/193</link>
		<comments>http://www.redmaple.idv.tw/index.php/archives/193#comments</comments>
		<pubDate>Sat, 06 Oct 2007 10:50:04 +0000</pubDate>
		<dc:creator>紅楓</dc:creator>
				<category><![CDATA[Debian Linux]]></category>
		<category><![CDATA[Research]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[ns2]]></category>

		<guid isPermaLink="false">http://red.ns2go.com/index.php/archives/193</guid>
		<description><![CDATA[話說 Debian 3.0 Sarge 的版本現在不易弄到（現在看居然有些是要用買才能拿到 = ="）~自己能找出兩年前抓的 Sarge DVD安裝片也真是慶幸的大叫..爽啊！ 從遭遇找不到光碟片，到尋獲的過程中，真的百感交替～所以決定若有朋友需要 Sarge  DVD dis1 , 2 可留言或 e-mail 給紅，再告知如何下載。 以下為安裝NS2.27 在 Debian Sarge 的過程 OS: Debian3.0r0 (代號：Sarge) User: ns2 NS2 : NS2 2.27 安裝好　Debian 3.0rX 之後，先切換至 root 補齊以下的套件 注意，不能升級至 GCC 4.x 的版本，要使用 gcc 3.4 才行，不然編譯時即會產生錯誤 #aptitude 以下需求的套件是從其他網頁上得來的資料，經紅安裝後也的確可以運作.. gcc-3.4 gcc-3.4-base g++-3.4 xgraph xlibs-static-dev gnome-core（已預設安裝） x-window-system-core（已預設安裝） 從 http://www.isi.edu/nsnam/dist/ [...]]]></description>
			<content:encoded><![CDATA[<p>話說 Debian 3.0 Sarge 的版本現在不易弄到（現在看居然有些是要用買才能拿到 = ="）~自己能找出兩年前抓的 Sarge DVD安裝片也真是慶幸的大叫..爽啊！</p>
<p>從遭遇找不到光碟片，到尋獲的過程中，真的百感交替～所以決定<font color="#ff0000">若有朋友需要 Sarge  DVD dis1 , 2 可留言或 e-mail 給紅，再告知如何下載</font>。</p>
<p>以下為安裝NS2.27 在 Debian Sarge 的過程</p>
<p>OS: Debian3.0r0 (代號：Sarge)</p>
<p>User: ns2</p>
<p>NS2 : NS2 2.27</p>
<p>安裝好　Debian 3.0rX 之後，先切換至 root 補齊以下的套件</p>
<p>注意，不能升級至 GCC 4.x 的版本，要使用 gcc 3.4 才行，不然編譯時即會產生錯誤</p>
<p>#<strong>aptitude</strong><span id="more-193"></span></p>
<p>以下需求的套件是從其他網頁上得來的資料，經紅安裝後也的確可以運作..</p>
<p>gcc-3.4</p>
<p>gcc-3.4-base</p>
<p>g++-3.4</p>
<p>xgraph</p>
<p>xlibs-static-dev</p>
<p>gnome-core（已預設安裝）</p>
<p>x-window-system-core（已預設安裝）</p>
<p>從 <a href="http://www.isi.edu/nsnam/dist/" target="_blank">http://www.isi.edu/nsnam/dist/</a> 下載 NS2 v2.27（檔名：http://www.isi.edu/nsnam/dist/ns-allinone-2.27.tar.gz 此為套件整合包）至個人帳號目錄下</p>
<p>2.將檔案解壓縮後，即會建立目錄『ns-allinone-2.27』</p>
<p>#<font color="#0000ff"><strong>tar　-zxvf　ns-allinone-2.27</strong><strong>.tar.gz</strong></font></p>
<p><font color="#ff0000">－－－－－－－－－如果安裝 Debian 3.0 （Sarge）就跳過此段－－－－－－－－－－</font></p>
<p>===========<span lang="en-us">Fedora Core 5 and Suse 10 適用</span>=================</p>
<p>若使用 <span lang="en-us">Fedora Core 5 and Suse 10 進行直接編譯應該會產生以下的錯誤訊息，要進行 patch 修正</span></p>
<p>（紅曾用 Fedora 5 進行 patch 及安裝，卻仍是失敗&#8230;Orz ，於是放棄～很慶幸的翻出兩年前的 Debian 3.0r (Sarge) 才有此篇的產生）</p>
<p>測試過後發現 2.27,2.28 ,2.29.2無法直接編譯，會有下列的錯誤訊息：</p>
<p>checking if 64bit support is requested&#8230; no<br />
checking if 64bit Sparc VIS support is requested&#8230; no<br />
checking system version (for dynamic loading)&#8230; ./configure: line<br />
7624: syntax error near unexpected token `)&#8217;<br />
./configure: line 7624: `       OSF*)&#8217;<br />
tcl8.3.2 configuration failed! Exiting &#8230;<br />
Tcl is not part of the ns project.  Please see<br />
<a href="http://www.Scriptics.com&lt" rel="nofollow">http://www.Scriptics.com&lt</a>;<a href="http://www.scriptics.com/&gt;" rel="nofollow">http://www.scriptics.com/&gt;</a><br />
使用  <a href="http://www.tekno.chalmers.se/~yusheng/projects.htm" target="_blank">http://www.tekno.chalmers.se/~yusheng/projects.htm</a> 網頁的 2.26,2.27,2.28 patch 及執行方式後，即可編譯</p>
<p>若以 2.27 版的 patch for gcc 4.1（檔名：ns-2.27-gcc410.patch）為例：</p>
<p>在 ns-allinone-2.27 目錄外，下指令：</p>
<p>#<font color="#ff0000"><strong>patch -p0 &lt;ns-2.27-gcc410.patch</strong> </font></p>
<p>=============================================2007.11.08 update=</p>
<p><font color="#ff0000">－－－－－－－－－接續以下動作－－－－－－－－－－</font></p>
<p>接下來開始編譯</p>
<p>#<font color="#0000ff"><strong>cd　ns-allinone-2.27</strong></font></p>
<p>#<font color="#0000ff"><strong>./install</strong></font></p>
<p>編譯成功後，會出現訊息，需要使用者手動設定ns2路徑至個人 PATH 中</p>
<p><a href="http://red.ns2go.com/wp-content/uploads/2007.12/ns2_01_.gif" onclick="ps_imagemanager_popup(this.href,'ns2_01_.gif','800','600');return false" onfocus="this.blur()"><img src="http://red.ns2go.com/wp-content/uploads/2007.12/.thumbs/.ns2_01_.gif" alt="ns2_01_.gif" title="ns2_01_.gif" border="0" height="150" width="200" /></a></p>
<p>=================================================================</p>
<p>.&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-</p>
<p>Please put <font color="#0000ff">/home/ns2/ns-allinone-2.27/bin:/home/ns2/ns-allinone-2.27/tcl8.4.5/unix:/home/ns2/ns-allinone-2.27/tk8.4.5/unix</font><br />
into your PATH environment; so that you&#8217;ll be able to run itm/tclsh/wish/xgraph.</p>
<p>IMPORTANT NOTICES:</p>
<p>(1) You MUST put <font color="#0000ff">/home/ns2/ns-allinone-2.27/otcl-1.8, /home/ns2/ns-allinone-2.27/lib</font>,<br />
into your <font color="#0000ff">LD_LIBRARY_PATH</font> environment variable.<br />
If it complains about X libraries, add path to your X libraries<br />
into LD_LIBRARY_PATH.<br />
If you are using csh, you can set it like:<br />
setenv LD_LIBRARY_PATH &lt;paths&gt;<br />
If you are using sh, you can set it like:<br />
export LD_LIBRARY_PATH=&lt;paths&gt;</p>
<p>(2) You MUST put <font color="#0000ff">/home/ns2/ns-allinone-2.27/tcl8.4.5/library</font> into your <font color="#0000ff">TCL_LIBRARY</font> environmental<br />
variable. Otherwise ns/nam will complain during startup.</p>
<p>(3) [OPTIONAL] To save disk space, you can now delete directories tcl8.4.5<br />
and tk8.4.5. They are now installed under /home/ns2/ns-allinone-2.27/{bin,include,lib}</p>
<p>After these steps, you can now run the ns validation suite with<br />
cd ns-2.27; ./validate</p>
<p>For trouble shooting, please first read ns problems page<br />
<a href="http://www.isi.edu/nsnam/ns/ns-problems.html" rel="nofollow">http://www.isi.edu/nsnam/ns/ns-problems.html</a>. Also search the ns mailing list archive<br />
for related posts.</p>
<p>==============================================================================</p>
<p>在(1)的路徑設定上， Debian 預設是使用 bash，所以要用　<font color="#0000ff">LD_LIBRARY_PATH</font></p>
<p>3.設定 NS2 環境路徑</p>
<p>#<font color="#0000ff"><span style="font-weight: bold">nano ../.bashrc</span></font></p>
<p>將下述三行加至　.bashrc 中，即可</p>
<p>第一行多加了　$PATH　是加原有系統設定的路徑一併加回，若未加的話，就無法系統中可執行的程式了</p>
<p>另～每個路徑結束後，使用冒號&#8212;&gt;&#8217;  :  &#8216; 做分隔</p>
<p style="color: #ff0000">export PATH=$PATH:/home/ns2/ns-allinone-2.27/bin:/home/ns2/ns-allinone-2.27/tcl8.4.5/unix:/home/ns2/ns-allinone-2.27/tk8.4.5/unix<br />
export LD_LIBRARY_PATH=/home/ns2/ns-allinone-2.27/otcl-1.8:/home/ns2/ns-allinone-2.27/lib<br />
export TCL_LIBRARY=/home/ns2/ns-allinone-2.27/tcl8.4.5/library</p>
<p>4.重新登入帳號 ns2 （讓系統重新讀取一次PATH路徑）</p>
<p>5.讓NS2進行驗證動作</p>
<p>#<strong>cd　ns-allinone-2.27</strong></p>
<p>#<span style="font-weight: bold">cd　ns-2.27</span></p>
<p>#<span style="font-weight: bold">./validate</span></p>
<p>約半小時至數小時後，就可以看一行字出現：</p>
<h2><strong>　All test pass</strong></h2>
<p><a href="http://red.ns2go.com/wp-content/uploads/2007.12/ns2_02_.gif" onclick="ps_imagemanager_popup(this.href,'ns2_02_.gif','800','600');return false" onfocus="this.blur()"><img src="http://red.ns2go.com/wp-content/uploads/2007.12/.thumbs/.ns2_02_.gif" alt="ns2_02_.gif" title="ns2_02_.gif" border="0" height="150" width="200" /></a></p>
<p>恭喜！成功了&#8230;.</p>
<p>（編譯成功時的字當然不會放大！加粗！，但～～～是我太激動&#8230;我~~~終於在 Debian 上可以正常使用NS2 了&#8230;泣）</p>
<p>附記：</p>
<p>在 Linux KDE 或 GNOME 桌面環境下執行 NS-2 （<font color="#ff0000">沒有  Cygwin 模擬 lnux 環境的指令： startxwin.bat 去啟動繪圖模式</font>）只要直接下指令（以執行example2.tcl為例）</p>
<p>#<strong>ns  example2.tcl</strong></p>
<p>就可以了（若tcl 中有要求圖形畫面的輸出）</p>
<p><a href="http://red.ns2go.com/wp-content/uploads/2007.10/NS2_snapshot.jpg" onclick="ps_imagemanager_popup(this.href,'NS2_snapshot.jpg','800','549');return false"><img src="http://red.ns2go.com/wp-content/uploads/2007.10/.thumbs/.NS2_snapshot.jpg" alt="NS2_snapshot.jpg" title="NS2_snapshot.jpg" border="0" height="137" width="200" /></a></p>
<p>參考網頁</p>
<p>1.<a href="http://nsnam.isi.edu/nsnam/index.php/Downloading_and_installing_ns-2" target="_blank">Downloading and installing ns-2</a></p>
<p>2.<a href="http://blog.cotix.net/2007.08.08/121" target="_blank">Kcw&#8217;s Blog &#8211; Debian GNU Linux / 安裝NS2</a></p>
<p>3.<a href="http://nsnam.isi.edu/nsnam/index.php/Main_Page" target="_blank">ns2 &#8211; main page </a></p>
<p>後記：</p>
<p>1.很感謝 <a href="http://blog.cotix.net/" target="_blank">Kcw</a> 寫的Debian相關套件資料，讓紅在安裝過程上節省不少資料搜尋的時間。</p>
<p><font color="#ff0000"><br />
</font></p>]]></content:encoded>
			<wfw:commentRss>http://www.redmaple.idv.tw/index.php/archives/193/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bad robtos 限定！Part II ： 還有更惡質的 robots (spiders) 不看robots.txt 的指示時～ 用 Robot trap</title>
		<link>http://www.redmaple.idv.tw/index.php/archives/171</link>
		<comments>http://www.redmaple.idv.tw/index.php/archives/171#comments</comments>
		<pubDate>Sun, 12 Aug 2007 09:25:52 +0000</pubDate>
		<dc:creator>紅楓</dc:creator>
				<category><![CDATA[Debian Linux]]></category>
		<category><![CDATA[IT]]></category>
		<category><![CDATA[Research]]></category>

		<guid isPermaLink="false">http://red.ns2go.com/index.php/archives/171</guid>
		<description><![CDATA[機車哩~~spider 也有這種來陰的，不照規定來的：有已寫好的 robots.txt 讓 spider 知道這兒歡不歡迎它們，但就有不看的傢伙存在 沒關係，上網 google 一下發現，還是有網友有法子可以治那些網路垃圾 有國外網友寫了這一篇資料：How to keep bad robots, spiders and web crawlers away 0.在使用這份資料之前，需先注意 apache2 是否有開啟支援 .htaccess 　看 /etc/apache2/sites-available/default 設定檔，&#8221;None&#8221; 才是有開啟 　　AllowOverride None &#160; 作者提供了兩個方法供使用 1.使用 .htaccess 來限定 BOT 的行為 2.設 Robot trap (管他叫：網路爬虫用陷阱？ robot抓取器？ -.- 自行體會中文的意境~~) 　紅使用了第二個『Robot trap』來抓 &#34; robot 逃犯 &#34; 　下載網站提供的 robotrap.zip 檔，解壓縮後，上傳至 www根目錄（不含 robotrap目錄） .htaccess [...]]]></description>
			<content:encoded><![CDATA[<p>機車哩~~spider 也有這種來陰的，不照規定來的：有已寫好的 robots.txt 讓 spider 知道這兒歡不歡迎它們，但就有不看的傢伙存在</p>
<p>沒關係，上網 google 一下發現，還是有網友有法子可以治那些網路垃圾</p>
<p>有國外網友寫了這一篇資料：<a href="http://www.fleiner.com/bots/" target="_blank">How to keep bad robots, spiders and web crawlers away</a></p>
<p>0.在使用這份資料之前，需先注意 apache2 是否有開啟支援 .htaccess</p>
<p>　看 /etc/apache2/sites-available/default 設定檔，&rdquo;None&rdquo; 才是有開啟</p>
<p>　　AllowOverride <font color="#ff0000">None</font></p>
<p><span id="more-171"></span>&nbsp;</p>
<p>作者提供了兩個方法供使用</p>
<p>1.使用 .htaccess 來限定 BOT 的行為</p>
<p>2.設 Robot trap (管他叫：網路爬虫用陷阱？ robot抓取器？ -.- 自行體會中文的意境~~)</p>
<p>　紅使用了第二個『Robot trap』來抓 &quot; robot 逃犯 &quot;</p>
<p>　下載網站提供的 robotrap.zip 檔，解壓縮後，上傳至 www根目錄（不含 robotrap目錄） </p>
<p><font color="#0000ff">.htaccess , ailtrap.shtml , X.html</font></p>
<p>&lt;DIR botsi&gt; <font color="#0000ff">.htaccess , index.shtml</font></p>
<p>&lt;DIR botsv&gt; <font color="#0000ff">.htaccess , index.shtml</font></p>
<p>3.修改 /www根目錄/.htaccess 檔案內容</p>
<pre>     <font color="#0000ff">RewriteEngine on</font></pre>
<pre><font color="#0000ff">　　Options +FollowSymlinks</font><font color="#0000ff"></font></pre>
<pre><font color="#0000ff">　　</font><font color="#0000ff">RewriteBase /</font></pre>
<pre><font color="#0000ff">　　RewriteRule ^.*\.html /botsv/index.shtml</font></pre>
<pre><font color="#0000ff">　　ErrorDocument 400 /botsv/index.shtml</font></pre>
<pre><font color="#0000ff">　　ErrorDocument 402 /botsv/index.shtml</font><font color="#0000ff"></font></pre>
<pre><font color="#0000ff">　　</font><font color="#0000ff">ErrorDocument 403 /botsv/index.shtml</font></pre>
<pre><font color="#0000ff">　　ErrorDocument 404 /botsv/index.shtml</font></pre>
<pre><font color="#0000ff">　　ErrorDocument 500 /botsv/index.shtml</font></pre>
<p>4.設定好 .htaccess 後，一定要先測試原先網頁是否能正常運作</p>
<p>5.收工~等待驗收成果了..&nbsp;</p>]]></content:encoded>
			<wfw:commentRss>http://www.redmaple.idv.tw/index.php/archives/171/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Bad robtos 限定！Part I ： 管理robots的搜尋及次數，更別讓劣質的robots 浪費頻寬＆偷取資料～</title>
		<link>http://www.redmaple.idv.tw/index.php/archives/170</link>
		<comments>http://www.redmaple.idv.tw/index.php/archives/170#comments</comments>
		<pubDate>Sun, 12 Aug 2007 08:33:06 +0000</pubDate>
		<dc:creator>紅楓</dc:creator>
				<category><![CDATA[Debian Linux]]></category>
		<category><![CDATA[IT]]></category>
		<category><![CDATA[Research]]></category>

		<guid isPermaLink="false">http://red.ns2go.com/index.php/archives/170</guid>
		<description><![CDATA[花了好一些時間研究 robots.txt 的寫法與設定 對於劣質的網路爬虫類（spider , BOT）實在防不勝防，想全部擋掉，但又想在 google , yahoo , MSN live 上被人找到 在未研究 robots.txt 之前，實在不是件簡單的事 導入主題～有哪些劣質的 spider 呢？google一下，發現已有 外國網友 整理 （只要複製、另存在WWW 根目錄 / robots.txt 即可跟不少 bad spiders say Goodbye 了！） &#160; 網路上有不少 robots.txt checker ，可以檢測我們寫的 robots.txt 語法是否正確，並給我們一些建議 紅使用 New Robots.txt Syntax Checker 來進行檢測 以紅為例子，在它的 input field 輸入&#160; http://red.ns2go.com/robots.txt&#160;&#160;&#038;nbsp; 即可 會逐行檢查語法，並依各個 BOT 是否能 通過(Allow) / [...]]]></description>
			<content:encoded><![CDATA[<p>花了好一些時間研究 robots.txt 的寫法與設定</p>
<p>對於劣質的網路爬虫類（spider , BOT）實在防不勝防，想全部擋掉，但又想在 google , yahoo , MSN live 上被人找到</p>
<p>在未研究 robots.txt 之前，實在不是件簡單的事</p>
<p>導入主題～有哪些劣質的 spider 呢？google一下，發現已有 <a href="http://www.funender.com/phpBB2/about18577.html" target="_blank">外國網友</a> 整理</p>
<p>（只要複製、另存在WWW 根目錄 / <font color="#ff0000">robots.txt</font> 即可跟不少 bad spiders say Goodbye 了！）</p>
<p>&nbsp;</p>
<p>網路上有不少 robots.txt checker ，可以檢測我們寫的 robots.txt 語法是否正確，並給我們一些建議</p>
<p>紅使用 <a href="http://tool.motoricerca.info/robots-checker.phtml" target="_blank">New Robots.txt Syntax Checker</a> 來進行檢測</p>
<p>以紅為例子，在它的 input field 輸入&nbsp; <a href="http://red.ns2go.com/robots.txt&nbsp;&nbsp;&#038;nbsp" rel="nofollow">http://red.ns2go.com/robots.txt&nbsp;&nbsp;&#038;nbsp</a>; 即可</p>
<p>會逐行檢查語法，並依各個 BOT 是否能 <font color="#009900">通過(Allow)</font> / <font color="#ff0000">封鎖(Disallow)</font> 將其標示顏色</p>
<p><span id="more-170"></span>1.有錯誤處，會標示紅色（檢查時，即發現兩、三個 BOT 重覆定義，刪除即可 ）</p>
<p>2.有其他建議，在最下方亦會告知</p>
<p>3.額外加入從後台發現的不知名 robots ，加以限定</p>
<p>&nbsp;</p>
<p>當完全通過檢測時，網站會給予一個小貼貼，將 code 複製後貼在網站上，可提供檢核</p>
<p><a href="http://red.ns2go.com/wp-content/uploads/2007.08/snap044.gif" onclick="ps_imagemanager_popup(this.href,&#39;snap044.gif&#39;,&#39;934&#39;,&#39;322&#39;);return false"><img src="http://red.ns2go.com/wp-content/uploads/2007.08/.thumbs/.snap044.gif" border="0" alt="snap044.gif" title="snap044.gif" width="200" height="69" /></a></p>
<p>======================================================</p>
<p>設定說明：僅允許Googlebot , MSNBot , Slurp(Yahoo bot) , BaiDuSpider 來訪</p>
<p>間隔來訪時間：3600 sec (1小時) 紅覺得 bot 不用這麼常來吧，1小時來一次已足夠</p>
<p>其他列表的 bot 皆不允許抓取資料</p>
<p>倒數 10 行指的是：不允許任何 BOT 抓取 wp-admin , wp-contend &#8230;等目錄中的資料</p>
<p>並且指定 sitemap 檔的路徑為 <a href="http://red.ns2go.com/sitemap.xml.gz" rel="nofollow">http://red.ns2go.com/sitemap.xml.gz</a></p>
<p>=================以下為紅的 robots.txt======================&nbsp;</p>
<p>User-agent: Googlebot<br />Crawl-delay: 3600<br />Disallow: </p>
<p>User-agent: MSNBot<br />Crawl-delay: 3600<br />Disallow: </p>
<p>User-agent: Slurp<br />Crawl-delay: 3600<br />Disallow: </p>
<p>User-agent: BaiDuSpider<br />Crawl-delay: 3600<br />Disallow:</p>
<p>User-agent: Gecko<br />Disallow: /</p>
<p>User-agent: YodaoBot<br />Disallow: /</p>
<p>User-agent: BotRightHere<br />Disallow: /</p>
<p>User-agent: WebZip<br />Disallow: /</p>
<p>User-agent: larbin<br />Disallow: /</p>
<p>User-agent: b2w/0.1<br />Disallow: /</p>
<p>User-agent: Copernic<br />Disallow: /</p>
<p>User-agent: psbot<br />Disallow: /</p>
<p>User-agent: Python-urllib<br />Disallow: /</p>
<p>User-agent: URL_Spider_Pro<br />Disallow: /</p>
<p>User-agent: CherryPicker<br />Disallow: /</p>
<p>User-agent: EmailCollector<br />Disallow: /</p>
<p>User-agent: EmailSiphon<br />Disallow: /</p>
<p>User-agent: WebBandit<br />Disallow: /</p>
<p>User-agent: EmailWolf<br />Disallow: /</p>
<p>User-agent: CopyRightCheck<br />Disallow: /</p>
<p>User-agent: Crescent<br />Disallow: /</p>
<p>User-agent: SiteSnagger<br />Disallow: /</p>
<p>User-agent: ProWebWalker<br />Disallow: /</p>
<p>User-agent: CheeseBot<br />Disallow: /</p>
<p>User-agent: LNSpiderguy<br />Disallow: /</p>
<p>User-agent: Alexibot<br />Disallow: /</p>
<p>User-agent: Teleport<br />Disallow: /</p>
<p>User-agent: TeleportPro<br />Disallow: /</p>
<p>User-agent: MIIxpc<br />Disallow: /</p>
<p>User-agent: Telesoft<br />Disallow: /</p>
<p>User-agent: Website Quester<br />Disallow: /</p>
<p>User-agent: moget/2.1<br />Disallow: /</p>
<p>User-agent: WebZip/4.0<br />Disallow: /</p>
<p>User-agent: WebStripper<br />Disallow: /</p>
<p>User-agent: WebSauger<br />Disallow: /</p>
<p>User-agent: WebCopier<br />Disallow: /</p>
<p>User-agent: NetAnts<br />Disallow: /</p>
<p>User-agent: Mister PiX<br />Disallow: /</p>
<p>User-agent: WebAuto<br />Disallow: /</p>
<p>User-agent: TheNomad<br />Disallow: /</p>
<p>User-agent: WWW-Collector-E<br />Disallow: /</p>
<p>User-agent: RMA<br />Disallow: /</p>
<p>User-agent: libWeb/clsHTTP<br />Disallow: /</p>
<p>User-agent: asterias<br />Disallow: /</p>
<p>User-agent: httplib<br />Disallow: /</p>
<p>User-agent: turingos<br />Disallow: /</p>
<p>User-agent: spanner<br />Disallow: /</p>
<p>User-agent: InfoNaviRobot<br />Disallow: /</p>
<p>User-agent: Harvest/1.5<br />Disallow: /</p>
<p>User-agent: Bullseye/1.0<br />Disallow: /</p>
<p>User-agent: Mozilla/4.0 (compatible; BullsEye; Windows 95)<br />Disallow: /</p>
<p>User-agent: Crescent Internet ToolPak HTTP OLE Control v.1.0<br />Disallow: /</p>
<p>User-agent: CherryPickerSE/1.0<br />Disallow: /</p>
<p>User-agent: CherryPickerElite/1.0<br />Disallow: /</p>
<p>User-agent: WebBandit/3.50<br />Disallow: /</p>
<p>User-agent: NICErsPRO<br />Disallow: /</p>
<p>User-agent: Microsoft URL Control &#8211; 5.01.4511<br />Disallow: /</p>
<p>User-agent: DittoSpyder<br />Disallow: /</p>
<p>User-agent: Foobot<br />Disallow: /</p>
<p>User-agent: SpankBot<br />Disallow: /</p>
<p>User-agent: BotALot<br />Disallow: /</p>
<p>User-agent: lwp-trivial/1.34<br />Disallow: /</p>
<p>User-agent: lwp-trivial<br />Disallow: /</p>
<p>User-agent: BunnySlippers<br />Disallow: /</p>
<p>User-agent: Microsoft URL Control &#8211; 6.00.8169<br />Disallow: /</p>
<p>User-agent: URLy Warning<br />Disallow: /</p>
<p>User-agent: Wget/1.6<br />Disallow: /</p>
<p>User-agent: Wget/1.5.3<br />Disallow: /</p>
<p>User-agent: Wget<br />Disallow: /</p>
<p>User-agent: LinkWalker<br />Disallow: /</p>
<p>User-agent: cosmos<br />Disallow: /</p>
<p>User-agent: moget<br />Disallow: /</p>
<p>User-agent: hloader<br />Disallow: /</p>
<p>User-agent: humanlinks<br />Disallow: /</p>
<p>User-agent: LinkextractorPro<br />Disallow: /</p>
<p>User-agent: Offline Explorer<br />Disallow: /</p>
<p>User-agent: Mata Hari<br />Disallow: /</p>
<p>User-agent: LexiBot<br />Disallow: /</p>
<p>User-agent: Web Image Collector<br />Disallow: /</p>
<p>User-agent: The Intraformant<br />Disallow: /</p>
<p>User-agent: True_Robot/1.0<br />Disallow: /</p>
<p>User-agent: True_Robot<br />Disallow: /</p>
<p>User-agent: BlowFish/1.0<br />Disallow: /</p>
<p>User-agent: JennyBot<br />Disallow: /</p>
<p>User-agent: MIIxpc/4.2<br />Disallow: /</p>
<p>User-agent: BuiltBotTough<br />Disallow: /</p>
<p>User-agent: ProPowerBot/2.14<br />Disallow: /</p>
<p>User-agent: BackDoorBot/1.0<br />Disallow: /</p>
<p>User-agent: toCrawl/UrlDispatcher<br />Disallow: /</p>
<p>User-agent: WebEnhancer<br />Disallow: /</p>
<p>User-agent: suzuran<br />Disallow: /</p>
<p>User-agent: TightTwatBot<br />Disallow: /</p>
<p>User-agent: VCI WebViewer VCI WebViewer Win32<br />Disallow: /</p>
<p>User-agent: VCI<br />Disallow: /</p>
<p>User-agent: Szukacz/1.4<br />Disallow: /</p>
<p>User-agent: QueryN Metasearch<br />Disallow: /</p>
<p>User-agent: Openfind data gatherer<br />Disallow: /</p>
<p>User-agent: Openfind<br />Disallow: /</p>
<p>User-agent: Xenu&#39;s Link Sleuth 1.1c<br />Disallow: /</p>
<p>User-agent: Xenu&#39;s<br />Disallow: /</p>
<p>User-agent: Zeus<br />Disallow: /</p>
<p>User-agent: RepoMonkey Bait &amp; Tackle/v1.01<br />Disallow: /</p>
<p>User-agent: RepoMonkey<br />Disallow: /</p>
<p>User-agent: Microsoft URL Control<br />Disallow: /</p>
<p>User-agent: Openbot<br />Disallow: /</p>
<p>User-agent: URL Control<br />Disallow: /</p>
<p>User-agent: Zeus Link Scout<br />Disallow: /</p>
<p>User-agent: Zeus 32297 Webster Pro V2.9 Win32<br />Disallow: /</p>
<p>User-agent: Webster Pro<br />Disallow: /</p>
<p>User-agent: EroCrawler<br />Disallow: /</p>
<p>User-agent: LinkScan/8.1a Unix<br />Disallow: /</p>
<p>User-agent: Keyword Density/0.9<br />Disallow: /</p>
<p>User-agent: Kenjin Spider<br />Disallow: /</p>
<p>User-agent: Iron33/1.0.2<br />Disallow: /</p>
<p>User-agent: Bookmark search tool<br />Disallow: /</p>
<p>User-agent: GetRight/4.2<br />Disallow: /</p>
<p>User-agent: FairAd Client<br />Disallow: /</p>
<p>User-agent: Gaisbot<br />Disallow: /</p>
<p>User-agent: Aqua_Products<br />Disallow: /</p>
<p>User-agent: Radiation Retriever 1.1<br />Disallow: /</p>
<p>User-agent: Flaming AttackBot<br />Disallow: /</p>
<p>User-agent: Oracle Ultra Search<br />Disallow: /</p>
<p>User-agent: MSIECrawler<br />Disallow: /</p>
<p>User-agent: PerMan<br />Disallow: /</p>
<p>User-agent: searchpreview<br />Disallow: /</p>
<p>User-agent: TurnitinBot<br />Disallow: /</p>
<p>User-agent: wget<br />Disallow: /</p>
<p>User-agent: ExtractorPro<br />Disallow: /</p>
<p>User-agent: WebZIP/4.21<br />Disallow: /</p>
<p>User-agent: WebZIP/5.0<br />Disallow: /</p>
<p>User-agent: HTTrack 3.0<br />Disallow: /</p>
<p>User-agent: TurnitinBot/1.5<br />Disallow: /</p>
<p>User-agent: WebCopier v3.2a<br />Disallow: /</p>
<p>User-agent: WebCapture 2.0<br />Disallow: /</p>
<p>User-agent: WebCopier v.2.2<br />Disallow: /</p>
<p>User-agent: *&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br />Sitemap: <a href="http://red.ns2go.com/sitemap.xml.gz" rel="nofollow">http://red.ns2go.com/sitemap.xml.gz</a><br />Crawl-delay: 3600&nbsp; <br />Disallow: /wp-admin/ <br />Disallow: /wp-content/<br />Disallow: /wp-includes/<br />Disallow: /wp-login.php <br />Disallow: /awstats/<br />Disallow: /awstats-icon/&nbsp; <br />Disallow: /temp/&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </p>
<p>&nbsp;</p>
<p>參考資料：</p>
<p>◇.<a href="http://kirin-lin.idv.tw/2007_07/09/1248/" target="_blank">robots at 2007-07-09</a>&nbsp; Kirin Lin 我上網、改程式、部落格，故我在-改版中- </p>
<p>◆.<a href="http://www.mcanerin.com/EN/search-engine/robots-txt.asp" target="_blank">SEO tools：Robot Control Code Generation Tool</a>　　robot.txt 產生器，可以用用看</p>
<p>◇.<a href="http://tool.motoricerca.info/robots-checker.phtml" target="_blank">New Robots.txt Syntax Checker</a> robots.txt checker</p>]]></content:encoded>
			<wfw:commentRss>http://www.redmaple.idv.tw/index.php/archives/170/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>There are 2 possible outcomes</title>
		<link>http://www.redmaple.idv.tw/index.php/archives/131</link>
		<comments>http://www.redmaple.idv.tw/index.php/archives/131#comments</comments>
		<pubDate>Fri, 11 May 2007 05:13:35 +0000</pubDate>
		<dc:creator>紅楓</dc:creator>
				<category><![CDATA[Research]]></category>

		<guid isPermaLink="false">http://red.ns2go.com/index.php/archives/131</guid>
		<description><![CDATA[看著書上某章節標題下方寫著這麼一小段話，挺不錯的： 　There are 2 possible outcomes: 　　If the result confirms the hypothesis, then you&#39;ve made a&#160; measurement. 　　If the result contrary to the hypothesis, then you&#39;ve made a discovery.&#160; 　　　　　　　　　　　　　　　　　　　　　　　　　　　　　　　　-Enrico Fermi &#160;這幾句話，值得好好品味&#8230; &#160;]]></description>
			<content:encoded><![CDATA[<p>看著書上某章節標題下方寫著這麼一小段話，挺不錯的：</p>
<p>　<strong>There are 2 possible outcomes:</strong></p>
<p><strong>　　If the result confirms the hypothesis, then you&#39;ve made a&nbsp; measurement.</strong></p>
<p><strong>　　If the result contrary to the hypothesis, then you&#39;ve made a discovery.&nbsp;</strong></p>
<p><em><strong>　　　　　　　　　　　　　　　　　　　　　　　　　　　　　　　　-Enrico Fermi</strong></em> </p>
<p>&nbsp;這幾句話，值得好好品味&#8230;</p>
<p>&nbsp;</p>]]></content:encoded>
			<wfw:commentRss>http://www.redmaple.idv.tw/index.php/archives/131/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>微積分或論文中常看到的希臘字母念法</title>
		<link>http://www.redmaple.idv.tw/index.php/archives/115</link>
		<comments>http://www.redmaple.idv.tw/index.php/archives/115#comments</comments>
		<pubDate>Thu, 19 Apr 2007 09:17:54 +0000</pubDate>
		<dc:creator>紅楓</dc:creator>
				<category><![CDATA[Research]]></category>
		<category><![CDATA[希臘字母念法]]></category>

		<guid isPermaLink="false">http://red.ns2go.com/index.php/archives/115</guid>
		<description><![CDATA[希臘字母讀法：把大陸網友的資料整理一下～方便使用，還要找還真煩人 中文的注音念法~~參考就好= =&#34; 照著念還挺怪的，還是看英文注音念出來的音較正確 序號&#160; 大寫&#160; 小寫&#160; 英文注音&#160; 國際音標註音&#160; 　　中文注音&#160; 　意義 1&#160;&#160;&#160;&#160;&#160; &#913;&#160;&#160;&#160;&#160;&#160;&#160; &#945;&#160;&#160;&#160;&#160;&#160; alpha&#160;&#160;&#160;&#160;&#160;&#160; a:lf&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; 阿爾法&#160; 　　角度；係數 2&#160;&#160;&#160;&#160;&#160; &#914;&#160;&#160;&#160;&#160;&#160;&#160; &#946;&#160;&#160;&#160;&#160;&#160; beta&#160;&#160;&#160;&#160;&#160;&#160;&#160; bet&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; 貝塔&#160; 　　　 磁通係數；角度；係數 3&#160;&#160;&#160;&#160;&#160; &#915;&#160;&#160;&#160;&#160;&#160;&#160; &#947;&#160;&#160;&#160;&#160;&#160;&#160; gamma&#160;&#160;&#160; ga:m&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; 伽馬&#160; 　　　 電導係數（小寫） 4&#160;&#160;&#160;&#160;&#160; &#916;&#160;&#160;&#160;&#160;&#160;&#160; &#948;&#160;&#160;&#160;&#160;&#160; delta&#160;&#160;&#160;&#160;&#160;&#160;&#160; delt&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; 德爾塔&#160; 　　 變動；密度；屈光度 5&#160;&#160;&#160;&#160;&#160; &#917;&#160;&#160;&#160;&#160;&#160;&#160; &#949;&#160;&#160;&#160;&#160;&#160;&#160; epsilon&#160;&#160;&#160;&#160; ep`silon&#160;&#160;&#160;&#160;&#160;&#160;&#160; 伊普西龍&#160; 　 對數之基數 6&#160;&#160;&#160;&#160;&#160; &#918;&#160;&#160;&#160;&#160;&#160;&#160; &#950;&#160;&#160;&#160;&#160;&#160;&#160; zeta&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; zat&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; [...]]]></description>
			<content:encoded><![CDATA[<p>希臘字母讀法：<br />把大陸網友的資料整理一下～方便使用，還要找還真煩人</p>
<p>中文的注音念法~~參考就好= =&quot; 照著念還挺怪的，還是看英文注音念出來的音較正確</p>
<p>序號&nbsp; 大寫&nbsp; 小寫&nbsp; 英文注音&nbsp; 國際音標註音&nbsp; 　　中文注音&nbsp; 　意義 <br />1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &Alpha;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &alpha;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; alpha&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; a:lf&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 阿爾法&nbsp; 　　角度；係數 <br />2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &Beta;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &beta;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; beta&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; bet&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 貝塔&nbsp; 　　　 磁通係數；角度；係數 <br />3&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &Gamma;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &gamma;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; gamma&nbsp;&nbsp;&nbsp; ga:m&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 伽馬&nbsp; 　　　 電導係數（小寫） <br /><span id="more-115"></span>4&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &Delta;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &delta;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; delta&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; delt&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 德爾塔&nbsp; 　　 變動；密度；屈光度 <br />5&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &Epsilon;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &epsilon;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; epsilon&nbsp;&nbsp;&nbsp;&nbsp; ep`silon&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 伊普西龍&nbsp; 　 對數之基數 <br />6&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &Zeta;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &zeta;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; zeta&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; zat&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 截塔&nbsp; 　　　係數；方位角；阻抗；相對粘度；原子序數 <br />7&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &Eta;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &eta;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; eta&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; eit&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 艾塔&nbsp; 　　　 磁滯係數；效率（小寫） <br />8&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &Theta;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &theta;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; thet&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &theta;it&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp; 西塔&nbsp; 　　　溫度；相位角 <br />9&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &Iota;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &iota;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; iot&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; aiot&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 約塔&nbsp; 　　　 微小，一點兒 <br />10&nbsp;&nbsp;&nbsp; &Kappa;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &kappa;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; kappa&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; kap&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 卡帕&nbsp; 　　　&nbsp; 介質常數 <br />11&nbsp;&nbsp;&nbsp; &Lambda;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lambda;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; lambda&nbsp;&nbsp;&nbsp; lambd&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 蘭布達&nbsp; 　　　 波長（小寫）；體積 <br />12&nbsp;&nbsp;&nbsp; &Mu;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &mu;&nbsp;&nbsp;&nbsp;&nbsp; mu&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; mju&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 繆&nbsp; 　　　　　 磁導係數；微（千分之一）；放大因數（小寫） <br />13&nbsp;&nbsp;&nbsp; &Nu;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nu;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; nu&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; nju&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 紐&nbsp; 　　　　　 磁阻係數 <br />14&nbsp;&nbsp;&nbsp; &Xi;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &xi;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; xi&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ksi&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 克西&nbsp; 　 <br />15&nbsp;&nbsp;&nbsp; &Omicron;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &omicron;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; omicron&nbsp;&nbsp; omik`ron&nbsp;&nbsp;&nbsp;&nbsp; 奧密克戎&nbsp; 　 <br />16&nbsp;&nbsp;&nbsp; &Pi;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &pi;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; pi&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; pai&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 派&nbsp; 　　　　　圓週率=圓周&divide;直徑=3.1416 <br />17&nbsp;&nbsp;&nbsp; &Rho;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &rho;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; rho&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; rou&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 肉&nbsp; 　　　　&nbsp; 電阻係數（小寫） <br />18&nbsp;&nbsp;&nbsp; &Sigma;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &sigma;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; sigma&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; `sigma&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 西格馬&nbsp; 　　&nbsp; 總和（大寫），表面密度；跨導（小寫） <br />19&nbsp;&nbsp;&nbsp; &Tau;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &tau;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; tau&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; tau&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 套&nbsp; 　　　　&nbsp; 時間常數 <br />20&nbsp;&nbsp;&nbsp; &Upsilon;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &upsilon;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; upsilon&nbsp;&nbsp;&nbsp; jup`silon&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 宇普西龍&nbsp; 　&nbsp; 位移 <br />21&nbsp;&nbsp;&nbsp; &Phi;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &phi;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; phi&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; fai&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 佛愛&nbsp; 　　　&nbsp; 磁通；角 <br />22&nbsp;&nbsp;&nbsp; &Chi;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &chi;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; chi&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; phai&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 西&nbsp; 　 <br />23&nbsp;&nbsp;&nbsp; &Psi;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &psi;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; psi&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; psai&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 普西&nbsp; 　　　　角速；介質電通量（靜電力線）；角 <br />24&nbsp;&nbsp;&nbsp; &Omega;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &omega;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; omega&nbsp;&nbsp;&nbsp;&nbsp; o`miga&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 歐米伽&nbsp; 　　　歐姆（大寫）；角速（小寫）；角 </p>
<p>參考自大陸網友資料：<a href="http://www.cnblogs.com/belial/archive/2006/09/29/518254.html" target="_blank">http://www.cnblogs.com/belial/archive/2006/09/29/518254.html</a></p>
<p>&nbsp;</p>]]></content:encoded>
			<wfw:commentRss>http://www.redmaple.idv.tw/index.php/archives/115/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>令人生氣的網路爬虫類spider robots ~</title>
		<link>http://www.redmaple.idv.tw/index.php/archives/104</link>
		<comments>http://www.redmaple.idv.tw/index.php/archives/104#comments</comments>
		<pubDate>Tue, 03 Apr 2007 15:53:43 +0000</pubDate>
		<dc:creator>紅楓</dc:creator>
				<category><![CDATA[IT]]></category>
		<category><![CDATA[Research]]></category>

		<guid isPermaLink="false">http://red.ns2go.com/index.php/archives/104</guid>
		<description><![CDATA[因為文章數量漸漸增加，也發現到紅的 Apache server 中爬文的 robot 也越來越多 開始浮現一些問題 1.Apache server &#38; MySQL server 的 connection 某些時間被開始的量太誇張 2.CPU 及 HD 的負荷變得很吃重，甚至喘不過氣來( Pentuim 3.0G 512M)，而且目前僅只有進行 WWW 及MySQL 的服務 3.referral tracker顯示有很多 spam 造成的 error 連線 想了想有什麼治本的方法，紅想到可能可以從三個方向著手：Apache、robots、.htaccess 再考慮整體設定的簡便性，就打算從 Apache 這邊來下手 開啟httpd.conf（若是 Debian 的話，則是 /etc/apache2/apache2.conf ）設定檔 &#60;Directory /var/www/&#62; &#8230;&#8230;.. #以下是自己找到常來對紅的 Apache 搔擾的垃圾機器人 deny from .inktomisearch.com deny from 58.61.164. #尤其是這個網域來的，下手很重，輕輕鬆鬆攤瘓整個伺服器~~已經被搞數不清次數了 deny from [...]]]></description>
			<content:encoded><![CDATA[<p>因為文章數量漸漸增加，也發現到紅的 Apache server 中爬文的 robot 也越來越多</p>
<p>開始浮現一些問題</p>
<p>1.Apache server &amp; MySQL server 的 connection 某些時間被開始的量太誇張</p>
<p>2.CPU 及 HD 的負荷變得很吃重，甚至喘不過氣來( Pentuim 3.0G   512M)，而且目前僅只有進行 WWW 及MySQL 的服務</p>
<p>3.referral tracker顯示有很多 spam 造成的 error 連線</p>
<p><span id="more-104"></span>想了想有什麼治本的方法，紅想到可能可以從三個方向著手：Apache、robots、.htaccess</p>
<p>再考慮整體設定的簡便性，就打算從 Apache 這邊來下手</p>
<p>開啟httpd.conf（若是 Debian 的話，則是 /etc/apache2/apache2.conf ）設定檔</p>
<p>&lt;Directory /var/www/&gt;<br />
&#8230;&#8230;..</p>
<p>#以下是自己找到常來對紅的 Apache 搔擾的垃圾機器人</p>
<p>deny from .inktomisearch.com</p>
<p>deny from <font color="#ff0000">58.61.164. </font>           #尤其是這個網域來的，下手很重，輕輕鬆鬆攤瘓整個伺服器~~已經被搞數不清次數了</p>
<p>deny from 220.181.19.</p>
<p>deny from 202.108.11.</p>
<p>deny from .cs.tamu.edu</p>
<p><strike>後記：目前效果為何，還不太能確定~~先觀察幾天就知成效了</strike></p>
<p>20007.10.23</p>
<p>先感謝網友 SIKO 的 POST ~~讓紅發現先前留下的伏筆卻未完成</p>
<p>從 apache 的設定中去進行 deny 來源端，這效果是直接的，apache 會直接拒絕服務</p>
<p>上方寫著拒絕服務的五個網段，就從此不再服務（前提是對方的 ip在同網域中）</p>
<p>這樣的 deny效果是還不錯，但就是網站管理者是處於被動端去處理了</p>]]></content:encoded>
			<wfw:commentRss>http://www.redmaple.idv.tw/index.php/archives/104/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>The process of research  II</title>
		<link>http://www.redmaple.idv.tw/index.php/archives/87</link>
		<comments>http://www.redmaple.idv.tw/index.php/archives/87#comments</comments>
		<pubDate>Fri, 16 Mar 2007 12:17:17 +0000</pubDate>
		<dc:creator>紅楓</dc:creator>
				<category><![CDATA[Research]]></category>

		<guid isPermaLink="false">http://red.ns2go.com/index.php/archives/87</guid>
		<description><![CDATA[這幾天紅為了研究方向而在苦惱與重新思考 重新想了想整個研究方法（步驟）也上網google一下，找到一篇蠻認同的步驟 這些步驟，早學就不會讓自己的研究生涯後悔 　若課堂上有教，恭喜~也許可以少走些冤枉路 　若沒教，可能就靠指導老師的帶領來領悟 　若上述兩者都沒有，那就自己多努力與資料找尋來補足了 &#160;====================================================================== Basic Steps in the Research Process (Source link) 1. Select a general topic that interests you in some way. 2. List key words to help you look up information about the topic. 3. Go to an encyclopedia, or other reference source, to get an overview of the topic. [...]]]></description>
			<content:encoded><![CDATA[<p>這幾天紅為了研究方向而在苦惱與重新思考</p>
<p>重新想了想整個研究方法（步驟）也上網google一下，找到一篇蠻認同的步驟</p>
<p>這些步驟，早學就不會讓自己的研究生涯後悔</p>
<p>　若課堂上有教，恭喜~也許可以少走些冤枉路</p>
<p>　若沒教，可能就靠指導老師的帶領來領悟</p>
<p>　若上述兩者都沒有，那就自己多努力與資料找尋來補足了</p>
<p>&nbsp;======================================================================</p>
<p><strong>Basic Steps in the Research Process</strong> (<a href="http://www.crlsresearchguide.org/" target="_blank">Source link</a>)</p>
<p>1. Select <font color="#ff0000">a general topic that interests you</font> in some way.<span id="more-87"></span></p>
<p>2. <font color="#ff0000">List key words</font> to help you look up information about the topic.</p>
<p>3. Go to an encyclopedia, or other reference source, to <font color="#ff0000">get an overview</font> of the topic.</p>
<p>4. <font color="#ff0000">Make source cards</font> for whatever sources you will use for information.</p>
<p>5. Using the general overview, begin to <font color="#ff0000">focus the topic</font> into something you can cover well.</p>
<p>6. <font color="#ff0000">Write a statement of purpose</font> about the focused topic.</p>
<p>7. <font color="#ff0000">Brainstorm questions</font> about the focused topic.</p>
<p>8. Group questions under similar headings.</p>
<p>9. Add any new questions you can think of under those headings.</p>
<p>10. Repeat step 2, listing more key words from your newly focused topic and questions.</p>
<p>11. Make a list of possible sources that can answer your questions. <font color="#ff0000">Identify the best sources to use.</font></p>
<p>12. Find the sources in the library, on the computer, etc. Make a source card for each one you use.</p>
<p>13. Begin <font color="#ff0000">making notecards</font>. Use your brain stormed questions to guide your note taking.</p>
<p>14. Change your statement of purpose into a draft thesis statement.</p>
<p>15. Make an outline of your headings. </p>
<p>16. Refocus your thesis statement if necessary.</p>
<p>17. Write the body of your paper from your notes.</p>
<p>18. Cite any necessary information with parenthetical citations.</p>
<p>19. Write your introduction and conclusion.</p>
<p>20. Write your Works Cited (it is similar to a bibliography).</p>
<p>21. Create a title page.</p>
<p>22. Evaluate your work.</p>
<p>23. Turn in your paper on time.</p>
<p>When you&#39;re finished, celebrate!</p>]]></content:encoded>
			<wfw:commentRss>http://www.redmaple.idv.tw/index.php/archives/87/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

