https://avatars.githubusercontent.com/u/6058558

程式狂想筆記

[Python]使用pyDes.py動態加密解密

pyDes Github

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
from pyDes import *
import base64
import time
import random


data =str(random.random())+"|"+"加密內容"
k = des('DESCRYPT', CBC, '12345675', pad=None, padmode=PAD_PKCS5)
d = k.encrypt(data)
print "Encrypted: %r" % base64.b64encode(d)
print "Decrypted: %r" % k.decrypt(d)

Win7 的視窗閃動、間歇地出現"沒有回應"

最近同學幫別人灌電腦遇到Win7裡的Office會有閃爍的問題
結果Google一下,還真的可以解決!!!
記錄一下,說不定哪天就用到了

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
一些 電腦優化程序 可能會把 電腦的關閉( Shutdown?? )速度 增加 ,
Win7 的視窗閃動、間歇地出現"沒有回應" ( 並非螢幕黑屏 ) 問題多數是由這所引起的 。

解 :
1 按左下角的"開始",輸入 "regedit" ,開 "regedit.exe",
   程式的左方應包含一 "資料夾選巴"。

2 在選巴中選 " HKEY_USERS \ .DEFAULT \ Control Panel \ Desktop ",
   程式的右方應出現一些 "登錄值" ,包含 名稱、類型、資料 等。

3 在 "登錄值" 中選取 " HungAppTimeOut " 和 " WaitToKillAppTimeOut ",點右鍵刪除。

4 在選巴中選 " HKEY_CURRENT_USER \ Control Panel \ Desktop "。

5 在 "登錄值" 中選取 " HungAppTimeOut "、" WaitToKillAppTimeOut "、" WaitToKillServiceTimeOut ",點右鍵刪除。

略解 :
1 開 登錄編輯程式( Registry Editor ) 。

2 刪除 " HKEY_USERS \ .DEFAULT \ Control Panel \ Desktop " 中的 (" HungAppTimeOut "、" WaitToKillAppTimeOut ")。

3 刪除 " HKEY_CURRENT_USER \ Control Panel \ Desktop " 中的 (" HungAppTimeOut "、" WaitToKillAppTimeOut "、" WaitToKillServiceTimeOut ")。

若發現此解適用於其它作業系統 ,請下報。

參自 : www.mydigitallife.info

參考來源:
Windows7 視窗、畫面、遊戲程式 閃動問題 解決辦法
https://groups.google.com/forum/#!topic/computer_resuce/rDn_21bC2Lk

wifi抓到驅動但不能連wifi

今天幫主任重灌筆電,由於是用我同學整合的Win7安裝
發現驅動抓到無線網卡,但無線網卡沒法找無線Wifi

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
1.點擊開始菜單,在搜索欄中輸入「services.msc」(輸入時不要打引號),並按下回車。如果此時彈出用戶賬戶控制窗口,請您點擊「繼續」。
2.分別按順序雙擊打開"CNG Key Isolation" "Extensible Authentication Protocol" "WLAN AutoConfig"服務。點擊「常規」選項卡,確保「啟動類型」是「自動」或者「手動」。然後點擊「服務狀態」下面的「啟用」按鈕。

或者手動啟動三個服務
1.
"CNG Key Isolation"
2.
"Extensible Authentication Protocol"
3.
"WLAN AutoConfig"

http://rossic0989.pixnet.net/blog/post/29726514-%E7%84%A1%E6%B3%95%E5%95%9F%E5%8B%95wlan-autoconfig%E9%8C%AF%E8%AA%A4%E4%BB%A3%E7%A2%BC1068%28win7%29

結果是我同學Win7整合服務關掉orz
讓我搞這麼久

程式專案使用git的.gitignore設定

Autoit筆記

由於最近多了一項收發文工作,每天都要開起電腦收發文程式。
我就想想有沒有讓程式自動化,這樣我以後就開機就好了XD
於是我就開始做了

[phonegap]安裝套件-battery-status

首先套件可到http://plugins.cordova.io/搜尋
http://plugins.cordova.io/#/package/org.apache.cordova.battery-status
CMD指令輸入
phonegap plugin add org.apache.cordova.battery-status
我把cordova換成phonegap

官網教學是用plugman來裝
但這兩種安裝方法好像有差(我還沒搞清楚= =|||)

然後,試試battery-status程式竟然沒有跑出電池資訊