發表文章

目前顯示的是 2月, 2011的文章

Moodle新增Scratch(.sb)過濾器

圖片
為讓作品可以上傳到moodle可以線上呈現Scratch作品 加裝了一個Scratch文字過濾器 相關說明如: 阿欣部落的文章 新版本的Scratch過濾器: http://moodle.org/mod/data/view.php?d=13&rid=4216 ●模組>過濾器設定中,啟動Scratch,並按課程設定 ●預設值第三項Auto start要啟用。

圖書管理系統-無法以ISBN條碼查詢圖書來新增

圖書管理系統 圖書新增作業以ISBN條碼查詢圖書 跑不出圖書資料,顯示「查無此ISBN,請重新輸入」 在年初是可以使用的,在最近要新增一批圖書,目前無法使用 您可修改 sfs3\modules\book\book_new.php中的程式碼 $fp = fopen ("http://nbinet.ncl.edu.tw:1080/search*cht/i$BN/i$serialBN/-6,0,0,B/marc&FF=i$serialBN&1,1,", "r"); if (!$fp){         echo "<center><font size='30' color='red'>查無此ISBN,請重新輸入</font></center>"; }else{ while (!feof ($fp)) {     $buffer = fgetss($fp, 4096);         //$buffer  = iconv("UTF-8","BIG5",$buffer); 改為 $fp = fopen ("http://192.83.186.170/search*cht/i$BN/i$serialBN/-6,0,0,B/marc&FF=i$serialBN&1,1,", "r"); if (!$fp){         echo "<center><font size='30' color='red'>查無此ISBN,請重新輸入</font></center>"; }else{ while (!feof ($fp)) {     $buffer = fgetss($fp, 4096);         $buffer  = iconv("UTF-8","BIG5",$buffer); 

Acer Asipire One AOA150在Linux下的無線網路問題

我是用ACFS1.2 (Ubuntu10.04)安裝在Acer Aspire One 小筆電上 可是無線網路不能使用。 爬文後,找到一些方法,終於找到一條可用的。 wireless network stopped working after update 10.04 This usually means no driver has claimed your wireless device. I think the device works with the module ath5k . Let's load it and see if your device comes to life: Code: sudo modprobe ath5k iwconfig Was a wireless interface created? If so, let's make sure it gets loaded on boot: Code: sudo su echo ath5k >> /etc/modules exit If not, let's see what the kernel has to report: Code: dmesg | grep -i ath Thanks. ______________