Author Archive
Apache+MySQL+PHP+OpenSSL in Ubuntu
十一月.15, 2008 Posted in RSS
SSL介紹
SSL(Secure Socket Layer)是Netscape所提出來的資料保密協定,採用了RC4、MD5,以及RSA等加密演算法。
網路上需要確定網站真的是那個網站,所以SSL也具備認證的機能。SSL是以金字塔...
Reverse Engineering Tools
十一月.09, 2008 Posted in RSS
Microsoft Windows
Three tools pervade the warchest of the contemporary analyst on the Windows platform: IDA, SoftICE, and PE Tools. IDA is the Interactive Disassembler from Data Rescue. IDA is used to examine the executable on-disk. IDA provides...
struct的特別用法
十一月.03, 2008 Posted in RSS
#include
typedef struct A {
int up : 1;
int down : 1;
int left : 1;
int right : 1;
}Cell;
int main(void) {
Cell c;
c.up = c.down = c.left = c.right = 0;
[...]<...
Bizarre Love Triangle
十月.27, 2008 Posted in RSS
Every time I think of you
I get a shot right through into a bolt of blue
It’s no problem of mine but it’s a problem I find
Living a life that I can’t leave behind
There’s no sense in telling me
The...
Symbian S60 5th Edition
十月.17, 2008 Posted in RSS
Symbian的第五版在10/3 released
這版中主要加強的部份是多媒體、網路、可靠度和觸控介面
第五版中優化攝影機的codec(宽螢幕影相儲存能力)。使用者設定參數來調控照片的balance, color an...
default constructor
十月.01, 2008 Posted in RSS
C++中預設建構子就是沒有參數的建構子
一般大多數人都有以下錯誤觀念:
1.class沒有定義預設建構子 compiler就會自動產生一個
2.compiler產生出來的預設建構子中 會為member data...























