05 Feb
Author: Eric // Category:
Free Teaching00. 修改 WordPress 後台地址 http://your.domain.name/wp-admin/ to http://your.domain.name/whatever-you-want/
01. 下載 Stealth Login 並解壓上傳到 ./wp-content/plugins/ 下。
// 或從 WordPress 後台直接搜尋 Stealth Login 下載
02. Plugins -> Installed -> Activate Stealth Login
03. WordPress 後台 -> Settings -> Stealth Login Read more...
04 Feb
Author: Eric // Category:
Free Teaching01. File -> New -> Project -> Console application -> Go -> C/C++ -> 打上 Project title 和選擇要存放的位置 -> Next -> Finish
// 不要懶的創 Project,就 File -> New -> File -> C/C++ source -> Go -> C/C++ -> ...
// 或更偷懶直接,就 File -> Empty file
// 因為這樣會不能使用 Debug 功能
02. 點左邊 Projects 下的 Workspace -> Project title -> Sources -> *.cpp,貼上下面的程式碼,來體驗一下 Code::Blocks 的 Debug 功能。 Read more...
01 Feb
Author: Eric // Category:
Free Teaching01. 使用 Code::Blocks 寫 Socket Program 的設定
Settings -> Compiler and debugger -> Linker Settings -> Other linker options -> 加上 -lws2_32 Read more...
01 Feb
Author: Eric // Category:
Free Teaching01. Code::Blocks 之 Increase Stack Size 的方法
Settings -> Compiler and debugger -> Linker Settings -> Other linker options -> 加上 -Wl,-stack,填需要的大小
// eg : -Wl,-stack,50000000 Read more...