Map My Mind
主要是一堆自由軟體學習過程的片段
搜尋此網誌
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).
訂閱:
文章 (Atom)