摘要: 今天写Python 看着没有问题 运行就各种问题 object has no attribute最后发现Vim 设置里面有个 tabstop 我设置的是4 应该设置成8 阅读全文
posted @ 2015-09-30 01:23 hao.ma 阅读(299) 评论(0) 推荐(0) 编辑
摘要: class Solution: # @param {integer[]} nums # @param {integer} target # @return {integer[]} def twoSum(self, nums, target): intLen=le... 阅读全文
posted @ 2015-09-27 23:56 hao.ma 阅读(133) 评论(0) 推荐(0) 编辑
摘要: # Gzip settings. gzip on; gzip_http_version 1.0;默认值是1.1 gzip_comp_level 6; #压缩级别,1压缩比最小处理速度最快,9压缩比最大但处... 阅读全文
posted @ 2015-09-14 11:59 hao.ma 阅读(538) 评论(0) 推荐(0) 编辑
摘要: #!/bin/sh#守护进程,接受2个参数#para CMD 执行的命令#pare ID 唯一标识改命令if [ "$1" = "" -o "$2" = "" ];then echo "USAGE:deamon.sh CMD ID" exit 100fi #创建文件夹mkdir -p .... 阅读全文
posted @ 2015-09-09 22:19 hao.ma 阅读(540) 评论(0) 推荐(0) 编辑
摘要: Follow upfor "Find Minimum in Rotated Sorted Array":What ifduplicatesare allowed?Would this affect the run-time complexity? How and why?Suppose a sort... 阅读全文
posted @ 2015-09-06 23:27 hao.ma 阅读(158) 评论(0) 推荐(0) 编辑
摘要: man find发现 花括号要加 '' find ${LOG_BASE_DIR}$dir/ -type f -mtime +${KEEP_DAYS} -name ${LOG_REG} -exec rm -f '{}' \; 阅读全文
posted @ 2015-08-31 13:16 hao.ma 阅读(348) 评论(0) 推荐(0) 编辑
摘要: #! /bin/bash#Source function library. . /etc/init.d/functions#Check that networking is up.. /etc/sysconfig/networkif [ "$NETWORKING" = "no" ]then ... 阅读全文
posted @ 2015-08-27 19:55 hao.ma 阅读(177) 评论(0) 推荐(0) 编辑
摘要: alter add命令用来增加表的字段。alter add命令格式:alter table 表名 add字段 类型 其他;例如,在表MyClass中添加了一个字段passtest,类型为int(4),默认值为0: mysql> alter table MyClass add passtest i... 阅读全文
posted @ 2015-08-26 16:53 hao.ma 阅读(130) 评论(0) 推荐(0) 编辑
摘要: log_format pre_search '$http_x_forwarded_for $remote_addr $remote_user [$time_local] $request_time_usec ' '"$request_method $request_uri" $hos... 阅读全文
posted @ 2015-08-17 20:30 hao.ma 阅读(177) 评论(0) 推荐(0) 编辑
摘要: Given an array of integers and an integerk, find out whether there are two distinct indicesiandjin the array such thatnums[i] = nums[j]and the differe... 阅读全文
posted @ 2015-08-13 23:55 hao.ma 阅读(207) 评论(0) 推荐(0) 编辑