2014年10月27日 星期一

sublime

//自動換行

  1. 開啓Preferences -> Setting - User(設置-用戶)
  2. 輸入
    "word_wrap" : true
//sublime中文正規搜尋

[\x{4e00}-\x{9fa5}]+


//UTF-8
"default_encoding": "UTF-8",


參考網址:

  1. http://www.zhugexiaojue.com/note/autowrap-114.html


其他人的參考網址:

  1. http://www.xchobo.net/wordpress/topics/863

2014年10月6日 星期一

win7 ios



相關網址:


  1. http://dacota.pixnet.net/blog/post/30559834-%E5%90%88%E6%B3%95%E4%B8%8B%E8%BC%89-windows-7-sp1-%E5%8E%9F%E7%89%88%E5%AE%98%E6%96%B9-iso-%E4%B8%8B%E8%BC%89
  2. http://www.gdaily.org/2013/12/windows-7.html

ssh

#產生ssh key
ssh-keygen -t rsa

#ssh連線
ssh 使用者名稱@提供com
ex:ssh example@example.com

#ssh連線紀錄清除
由於ssh會紀錄ssh-key導致機器mac不同時,將無法進行第二次同ip連線,得進行清除
ssh-keygen -R 127.0.0.1

//打洞
$ ssh -R [link port]:[本機port] [掛載在哪個程式伺服器底下]
$ ssh -R 31000:localhost:8000 ubuntu@220.228.145.219


#將伺服器程式建立捷徑到本機mount
sshfs -o allow_other 使用者名稱@提供com:伺服器登入後個人絕對位置 本機端位置/  
(範例)//需在建立捷徑資料夾上層
ex:sshfs -o allow_other user@test.com:/home/username/file_dir localhost_dir/  


#解除本機端sshfs路徑
nmount 本機端資料夾/
(範例)//需在解除捷徑資料夾上層
ex:umount -f localhost_dir/