2008年7月26日 星期六


網路字典

  • Yahoo 字典:http://tw.dictionary.yahoo.com/search?ei=UTF-8&p=$
  • SINA 字典:http://dictionary.sina.com.tw/word/ec/$

安裝

  • Firefox 安裝 DictionarySearch 元件,然後在 Menu→工具附加元件擴充套件DictionarySearch選項,加入上列兩個字典網址
  • 在 K-Meleon 中:首先 MenuAdvanced PreferencesFindind WebsiteSearch Engines加入上列兩個字典網址
    然後由 Menu
    Advanced PreferencesFindind WebsiteMulti-Search 內,加入上列兩個字典網址
農曆
農曆

2008年4月15日 星期二

中研院的兩套 USB 隨身碟防毒工具

中央研究院所推出兩套專殺 USB 隨身碟病毒工具:
*** 下列資訊 可否加入我們『卓越教學計畫』的資安網站 ? ***
(Win XP 和 Vizta皆適用,建議安裝在 A601 和 A603)
簡介文章:
  1. http://antbsd.twbbs.org/~ant/wordpress/?p=1128
  2. http://www.freegroup.org/wow-usb-protector-kill-usb-viruse
相關之免費USB防毒軟體:
  • USB Cleaner 6.0
  • Kavo Killer 3.2
關於『卓越教學計畫』:
  • 若有多餘的『卓越教學計畫』業務費,可發行『資安簡訊』之類的刊物, 將我們網站的內容分批(月刊/季刊)發行。
  • 該刊物內容加上一些測驗或評量,提供『資訊素養』或『計算機概論』等相關課程使用, 有利於『卓越教學計畫』的落實和推廣,最重要的是,其活動記錄可成為執行成果的依據。

2008年4月4日 星期五

高效能的Windows和Linux並行方案

andLinux基於coLinux,比Virtual Machine 更有效率,更省資源!
  • 己有VirtualBox,Qemu,VMware,Virtual PC,為何還要去搞 andLinux ?
  • 效率/免費: coLinux是首選,但若加上使用方便的考量,則 andLinux 則是首選。

andLinux的理想Configuration
  • 安裝 WinPcap
  • Host(WinXP) - Guest(Linux): 採用TAP driver,用在Local(本機)工具的X-Term連線
  • Guest/Host - Internet: 採用WinPcap Bridge,分享對外(Inet)連線


WinPcap Bridge + TAP 之設定:
  • Windows端:安裝WinPcap
  • Windows端的 andLinux 設定檔(settings.txt):
mem=256
root=/dev/cobd0
initrd=initrd.gz
kernel=vmlinux
exec0="pulseaudiopulseaudio.exe"
cobd0=Drivesbase.drv
cobd1=Drivesswap.drv
eth0=pcap-bridge, "網路卡名稱", 00:0C:6E:31:06:F8 (網路卡號碼)
eth1=tuntap, "TAP-Colinux", 00:11:22:33:44:55 (任意)

  • Windows端:網路卡(Virtual) TAP-Colinux 的 IP 要和 coLinux 的 DISPLAY 一致(192.168.11.1)
  • :coLinux(Guest)端網路設定:設定 Gateway、DNS、Subnet與Host一致,但 IP不可相衝突。
  • 修改 /etc/network/interfaces 內容如下
auto lo eth0 eth1
iface lo inet loopback

iface eth0 inet static
address 192.128.1.121 (依環境自訂)
gateway 192.128.1.1 (依環境自訂)
netmask 255.255.255.0 (依環境自訂)

iface eth1 inet static
address 192.168.11.150 (依環境自訂)
netmask 255.255.255.0
# gateway 192.168.11.1

  • 記得要在 Host 執行 Xming Server!

2007年5月29日 星期二

來自BBC Health News 的新聞

喝咖啡能降低痛風的症狀!
-- Lower gout risk for coffee lovers, http://news.bbc.co.uk/2/hi/health/6690595.stm

喝蘋果汁(新鮮的或濃縮沖泡皆可)和吃香蕉有助於改善氣喘,但是生吃蘋果則效果不彰,奇怪?
-- Apple juice 'may prevent asthma', http://news.bbc.co.uk/2/hi/health/6684757.stm
  • Children who drank apple juice at least once a day were half as likely to suffer from wheezing as those drinking it less than once a month.
  • The apple juice involved did not have to be fresh apple juice - long-life juices made from concentrate were also effective.
  • Eating fresh apples themselves gave no apparent benefits, the study concluded.
Cerebellum recreated in robots: 德國和西班牙的科學家用模擬小腦的技術來改善機器人的精密度。
-- Move to create less clumsy robots, http://news.bbc.co.uk/2/hi/technology/6700691.stm

2007年5月13日 星期日

Linux 版本

VectorLinux (Slackware based)
MepisLinux
Centos 5
Centos tutorial: http://apt.nc.hcc.edu.tw/web/student_server_centos/student_server_centos.html

2007年5月10日 星期四

MCS51/PIC 實習板簡介

常用練習之接線說明
詳細資訊︰http://docs.google.com/Doc?id=dspzq89_38chmsjs
  • 8051︰四個PORT P0~P3、石英晶體 X1
  • LED︰J4、J5
  • DIP Switch: J8
  • 七段顯示器︰J1、J3
  • LED矩陣︰J16、J17
  • Buzzer︰ J9
  • 按鈕/中斷︰J10
  • 4x4按鍵︰J6、J7
  • 序列通訊(RS232)︰J18

2007年5月9日 星期三

ActiveState Perl 軟體: 柏際

軟體代理 ActiveState Perl: 柏際 http://www.bockytech.com.tw/index.htm

## Convert Unix paths into Win paths with perl:
$cwd=`cd`;

$cwd =~ s/^\s*|\s*$//g;
print $cwd,"\n";
$cwd =~ s{\\}{\/}g;
print $cwd;