Category Archives: Programming

[PHP] 國人自製的專案管理軟體:Bug Tracker

前幾個月聽從某強者的建議,試了許多專案管理軟體(像是Mantis),但是介面不是很友善。在看了 保哥的推薦後,從善如流,使用國人王俊斌先生開發的Bug Tracker。一用下去,發現真的很好用。優點如同保哥網頁推薦的,重點是它的說明超級清楚!這對於不太會使用專案管理軟體的人員,真的是一大福音。 特別的是,你可以搭配GMail,每次一有回報訊息,自動透過GMail發信到使用者信箱做為提醒。建議各位可以去申請一個GMail信箱,然後利用Bug Tracker管理員進入,按照以下步驟進行設定: 系統設定→郵件通知設定:勾選使用 Bug Tracker 的寄信函式SMTP 伺服器:ssl://smtp.gmail.comSMTP 通訊埠:465 勾選需要身份認證SMTP 使用者:輸入你的GMail帳號SMTP 密碼:請輸入你的GMail密碼 密碼確認:再次輸入你的GMail密碼然後到你的專案管理頁面,選擇寄信通知人(很無奈的,只能轉寄最多6人)。 不過沒關係,可以要求參與該專案的組員,在專案頁面進行訂閱。只要訂閱成功,該專案有任何回報的話,系統都會自動寄信給訂閱人員。 如果擔心申請的GMail信箱有容量上限的規定,造成信箱空間不夠用。沒關係,只要在GMail信箱中設定好過濾規則,只要由Bug Tracker寄出的信件,都自動刪除就可以啦。 不過切記!如果回報頁面沒有指派給任一個使用者的話,系統寄出來的信件,收信人列表是空的,只有自動寄發信件列表中的使用者是採用副本的方式寄信,這樣子容易被某些系統誤認為垃圾信件。 要做資料庫備份的話,也可以參考我寫的這篇:[PHP] MySQL Backup by GMail

Posted in Programming, 軟體(Software) | 1 Comment

[Windows] Built-in OCR Library in Windows 7/Server 2008

OCR (Optical Character Recognition) is an interesting issue. I’ve found that some (built-in) libraries in Windows 7/Server 2008. If you want to develop OCR program without extra fee, you should try it. Window 7 OCR API : In the final answer, … Continue reading

Posted in C, Programming, Windows, 程式設計 | Leave a comment

[Linux] The useage of ioctl function: some materials

This post is to note some materials for Linux ioctl function: ioctl: hdio Linux kernel map: Chapter 6.1 ioctl Linux Device Driver 專欄 Linux 驅動程式的 I/O, #1: 基本概念 Linux 驅動程式的 I/O, #3: kernel-space 與 user-space 的「I/O」 Linux 驅動程式的 I/O, #4: … Continue reading

Posted in C/C++, Linux, Programming, 程式設計 | 1 Comment

[PHP] MySQL Backup by GMail

[Chinese]        先前已經介紹過有一個好用的MySQL資料庫備份工具(使用PHP):MySQLDump。但是預設的寄信函式,是透過SMTP伺服器寄信,這對於沒有SMTP伺服器的使用者而言,可就傷腦筋了。原先我有找到一篇教學,使用GMail的SMTP伺服器做備份,可惜連結已經失效了。筆者只好自行撰寫,由於程式碼使用GPL授權,基於分享的精神下,便公開給各位。         程式碼下載處:請按我。 [English]I’ve introduced an useful backup tool for backuping MySQL databases (using PHP): MySQLDump. However,the default send mail function uses the SMTP server to send mails, and it may cause some problems … Continue reading

Posted in PHP, Programming, Web Design, 科技, 程式設計, 軟體(Software) | Leave a comment

[PHP] The resources about calling windows programs in PHP

I’ve developed  one library about security and make as a .dll package. Now, I want to use the dll through PHP because my significant webdesign skill is PHP, not ASP.Net. The other reason is that I don’t prefer to install two different … Continue reading

Posted in PHP, Programming, Windows, 程式設計 | Leave a comment