原创 通過瀏覽器瀏覽本機文件夾

在瀏覽器地址欄輸入: file:///Users/

原创 socket.error: [Errno 48] Address already in use

http://stackoverflow.com/questions/19071512/socket-error-errno-48-address-already-in-use $ ps -fA | grep python 501

原创 How to set number of threads in OpenMP?

http://software.intel.com/sites/products/documentation/doclib/iss/2013/compiler/cpp-lin/GUID-371AAA48-F691-4F8A-998C-4B

原创 install matlab iso on ubuntu

1. Create a mount lacation sudo mkdir /media/iso 2. Mount iso sudo mount -o loop ~/Downloads/Matlab2012/Matlab.iso /med

原创 Code a network packet sniffer in python for Linux

http://www.binarytides.com/python-packet-sniffer-code-linux/ Basic Sniffer Sniffers are programs that can capture/sn

原创 How to make a KML/KMZ file in Google Earth?

First, a KMZ is just a KML file inside a .ZIP file (despite the .kmz extension) so you can open the file in a program t

原创 HowTo: Use cat Command In Linux / UNIX

http://www.cyberciti.biz/faq/howto-use-cat-command-in-unix-linux-shell-script/ cat command Syntax The syntax is as fo

原创 How to run OpenMP on Linux?

gcc -fopenmp foo.c For Bash Shell: export OMP_NUM_THREADS=4 ./a.out 點贊 收藏 分享 文章舉報 Rauber_

原创 How to enable syntax highlighting and other options in VIM

http://geekology.co.za/article/2009/03/how-to-enable-syntax-highlighting-and-other-options-in-vim How to enable synta

原创 MATLAB小技:從文本數據第N行開始讀取

http://www.eetop.cn/blog/html/03/6503-23236.html 因爲用ocnprint從Cadence導出的文本數據中第一行會有留白,很多人介紹的方法都是手工刪除前面的空白或空白和文字。個人覺得比較麻

原创 使用iperf測試網絡性能

http://blog.csdn.net/evenness/article/details/7371845 iperf 是一個 TCP/IP 和 UDP/IP 的性能測量工具,能夠提供網絡吞吐率信息,以及震動、丟包率、最大段和最大傳

原创 Why do you need to put #!/bin/bash at the beginning of a script file?

http://stackoverflow.com/questions/8967902/why-do-you-need-to-put-bin-bash-at-the-beginning-of-a-script-file 46 down