Reic's Fast Note

Search recorders, fast memo

« 八月 2008 »
一 二 三 四 五 六 日
        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 27 28 29 30 31
八月
24

三國群英傳7 屯田特性

game | reicmemo | 八月 24, 2008,13:40

屯田,當角色不在建物內,每天可增加 50金。

有此特性的角色:石苞、石崇、姜維和蘇飛。

靜態連結網址 | 發表迴響 | 引用 (0)

七月
03

忘記 MySQL 密碼時候解決方案

Web site | reicmemo | 七月 03, 2008,16:15

Windows:
  1. 用系統管理員登陸系統。
  2. 停止MySQL的服務。
  3. 進入命令窗口,然後進入MySQL的安裝目錄
  4. 跳過權限檢查啟動MySQL,mysqld --skip-grant-tables
  5. 重新打開一個窗口,設置root的新密碼
    1. 進為 mysql 中的 bin 目錄
    2. 利用 mysqladmin 來更新
      1. 執行 mysqladmin -u root flush-privileges password "你的新密碼"
      2. 再執行 mysqladmin -u root -p shutdown
    3. 利用 mysql 來進行更新
      1. 執行 mysql
      2. >use mysql;
      3. >update user set password=password('你的新密碼') where user ='root';
      4. >flush privileges;
      5. >exit
      6. 再執行 mysqladmin -uroot -p shutdown
  6. 再用正常模式啟動Mysql
  7. root 的密碼已經重新設定成功,可以用新設定的密碼登入了。
Unix 與 Linux:
  1. 停止 mysql 的程序;
  2. 使用--skip-grant-tables參數啟動MySQL Server
  3. 執行 mysqld_safe --skip-grant-tables &
  4. 為root@localhost設置新密碼
    1. 利用 mysqladmin 來更新
      1. 執行 mysqladmin -u root flush-privileges password "你的新密碼"
      2. 再執行 mysqladmin -u root -p shutdown
    2. 利用 mysql 來進行更新
      1. 執行 mysql
      2. >use mysql;
      3. >update user set password=password('你的新密碼') where user ='root';
      4. >flush privileges;
      5. >exit
      6. 再執行 mysqladmin -uroot -p shutdown
  5. 重啟MySQL Server

靜態連結網址 | 發表迴響 | 引用 (0)

六月
20

Determine if file exists in a Bourne/bash shell script

Unix | reicmemo | 六月 20, 2008,13:20

if [ -f testfile ]
then
echo testfile exists!
fi

資料來源:Determine if file exists in a Bourne/bash shell script - Tech-Recipes.com

靜態連結網址 | 發表迴響 | 引用 (0)

六月
04

Microsoft CSS 的修正方法

Web site | reicmemo | 六月 04, 2008,15:47

Enter Microsoft Conditional Comments. Each different IE/Windows version can be detected, and there is much more detail about how they can be used by following that link but suffice to say because I don't want to be incorporating multiple IE stylesheets and to keep things as simple as possible for these particular menus, I'm using a general one to target all versions of IE/Windows:

	<!--[if IE]>
	<style type="text/css" media="screen">
	</style>
	<![endif]-->
	

By putting that comment after all the other CSS rules, to ensure the integrity of the Cascade, we're asking IE/Windows only to read and apply whatever styles or linked stylesheet are within that comment. Any other browsers will ignore it.

靜態連結網址 | 發表迴響 | 引用 (0)

三月
30

線上心智圖網站

Freeware | reic | 三月 30, 2008,20:14

bubbl.us: http://www.bubbl.us
Flowchart.com:目前還在測試階段,需要填寫email等候邀請函(或找有帳號的人邀請你)才能使用。功能豐富,還有相當多的美工圖案可供使用。
Gliffy:另一個功能強大的繪圖網站,流程圖、組織圖、心智圖、室內設計圖、網路拓樸圖幾乎都包了,不過免費帳號只能有三個私有文件。
Mind42:完全免費,而且好用的線上mindmap網站,界面簡單、直覺化,推薦使用。
Mindomo:界面漂亮、好用,還有很多種的佈景主題能選擇,不過免費帳號只能有三個私有文件,是較可惜之處。

靜態連結網址 | 發表迴響 | 引用 (0)

三月
28

免費的圖紙印表軟體

Freeware, Technology | reicmemo | 三月 28, 2008,13:43

你在工作上常需要列印一些印有格線的紙張嗎?這套免費的「Grapg paper printer」軟體,可以印出20種繪圖紙,從各式的方格紙、網點紙、樂譜紙,到專業的韋伯圖、指數對數圖、笛卡兒圖等,格線及紙張均可自由的設定,相 當的方便、準確、好用,常需要繪圖的人士不可錯過這套好軟體喔!..(全文)

Graph Paper Printer 4.03
官方網站: http://pharm.kuleuven.be/pharbio/gpaper.htm
下載點:http://pharm.kuleuven.be/pharbio/gpaper.exe (384KB)

靜態連結網址 | 發表迴響 | 引用 (0)

三月
28

NOD32防毒公司推出的免費系統安全分析軟體

Freeware, Technology | reicmemo | 三月 28, 2008,13:40

知名的防毒軟體廠商「ESET」公司推出了一套免費的系統安全分析軟體–「SysInspector」,它能夠蒐集並分析你的Windows中的各種詳細資料,並以顏色顯示危險的等級(1~9級),協助你找出電腦的問題或修正安全問題,並可產生詳細的報表,是個相當實用的好軟體! ...(全文)

ESET SysInspector beta 官方網站:http://www.eset.com/esibeta

靜態連結網址 | 發表迴響 | 引用 (0)

1 2 3 4 5 6 7 8  下一篇»
About The blog
這個blog是用來記錄一些我自己解決過的問題,或是網路上查過的一些資訊,筆者不做任務的評論或詳細的操作描述,若是摘錄別人的文章,歡迎連回原作者網站看更詳細的介紹。
站內搜尋
近期文章
  • 三國群英傳7 屯田特性
  • 忘記 MySQL 密碼時候解決方案
  • Determine if file exists in a Bourne/bash shell script
  • Microsoft CSS 的修正方法
  • 線上心智圖網站
  • 免費的圖紙印表軟體
  • NOD32防毒公司推出的免費系統安全分析軟體
文章分類
  • Freeware [7]
  • game [1]
  • Program [3]
  • education [12]
  • Web site [7]
  • Unix [3]
  • Technology [12]
  • MS [3]
  • Theory [1]
  • Storage [3]
  • English [3]
  • Network [5]
  • Blog [9]
文章彙整
  • 八月 2008 [2]
  • 七月 2008 [1]
  • 六月 2008 [2]
  • 三月 2008 [10]
  • 二月 2008 [7]
  • 元月 2008 [3]
  • 十月 2007 [2]
  • 九月 2007 [2]
  • 八月 2007 [3]
  • 七月 2007 [2]
  • 五月 2007 [2]
  • 四月 2007 [8]
  • 三月 2007 [2]
  • 十二月 2006 [1]
  • 十一月 2006 [6]
  • 三月 2005 [1]
我的連結
111
222
選單
  • 主頁面
  • 文章彙整
  • 資料夾
  • 管理介面
新聞交換
  • RSS 0.90
  • RSS 1.0
  • RSS 2.0
  • Atom
 
Copyright@2007. Reic's Place. All rights reserved. Powered by Lifetype.
Designed by Dieter Schneider, CssTemplateHeaven. Ported to Lifetype by Reic Wang.