摘要: Centos查看端口占用情况命令,比如查看80端口占用情况使用如下命令: 列出所有端口 1、开启端口(以80端口为例) 方法一: 方法二: vi /etc/sysconfig/iptables 打开配置文件加入如下语句: 2、关闭端口 方法一: 方法二: 3、查看端口状态 有时启动应用时会发现端口已 阅读全文
posted @ 2018-08-06 19:38 永吉芳心 阅读(621) 评论(0) 推荐(0) 编辑
摘要: 越来越多的软件,开始采用云服务。 云服务只是一个统称,可以分成三大类。 IaaS:基础设施服务,Infrastructure-as-a-service PaaS:平台服务,Platform-as-a-service SaaS:软件服务,Software-as-a-service 它们有什么区别呢? 阅读全文
posted @ 2018-07-23 13:55 永吉芳心 阅读(136) 评论(0) 推荐(0) 编辑
摘要: Configure Fiddler Set the iOS Device Proxy Decrypt HTTPS Traffic from iOS Devices Uninstall FiddlerRoot Certificate If you decide to uninstall the roo 阅读全文
posted @ 2018-07-19 11:18 永吉芳心 阅读(208) 评论(0) 推荐(0) 编辑
摘要: Configure Nexus Device To verify this configuration, go to http://ipv4.fiddler:8888/. Chrome should display the Fiddler Echo Service webpage, and the 阅读全文
posted @ 2018-07-19 11:16 永吉芳心 阅读(447) 评论(0) 推荐(0) 编辑
摘要: Fiddler版本:V5.0 系统:window10 Fiddler使用: 一。下载Fiddler,下载地址:https://www.telerik.com/fiddler 二。安装,一切默认安装就行(如需要指定安装位置,安装时自行配置) 三。打开Fiddler-->点击Tools-->Option 阅读全文
posted @ 2018-07-18 16:37 永吉芳心 阅读(157) 评论(0) 推荐(0) 编辑
摘要: 1、在python2.x中raw_input( )和input( ),两个函数都存在,其中区别为 raw_input( ) 将所有输入作为字符串看待,返回字符串类型 input( ) 只能接收“数字”的输入,在对待纯数字输入时具有自己的特性,它返回所输入的数字的类型( int, float ) 2、 阅读全文
posted @ 2018-03-13 17:06 永吉芳心 阅读(129) 评论(0) 推荐(0) 编辑
摘要: Python 判断数据类型有type和isinstance 基本区别在于: type():不会认为子类是父类 isinstance():会认为子类是父类类型 1 2 3 4 5 6 7 8 9 class Color(object): pass class Red(Color): pass prin 阅读全文
posted @ 2017-11-23 18:09 永吉芳心 阅读(381) 评论(0) 推荐(0) 编辑