搜尋此網誌
2012年11月20日 星期二
python 將 for的結果存到list去
一般會這樣寫:
entries_list = []
for row in entries.find():
entries_list.append(row)
但是有更省力的寫法:
entries_list = [row for row in entries.find()]
贊!
參考 python 2.7.3 tutorial 文件: 5.1.4. List Comprehensions
2012年11月13日 星期二
2012年8月14日 星期二
2012年7月23日 星期一
Socket.IO出現 listen EACCES
資料來源
執行Socket.IO server出現以下錯誤訊息:
info - socket.io started
warn - error raised: Error: listen EACCES
只有root權限才可執行1024以下的port,
所以要碼將http server啟動的port改成超過1024,
或是用sudo啟動node app。
執行Socket.IO server出現以下錯誤訊息:
info - socket.io started
warn - error raised: Error: listen EACCES
只有root權限才可執行1024以下的port,
所以要碼將http server啟動的port改成超過1024,
或是用sudo啟動node app。
無法使用sudo npm
資料來源
使用./configure -> make -> sudo make install安裝node
但是無法下指令像是: sudo npm install -g socket.io
解法:
使用./configure -> make -> sudo make install安裝node
但是無法下指令像是: sudo npm install -g socket.io
解法:
sudo ln -s /usr/local/bin/node /usr/bin/node
sudo ln -s /usr/local/lib/node /usr/lib/node
sudo ln -s /usr/local/bin/npm /usr/bin/npm
sudo ln -s /usr/local/bin/node-waf /usr/bin/node-waf
2012年6月13日 星期三
2012年5月20日 星期日
tree -a
好用的tree -a 指令
list contents of directories in a tree-like format.
-a All files are printed. By default tree does not print hidden files
(those beginning with a dot `.'). In no event does tree print the
file system constructs `.' (current directory) and `..' (previous
directory).
list contents of directories in a tree-like format.
-a All files are printed. By default tree does not print hidden files
(those beginning with a dot `.'). In no event does tree print the
file system constructs `.' (current directory) and `..' (previous
directory).
2012年5月16日 星期三
用cat指令新建檔案
用 cat 建立文件並且輸入內容,
使用指令:
cat > userdoc
就會建立建立文件userdoc
就會建立建立文件userdoc
然後輸入你的文件內容,
結束按ctrl + d 終止輸入,
2012年4月5日 星期四
2012年3月25日 星期日
Libreoffice 自動校正選項
使用LibreOffice時有些自動完成選項很惱人,
像是自動把開頭字母換成大寫, 還有雙引號,單引號等等,
處理方法,就是到 工具 --> 自動校正選項 裏面把不要的自動完成或取代功能關掉。
像是自動把開頭字母換成大寫, 還有雙引號,單引號等等,
處理方法,就是到 工具 --> 自動校正選項 裏面把不要的自動完成或取代功能關掉。
訂閱:
文章 (Atom)