通用软件/工具手册
為什么80%的碼農都做不了架構師?>>> ??
#sublime text
##Settings - User
{"font_size": 14.0,"tab_size": 2,"scroll_past_end": true,"translate_tabs_to_spaces": true,"trim_trailing_white_space_on_save": true,"update_check": false,"word_wrap": "auto" }##安裝插件控制
sublime text 3
import urllib.request,os,hashlib; h = '2915d1851351e5ee549c20394736b442' + '8bc59f460fa1548d1514676163dafc88'; pf = 'Package Control.sublime-package'; ipp = sublime.installed_packages_path(); urllib.request.install_opener( urllib.request.build_opener( urllib.request.ProxyHandler()) ); by = urllib.request.urlopen( 'http://packagecontrol.io/' + pf.replace(' ', '%20')).read(); dh = hashlib.sha256(by).hexdigest(); print('Error validating download (got %s instead of %s), please try manual install' % (dh, h)) if dh != h else open(os.path.join( ipp, pf), 'wb' ).write(by)sublime text 2
import urllib2,os,hashlib; h = '2915d1851351e5ee549c20394736b442' + '8bc59f460fa1548d1514676163dafc88'; pf = 'Package Control.sublime-package'; ipp = sublime.installed_packages_path(); os.makedirs( ipp ) if not os.path.exists(ipp) else None; urllib2.install_opener( urllib2.build_opener( urllib2.ProxyHandler()) ); by = urllib2.urlopen( 'http://packagecontrol.io/' + pf.replace(' ', '%20')).read(); dh = hashlib.sha256(by).hexdigest(); open( os.path.join( ipp, pf), 'wb' ).write(by) if dh == h else None; print('Error validating download (got %s instead of %s), please try manual install' % (dh, h) if dh != h else 'Please restart Sublime Text to finish installation')附錄: 如果console方式安裝不了,則可到這里下載文件來安裝:http://www.cnblogs.com/luoshupeng/archive/2013/09/09/3310777.html
#Fiddler
Fiddler連接遠程終端
Fiddler軟件打開Fiddler Options的connection面板,打開允許遠程連接開關,并設置監聽的端口與其他參數
在遠程終端連接與本機相同的網絡,并手動設置代理,host為本機的IP,端口為監聽端口
轉載于:https://my.oschina.net/luozt/blog/500897
總結
- 上一篇: Android应用程序打包时,出现错误:
- 下一篇: Docker认识基础