星期一, 10月 30, 2006

Apache 2.2需注意的事項

一、設定的位置有所不同,如:虛擬網站的設定沒有和 http.conf 寫在一起,而是放在底下的 extra/httpd-vhost.conf,然後在 http.conf 中將該檔案 Include 進來

# Virtual hosts
Include etc/apache22/extra/httpd-vhosts.conf

二、Apache 2.2開機時執行沒有問題,不過,若由手動執行 apachectl 來重新啟動,就會產生 Failed to enable the ‘httpready’ Accept Filter 的錯誤訊息,解決方法有三種:

  • 命令列: kldload /boot/kernel/accf*.ko
  • 設定檔/boot/load.conf :  accf_http_load="yes"
  • 重新編譯核心:
    options        ACCEPT_FILTER_DATA
    options         ACCEPT_FILTER_HTTP

開放原始碼推薦程式

節錄賽迪網-盤點開源之經典開源Windows工具集

Office: OpenOffice http://www.openoffice.org

Web Browser: Mozilla Firefox http://www.moztw.org

Email Client: Thunderbird http://www.moztw.org

Project: Ganttproject http://ganttproject.sourceforge.net

Player: WX Musik http://musik.berlios.de

Audio Editor: Audacity http://audacity.sourceforge.net

Rename: Ant Renamer http://www.antp.be

PDF: PDF-Creator http://sector7g.wurzel6.de/pdfcreator/index_en.htm

Encryption: GnuPG http://www.gnupg.org

HTML Editor: Nvu http://www.nvu.org

FTP: filezilla http://sf.net/projects/filezilla

Media: Media Portal http://mediaportal.sourceforge.net

Mindmap: FreeMind http://freemind.sourceforge.net

Graphic: The Gimp http://www.gimp.org

Monitor: Health Monitor http://healthmonitor.sourceforge.net

星期日, 10月 29, 2006

HTML: Special Characters


HTML 特殊字元一覽表


如:<、>、 空白......


詳細部份可參閱:HTML: Special Characters

































































































































PunctuationHTML Entity
(case sensitive)
ISO Latin-1 codename or meaning
¡&iexcl;&#161;inverted exclamation
¿&iquest;&#191;inverted question mark
"&quot;&#34;quotation mark
«


»
&laquo;


&raquo;
&#171;


&#187;
guillemets (European-style quotation marks)

(Its there, but you can't see it!)
&nbsp;&#160;non-breaking space
Symbols
&&amp;&#38;ampersand
¢&cent;&#162;cent
©&copy;&#169;copyright
÷&divide;&#247;divide
>&gt;&#62;greater than
<&lt;&#60;less than
µ
&#181;micron
·&middot;&#183;middle dot
&para;&#182;pilcrow (paragraph sign)
±&plusmn;&#177;plus/minus
£&pound;&#163;British Pound Sterling
®&reg;&#174;registered
§&sect;&#167;section
¥&yen;&#165;Japanese Yen

利用Zoundry來編寫Blog


利用Zoundry來編寫Blog

星期五, 10月 27, 2006

美國的地區區碼

瀏覽到某個網站,一定要用美國人的資料才能註冊,其實「區碼」和「電話」都和台灣的格式不盡相同,剛好找到有些網站有列出來,記錄下來,免得下次還得再找一遍。

 

美國地區的區碼: American Zip Code
美國的電話格式: ###-###-####

FreeBSD: 出現calcru: runtime went backwards 的錯誤訊息

在 sysctl.conf 中加入:

kern.timecounter.hardware=TSC

就恢復正常了(感謝Google)

星期一, 10月 23, 2006

[php]SQL查詢字串中不可有 id 欄位

寫了一個資料庫的Class,原來運作得還算順利,今天把它放到另一個專案時,卻發現無法執行query,查詢字串為「SELECT id FROM books WHERE left(BookClassNum,1)='0'」。

原本以為是自己的class 撰寫功力不夠,但是怎麼(踹)try,這個method就是不執行,後來靈機一動,把 id 欄位用 「`」符號包起來,嘿…萬事大吉!

寫程式…果然要經驗啊!

星期日, 10月 22, 2006

slash's jungle

slash's jungle: "不過念頭是模糊的,文字卻是銳利的。要寫出東西就"

星期五, 10月 20, 2006

職場一定要會的十種程式語言(eWEEK)

10 Programming Languages You Should Learn Right Now

from eWEEK

  1. PHP
  2. C#
  3. AJAX (Asynchronous JavaScript and XML)
  4. Javascript
  5. Perl
  6. C
  7. Ruby and Ruby on Rails
  8. Java
  9. Python
  10. VB.Net (Visual Basic .Net)

嘿!嘿!就像longer說的,光是學好一種就很不簡單了,更何況是學會十種,這…還讓不讓人活啊!

不過,如果是設計web form的話,個人覺得 PHP + AJAX + Javascript 或是 C# + AJAX + Javascript 倒是應該好好地鑽研一番,這裡頭的變化可謂千變萬化,就看大家怎麼應用了。