Category Archives: 資工

IDL Programming Language

I’ve found some tutorial resources: IDL Tutorial: Programming in IDL (這個好像是天文的..) IDL TUTORIAL (這個好像是天文的..) The IDL Astronomy User’s Library (這個好像是天文的..) Coyote’s Guide to IDL Programming (這個好像是天文的..) A GUIDE TO IDL FOR ASTRONOMERS (這個好像是天文的..) RMI,Java IDL  Institute for Computational Cosmology: IDL (這個好像是天文的..)

Posted in Linux, 學術, 學術研究, 程式設計, 網路, 網路 java, 資工 | Leave a comment

AIM 2012 Call for Papers

——————————————————————————————————————————————————–                        The 2012 FTRA International Conference on                 Advanced IT, engineering and Management (FTRA AIM 2012)          http://web.ftrai.org/aim2012                                    Hosted by FTRA                   Supported by KITCS, Korea Tourism Organization                           Seoul, Korea, Feb. 6-8, 2012============================================================[Important Date]Abstract Paper Submission due:  Dec. 16, 2011All accepted abstract papers … Continue reading

Posted in 學術, 學術研究, 資工, 資訊安全 | Leave a comment

[C#] DotNetZipLib 與 SharpZipLib

SharpZipLib 與 DotNetZipLib的介紹http://blog.miniasp.com/post/2009/01/11/Introduce-SharpZipLib-and-DotNetZip-Library-for-NET.aspxDotNetZipLib的Documenthttp://cheeso.members.winisp.net/DotNetZipHelp/frames.htmZip格式與支援程度http://kikicocopapaya.pixnet.net/blog/post/24538462-zip

Posted in C, 程式設計, 資工 | Leave a comment

[C#] Using 關鍵字的用法

C#有主要兩個用法: 做為指示詞,此時它是用來建立命名空間的別名,或是用來匯入在其他命名空間中定義的型別。 做為陳述式,此時它是用來定義一個範圍,物件會在此範圍結尾處進行處置 (Dispose) 相關教學資源請參考以下: using 陳述式 (C# 參考) C# Using Statement Calls Dispose using 指示詞 (C# 參考)

Posted in C, 程式設計, 資工 | Leave a comment

TF-IDF (term frequency–inverse document frequency)

關於TF-IDF的source code,它用Perl語言寫成。 http://infomotions.com/blog/tag/term-frequencyinverse-document-frequency-tfidf/ 另一個是用C#寫的: http://www.codeproject.com/KB/cs/tfidf.aspx 其它相關的參考資源: 1. Ranking text documents based on TF-IDF 2. tf-idf (term frequency–inverse document frequency) 3. Information Retrieval (這文章講解得很詳細)

Posted in 學術, 學術研究, 程式設計, 資工 | Leave a comment

Data Mining Libraries and Packages

  I’ve found some data mining libraries (source codes) and packages.  You can see the following resource list to download: Data Mining with SQL Server 2005 Apriori algorithm using C# and silverlight gSpan: Frequent Graph Mining Package gpuminer: Parallel Data Mining … Continue reading

Posted in C/C++, Java, 程式設計, 資工, 軟體(Software) | Leave a comment

CAPTCHA

        CAPTCHA全名是(Completely Automated Public Turing test to tell Computers and Humans Apart),中文翻譯為「全自動公開區分電腦與人類圖靈測試」,由於近年來黑客用機器人程式破解網站帳號密碼的事件不斷發生,因此科學家藉由人類影像辨識遠優於電腦程式的特性,發展出此一機制。         目前大家比較常在用的CHAPTCHA為 reCHAPTCHA,此一程式是由卡內基美隆大學發展出來,他們原本藉由電腦來辨識古老書籍,讓圖書電子化。但是電腦的辨識度不足,執行困難的情況下,便藉由這個程式,讓人類幫他辨識。目前此一計畫由Google支援。    reCHAPTCHA官方網站:http://www.google.com/recaptcha         另外,筆者在此介紹PHP版本的CHAPTCHA產生器:Securimage,此一程式套件也是一個免費套件。協助程式設計師開發出更為安全的網頁程式。    Securimage官方網站:http://www.phpcaptcha.org/Reference 小薑雜談:CAPTCHA reCAPTCHA Securimage

Posted in PHP, 程式設計, 網頁撰寫, 資工, 資訊安全 | Leave a comment

[資工][影像處理] BMP格式及其程式寫作

上個學期,在忙得焦頭爛額之際,惡補了讀取基本圖檔BMP格式的方法。參考了以下解說: BMP圖例說明:http://jinnsblog.blogspot.com/2009/08/bmp-format-graphic-illustration.html BMP每個欄位的解說:http://crazycat1130.pixnet.net/blog/post/1345538#mark-3 BMP補充說明:http://www.wretch.cc/blog/benjay207/12157833 最後自己寫了一個BMP讀檔的例子,並進行Discrete Cosign Transformation (DCT)。可按下方圖示下載程式碼。

Posted in C/C++, 程式設計, 資工 | Leave a comment

[資工] Genetic Algorithms

想要研究基因演算法的人,可先參考下面網站的介紹:Introduction to Genetic Algorithmshttp://www.obitko.com/tutorials/genetic-algorithms/index.php 若進一步想要實做或是沿用別人開發好的函式庫,可以到下面網站下載:GAlib: A C++ Library of Genetic Algorithm Componentshttp://lancet.mit.edu/ga/

Posted in C/C++, 程式設計, 資工 | Leave a comment

[資工][資訊安全] IBE, HIDE Scheme

事前準備 目前我用的環境平台如下: 作業系統:Ubuntu Linux 11.04 LTS 64bits Compiler: g++ 相關步驟:請至MIRACL官方首頁下載miracl.zip 解壓縮: unzip -j -aa -L miracl.zip 安裝: bash linux64 ID-Based Encryption Scheme (IBE) 由Boneh, Franklin於2001年發表,相關範例可由MIRACL中的ibe.cpp編譯,以下是編譯方法: g++ -c -m64 -O2 ibe_set.cpp ibe_ext.cpp ibe_enc.cpp ibe_dec.cppar r miracl.a ibe_set.o ibe_ext.o ibe_enc.o ibe_dec.o 這裡要注意的是,若編譯ibe.cpp時,由於程式寫法的關係,它會回報第101行有錯誤。因此,到ibe.cpp: … Continue reading

Posted in 資工, 資訊安全 | 4 Comments