tcpdump
摘要:tcpdump -i eth0 -xAvs0 -w out.log 然后使用winshark打开 out.log ,可以使用http筛选出各种协议 指定http 的请求的端口,如下
阅读全文
sublime 垂直编辑
摘要:http://www.sublimetext.com/docs/2/multiple_selection_with_the_keyboard.html
阅读全文
微信的公众号unionid
摘要:此外,由于开发者经常有需在多个平台(移动应用、网站、公众帐号)之间共通用户帐号,统一帐号体系的需求,微信开放平台(open.weixin.qq.com)提供了UnionID机制。开发者可通过OpenID来获取用户基本信息,而如果开发者拥有多个应用(移动应用、网站应用和公众帐号,公众帐号只有在被绑定到
阅读全文
js markdown chart flow
摘要:http://knsv.github.io/mermaid/#example-of-a-marked-renderer
阅读全文
dstat
摘要:$ dstat You did not select any stats, using -cdngy by default. total-cpu-usage -dsk/total- -net/total- paging-- system-- usr sys idl wai hiq siq| read
阅读全文
排除服务器的问题
摘要:转载:https://mp.weixin.qq.com/wiki?t=resource/res_main&id=mp1433747358&token=&lang=zh_CN 下面对查看服务器性能负载的常用工具做简单介绍,详细的工具使用请另行查阅。 1、查看CPU的性能负载 a)uptime 用于观察
阅读全文
阿里云的审核时间
摘要:您的备案信息已提交通信管理局,预计审核时间为12天左右,最长审核时间为20个工作日内,在此期间请您耐心等待。 备案成功后,您将收到来自工信部的短信、邮件通知;但由于信息同步有延迟,建议在收到通知7小时后访问网站。部分省通信管理局在备案审核过程中,可能会拨打您的电话进行核查,请您保持座机和手机的畅通,
阅读全文
bind: address already in use
摘要:http://blog.csdn.net/needle2/article/details/5822925 http://www.ibm.com/developerworks/cn/linux/l-sockpit/
阅读全文
nginx 日志分析
摘要:Nginx中日志文件的格式在nginx.conf中定义,其默认格式如下: #vim /usr/local/nginx/conf/nginx.conf log_format access ‘$remote_addr – $remote_user [$time_local] “$request” ‘‘$
阅读全文
example of Python http server
摘要:from BaseHTTPServer import HTTPServer, BaseHTTPRequestHandler print "hello " class TestHTTPHandle(BaseHTTPRequestHandler): def do_GET(self): print self.client_address print self.command buf = ...
阅读全文