Mozilla Firefox (老師、社長強力推薦,自由軟體、開放原始碼、免費)
http://moztw.org/
Firefox 擁有上千種擴充套件(增加特異功能)、佈景主題(凸顯個人風格)
Firefox 附加元件
https://addons.mozilla.org/zh-TW/firefox/
使用方法跟IE差不多(都是瀏覽器嘛!),但絕對比IE強上幾千倍!
但是,請一定要記住,這不是微軟牌的三流瀏覽器,掌握他的特性,上網更加方便、安全!
破解「鎖右鍵」
for Windows :
工具>偏好設定>內容>進階>(取消打勾)停用或取代右鍵選單
for Linux:
編輯>偏好設定>內容>進階>(取消打勾)停用或取代右鍵選單
設定完後記得按「確定」,就可以開始猛按右鍵了!
Just Google it!!
[Security]2009.11.04 PE-inject & VNC
2009/11/6
PE-inject
http://migeel.sk/programming/pe-inject/
Portable Executable (P.E.) Code Injection
http://www.codeproject.com/KB/winsdk/CodeInject.aspx
OllyDbg
http://www.ollydbg.de/
RealVNC
http://www.pendriveapps.com/portable-vnc-viewer-realvnc/
How to inject code into a exe file
http://home.inf.fh-rhein-sieg.de/~ikarim2s/how2injectcode/code_inject.html
遠端桌面協定(RDP, Remote Desktop Protocol)
wikipedia:http://zh.wikipedia.org/zh-tw/%E9%81%A0%E7%AB%AF%E6%A1%8C%E9%9D%A2%E5%8D%94%E5%AE%9A
VNC(Virtual Network Computing)
wikipedia:http://zh.wikipedia.org/zh-tw/VNC
http://migeel.sk/programming/pe-inject/
Portable Executable (P.E.) Code Injection
http://www.codeproject.com/KB/winsdk/CodeInject.aspx
OllyDbg
http://www.ollydbg.de/
RealVNC
http://www.pendriveapps.com/portable-vnc-viewer-realvnc/
How to inject code into a exe file
http://home.inf.fh-rhein-sieg.de/~ikarim2s/how2injectcode/code_inject.html
遠端桌面協定(RDP, Remote Desktop Protocol)
wikipedia:http://zh.wikipedia.org/zh-tw/%E9%81%A0%E7%AB%AF%E6%A1%8C%E9%9D%A2%E5%8D%94%E5%AE%9A
VNC(Virtual Network Computing)
wikipedia:http://zh.wikipedia.org/zh-tw/VNC
[C語言]2009.10.21 #4 C程式語言 進階迴圈控制
2009/10/21
運算簡寫
C 語言範例: for 迴圈印出九九乘法表
x = x + 1; x += 1; x++; y = y * 2; y *= 2;
C 語言範例: for 迴圈印出九九乘法表
#include <stdio.h> #include <stdlib.h> int main(void) { for(int i=1; i<=9; i++) { for (int j=1; j<=9; j++) { printf("%d * %d = %d", i, j, i*j); } printf("\n"); } system("pause"); return 0; }
[C語言]2009.10.07 #3 C程式語言進階
2009/10/6
課程目標
1.複習上週變數與輸入
2.瞭解「迴圈」的初步應用
C 語言範例: 計算 1+2+...+10 的結果
1.複習上週變數與輸入
2.瞭解「迴圈」的初步應用
C 語言範例: 計算 1+2+...+10 的結果
#include <stdio.h> #include <stdlib.h> int main(void) { int i,total=0; // 宣告兩個變數 for(i=1; i<11; i++) { // 從 1 到 10 total = total + i; // 將 i 加進 total } printf("答案是: %d\n", total); system("pause"); return 0; }
[C語言](讓電腦)猜數字
2009/9/29
以下是猜數字(使用do...while)的範例,輸入一個數字(正數,整數),讓電腦以亂數(random)猜測
#include <stdio.h> #include <stdlib.h> int main(void){ while(1){//無窮迴圈 int i=1; int iNum,iRandom; printf("Number:"); scanf("%d",&iNum); do{ iRandom = (int)(rand()%10000);//這個部份做的不是非常精細,可以加入一些演算法 printf("%d %d\n",i,iRandom);//顯示出猜測的數字,會脫慢猜測的時間,可以刪除(或註解) i++; }while(iRandom != iNum); printf("Time %d,The Number is %d\n",i,iRandom); system("pause"); return 0; }
[C語言]2009.09.23 #2 C程式語言初探
2009/9/22
課程目標
1.複習上週建立與執行C語言的環境
2.瞭解「變數」
3.取得「輸入」與基本運算
C語言範例:求圓面積
1.複習上週建立與執行C語言的環境
2.瞭解「變數」
3.取得「輸入」與基本運算
C語言範例:求圓面積
#include <stdio.h> #include <stdlib.h> int main(void) { int r=0; // 宣告變數 float pi=3.14; printf("請輸入半徑: "); scanf("%d", &r); // 取得輸入 printf("圓面積為 %f\n", r * r * pi); system("PAUSE"); return 0; }
[C語言]PSLV海平面氣壓換算小程式
2009/9/19
這是社長為衛道氣象站寫的小程式,通過特定的公式將觀測站氣壓轉換成海平面氣壓。
今年是氣象站成立的第一年,淒風苦雨的第一年,知道這個組織的人其實不多,最近氣象資訊開始在川堂的跑馬燈上亮像,應該有不小的宣傳效果,不知道各位對各位同學有沒有任幫助。
衛道氣象站部落格(這也是社長建立、管理的)
這個小程式也是一個範例,裡面包括基本輸入、輸出,變數宣告,for迴圈,都是各位將來會學到的東西。
測站氣壓與海平面氣壓換算公式如下:
今年是氣象站成立的第一年,淒風苦雨的第一年,知道這個組織的人其實不多,最近氣象資訊開始在川堂的跑馬燈上亮像,應該有不小的宣傳效果,不知道各位對各位同學有沒有任幫助。
衛道氣象站部落格(這也是社長建立、管理的)
這個小程式也是一個範例,裡面包括基本輸入、輸出,變數宣告,for迴圈,都是各位將來會學到的東西。
測站氣壓與海平面氣壓換算公式如下:
PSLV為海平面氣壓
P為測站氣壓
StationElevation為測站海拔高度
Temperature為測站溫度
以上轉載自 中央大學 即時氣象資訊網 http://pblap.atm.ncu.edu.tw/ncucwb/showdoc.asp?id=127
[C語言]2009.09.16 #1 程式語言介紹
2009/9/16
課程目標
1. 瞭解編譯與直譯式語言之異同
2. 設定程式編譯與執行環境
3. 依照範例撰寫第一隻程式與練習
整合開發環境(IDE)
Dev-C++
官方網站:http://www.bloodshed.net/
下載頁:http://www.bloodshed.net/devcpp.html
1. 瞭解編譯與直譯式語言之異同
2. 設定程式編譯與執行環境
3. 依照範例撰寫第一隻程式與練習
整合開發環境(IDE)
Dev-C++
官方網站:http://www.bloodshed.net/
下載頁:http://www.bloodshed.net/devcpp.html
訂閱:
文章 (Atom)