#!/usr/bin/python #coding=utf8 log_file = "/usr/local/nginx/logs/access.log" with open(log_file) as f: contexts = f.readlines() # define ip dict### ip... ...
分类:
编程语言 时间:
2017-08-03 17:01:43
阅读次数:
282
针对list或tuple取指定范围的操作。可以使用切片(slice),非常有用 1、list:可变数组 实例: 2、tuple不可变数组 但是也可以用切片,只是操作的结果也仍然是tuple 字符串也可以看作是一个list,每个字符看成一个元素,只是操作的结果仍然是字符串 ...
分类:
编程语言 时间:
2017-08-03 17:01:32
阅读次数:
193
假设你要验证搜索无记录,页面元素不存在,假设我搜索的文本为你好 页面展示为如下 搜索:你好 假设页面搜索有结果: 你好 class=vtext 你好1 class=vtext 你好2 class=vtext 搜索:你好 假设页面搜索无数据: ps:空白 方法一 方法二 css=.vtext 取的是查 ...
分类:
其他好文 时间:
2017-08-03 17:01:23
阅读次数:
150
Alex doesn't like boredom. That's why whenever he gets bored, he comes up with games. One long winter evening he came up with a game and decided to pl ...
分类:
其他好文 时间:
2017-08-03 17:01:17
阅读次数:
192
在安装的时候可以 ./install -H 界面化安装到自己目录下 MATLAB 2014a (8.3) Runtime Compiler (MCR) Errors when trying to launch deployed (using deploy tool) application in U ...
分类:
其他好文 时间:
2017-08-03 17:01:09
阅读次数:
774
I2C总线的介绍(这个就是摘抄拉): I I2 2C C总线( 总线(Inter Integrated Circuit Bus Inter Integrated Circuit Bus):是 ):是Philips Philips公司 公司 推出的串行总线标准(为二线制)。总线上扩展的外围器件及外设接 ...
分类:
其他好文 时间:
2017-08-03 17:01:00
阅读次数:
230
"""将一个列表的数据复制到另一个列表中。""" """ 使用[:] """ a = [1,2,3] b = a[:] print b # 将a的数据赋值给b 当a的数值发生改变时b不变 [1, 2, 3] a = [1,2,3] b = a print b # 将a的地址赋值给b 当a的数值发生改... ...
分类:
编程语言 时间:
2017-08-03 17:00:49
阅读次数:
121
近期因为项目需求,须要完毕批量照片上传,折腾了一段时间,最终完毕了,达到了例如以下效果 主界面主要有GridView组成和button组成,当按下一个格点时,会调用相机或者相冊,拍照或者选择相冊照片,选择完毕之后,将缩略图显示在GridView。在这里说明一下。假设GridView显示不出来。说明图 ...
分类:
移动开发 时间:
2017-08-03 17:00:40
阅读次数:
332
本文基于《C++ Primer(第5版)》加上自己的理解整理而成。 一条声明语句由一个基本数据类型和紧随其后的一个声明符(declarator)列表组成。一般如:int x;的声明语句,声明符就是变量名。 一、引用 引用(reference)为对象起了另外一个名字,引用类型引用另外一种类型,这里将声 ...
分类:
其他好文 时间:
2017-08-03 17:00:29
阅读次数:
142
The end of the school year is near and Ms. Manana, the teacher, will soon have to say goodbye to a yet another class. She decided to prepare a goodbye ...
分类:
其他好文 时间:
2017-08-03 17:00:21
阅读次数:
163
Given an array of integers where 1 ≤ a[i] ≤ n (n = size of array), some elements appear twice and others appear once. Find all the elements of [1, n] ...
分类:
移动开发 时间:
2017-08-03 17:00:05
阅读次数:
170
select count(1), trunc(a.refund_insert_time, 'hh24') + case when to_char(refund_insert_time,'mi') >= '30' then numtodsinterval(30,'minute') else numto ...
分类:
数据库 时间:
2017-08-03 16:59:56
阅读次数:
184
vue脚手架搭建步骤: 1. 全局安装 vue-cli2. npm install --global vue-cli3. 创建一个基于 webpack 模板的新项目4. vue init webpack // 当前目录5. vue init webpack my-project // 新建目录6. ...
分类:
其他好文 时间:
2017-08-03 16:59:50
阅读次数:
155
以上10篇摘自 阿铭 Linux小管家 http://mp.weixin.qq.com/s/7kb2oe-3US_gTHnSPbgFPg ...
分类:
系统相关 时间:
2017-08-03 16:59:42
阅读次数:
197
select t1.projectLabel,t1.modulLabel,t1.environment,t1.succeedcount,t2.failedcount,t1.succeedcount+t2.failedcount as totalcount,t1.succeedcount*1.0/(t ...
分类:
数据库 时间:
2017-08-03 16:59:34
阅读次数:
168
/etc/rc.d/rc.local 是启动加载文件,当 Linux 启动时自动加载这个文件 ...
分类:
其他好文 时间:
2017-08-03 16:59:28
阅读次数:
107
修改字段类型 alter table 表名 alter column 列名 类型 not null 新增字段 alter table 表名 add 字段 类型 not null ...
分类:
数据库 时间:
2017-08-03 16:59:20
阅读次数:
145