1. On the URL line, enter "about:config".
2. Right-click and choose "add" -> "boolean value".
3. Enter "extensions.checkCompatibility".
4. Select "false".
5. Now you can use some old add-ons on Fx3.
2008年6月18日 星期三
2008年6月11日 星期三
2008年4月27日 星期日
How-to Add UltraEdit in Right-Click Menu
UltraEdit有時灌完之後不會出現在右鍵Menu裡,這時可以用下面方法手動加入:

這時不用重開機就能看到右鍵裡多出這個選項了!
- 開始->執行->"regedit"
- 找到"HKEY_CLASSES_ROOT"下的"*",右鍵新增->機碼,命名為"shell"
- "shell"下再新增機碼"Open with UltraEdit"
- "UltraEdit"下再新增機碼"command"
- 在右方的預設值裡,按右鍵修改,填上"c:\Program Files\IDM Computer Solutions\UltraEdit-32\uedit32.exe %1",執行路徑、檔名可能依版本而有所不同,最後加上%1的意思是讓滑鼠點選的檔案傳入由uedit32.exe開啟。
- 修改結果如下圖。
這時不用重開機就能看到右鍵裡多出這個選項了!
2008年4月15日 星期二
How-to Upgrade Fedora Releases by Yum
用Yum輕鬆昇級到Fedora8:
- 到mirror上抓下兩個檔案"fedora-release-8-3.noarch.rpm"和"fedora-release-notes-8.0.0-3.noarch.rpm",使用"rpm -Uvh xxx"安裝,這時候可能會出現dependency的錯誤,要先把那些東西移除才能裝。
- 把Yum準備好,先"yum clean all",再去檢查一下 /etc/yum.repos.d/fedora-updates.repo,確定路徑正確之後,"yum update"-> "yum -y upgrade"
- 接下來就是等他自動昇級,中間會出現一兩個dependency的錯誤,只要小心移除那些package就沒問題了。
2008年4月12日 星期六
How-to Solve the Package Fancyhdr Warning: \headheight is too small
Package Fancyhdr Warning: \headheight is too small (14.45377pt):
Make it at least 14.49998pt.
這個錯誤來自於Fancyhdr中\headheight的設定必須至少15pt,因此,你必須在你的檔案裡找到一行:
\setlength{\headheight}{0.2in}
這裡0.2in是出錯的地方,因此,如下方將它換成15pt就ok了!
\setlength{\headheight}{15pt}
如果你沒有找到這行,也可以自己在\begin{document}前面加上這行就不會出現warning了。
Make it at least 14.49998pt.
這個錯誤來自於Fancyhdr中\headheight的設定必須至少15pt,因此,你必須在你的檔案裡找到一行:
\setlength{\headheight}{0.2in}
這裡0.2in是出錯的地方,因此,如下方將它換成15pt就ok了!
\setlength{\headheight}{15pt}
如果你沒有找到這行,也可以自己在\begin{document}前面加上這行就不會出現warning了。
2008年4月9日 星期三
How-to View an RFC
- RFC Viewer
這是由EffeTech出的一款軟體,據稱是市面上第一個針對RFC的閱讀軟體,可惜的是這並不是免費軟體,目前最新一版(v1.4)只更新到2002年11月。另一個缺點是,它的字型只能使用Courier,缺乏個人化的彈性。 - qRFCView
這個才是我真正推薦的!
第一,它是完全GPL開放源碼的免費軟體;
第二,它同時支援Linux與Windows環境;
第三,它具備自動download RFC的特異功能;
最後,它可以自行調整字型。
目前qRFCView的開發停滯在2006年7月的v0.62,不管怎樣,還是比RFC Viewer多了好幾年。
2008年4月4日 星期五
How-to Simulate the Fon Heartbeat
FON AP會透過一個稱為"Heartbeat (心跳)"的訊息向Server定期傳送訊息表明自己仍處於上線狀態,假設你的LaFonera不能常常處於開機狀態,或是刷成DD-WRT韌體之後無法順利向SERVER傳送Heartbeat,這時候你可能需要以下的方法透過電腦傳送Heartbeat:
首先必須準備一台裝有dropbear的主機,dropbear是一個小型SSH軟體,常被用在嵌入式系統裡,LaFonera內建的SSH Client就是它,可以到下面的網站下載並安裝:
Dropbear SSH server and client
接下來,你還要下載發送訊息的三個小檔案:
首先必須準備一台裝有dropbear的主機,dropbear是一個小型SSH軟體,常被用在嵌入式系統裡,LaFonera內建的SSH Client就是它,可以到下面的網站下載並安裝:
Dropbear SSH server and client
接下來,你還要下載發送訊息的三個小檔案:
- http://www.wildblue.de/fonera/heartbeat/simthefon
- http://www.wildblue.de/fonera/heartbeat/key
- http://www.wildblue.de/fonera/heartbeat/known_hosts
- 找到檔案開頭定義的地方,將原來使用自動取得的WLAN MAC的那行註解掉,改寫上你LaFonera的WLAN MAC address,有線端MAC可以在盒子上找到,無線端MAC正好是無線端MAC加1,如下面的例子。
#WLMAC="$(nvram get ath0_hwaddr )" #the WLAN mac-adress
WLMAC="XX:XX:XX:XX:XX:11" - 找到有線的MAC部份,如步驟一進行。
#MAC="$(nvram get et0macaddr)" #the WAN mac-adress
MAC="XX:XX:XX:XX:XX:10" - 在FONKEY那行,加上key這個檔案的路徑。
FONKEY=/home/xxx/simthefon/key
2008年3月30日 星期日
How-to Arrange a LaTeX Table
Table一直是寫LaTeX的人心中的痛,不過就在我整理paper的同時,卻發現學長已經找到自動分行的方法。
真是眾裡尋他千百度,那人卻在燈火藍藍路~
以下是paper裡table的部份內容:
%==========table 5=================
\begin{table*}
\caption{Summary of comparative comparison}
\centering
\setlength{\extrarowheight}{4pt}
\begin{tabular}{| >{\footnotesize}p{5cm} |>{\footnotesize}p{5.5cm} | >{\footnotesize}p{5.5cm} |}
\hline
& 3GPP & 3GPP2 \\
\hline \hline
Resource-related energy saving scheme & inactivity timer (combined with
traffic volume measurement) of RRC states& inactivity timer of PDSCC state\\
\hline
Timer function & From the CELL\_PCH state to the URA\_PCH state
(CELL\_DCH to CELL\_FACH; CELL\_FACH to CELL\_PCH)
& From Connected state to Dormant state and from Dormant state to Connected state \\
\hline
\end{tabular}
\label{tab:con}
\end{table*}
%=====================================================
真是眾裡尋他千百度,那人卻在燈火藍藍路~
以下是paper裡table的部份內容:
%==========table 5=================
\begin{table*}
\caption{Summary of comparative comparison}
\centering
\setlength{\extrarowheight}{4pt}
\begin{tabular}{| >{\footnotesize}p{5cm} |>{\footnotesize}p{5.5cm} | >{\footnotesize}p{5.5cm} |}
\hline
& 3GPP & 3GPP2 \\
\hline \hline
Resource-related energy saving scheme & inactivity timer (combined with
traffic volume measurement) of RRC states& inactivity timer of PDSCC state\\
\hline
Timer function & From the CELL\_PCH state to the URA\_PCH state
(CELL\_DCH to CELL\_FACH; CELL\_FACH to CELL\_PCH)
& From Connected state to Dormant state and from Dormant state to Connected state \\
\hline
\end{tabular}
\label{tab:con}
\end{table*}
%=====================================================
訂閱:
文章 (Atom)