網址
http://keith-wood.name/svg.html
以 jQuery 提供 SVG 互動
2015年4月30日 星期四
2015年4月29日 星期三
找回 Windows 檔案總管的工作列
開始 -> 執行 -> regedit
找到機碼
HKEY_CURRENT_USER \ Software \ Microsoft \ Internet Explorer \ Toolbar
將 Explorer , ShellBrowser, WebBrowser 之下的 ITBarLayout 刪除, 並重新啟動檔案總管
找到機碼
HKEY_CURRENT_USER \ Software \ Microsoft \ Internet Explorer \ Toolbar
將 Explorer , ShellBrowser, WebBrowser 之下的 ITBarLayout 刪除, 並重新啟動檔案總管
2015年4月23日 星期四
使用 javascript 解析 Json 格式資料
範例
var json = '{"data":true,"value":1}',
obj = JSON.parse(json);
alert(obj.value);
2015年4月21日 星期二
如何在 DOS 使用 gawk 取得特定範圍字串
語法
dir data*.txt /b | gawk -F "_" {"print $0\".\"$6"} | gawk -F "." {"system(\"sed "s/^^/\"$3\",/" \"$1\".\"$2\" \")"} > all.txt
將文字以 "_" 作為分隔字元, 取出全部與第六個字串,
重新組合後將每行行首加上指定字串, 並匯出到一個檔案.
dir data*.txt /b | gawk -F "_" {"print $0\".\"$6"} | gawk -F "." {"system(\"sed "s/^^/\"$3\",/" \"$1\".\"$2\" \")"} > all.txt
將文字以 "_" 作為分隔字元, 取出全部與第六個字串,
重新組合後將每行行首加上指定字串, 並匯出到一個檔案.
如何在 DOS 使用 sed 在每一行首加上特定字元
語法
dir *.txt /b | gawk {"system(\"sed "s/^^/\"$1\",/" \"$1\" \")"} > data.txt
此語法可以將所有行首, 加上特定字元 ( 例如檔名) ,
並將輸出合併到一個檔案.
2015年4月13日 星期一
WD My Cloud 安裝 BT 功能
安裝教學網址
http://community.wd.com/t5/WD-My-Cloud/APP-Transmission-v2-84-for-firmware-V4-12-2014/td-p/770207
http://community.wd.com/t5/WD-My-Cloud/APP-Transmission-v2-84-for-firmware-V4-12-2014/td-p/770207
訂閱:
文章 (Atom)