上一页 1 2 3 4 5 6 7 ··· 18 下一页
摘要: 使用curl命令发送http POST请求 curl -v -X POST -d @data.json --header "Content-Type: application/json" $url curl -w选项 Defines what to display on stdout after a 阅读全文
posted @ 2021-01-19 20:29 lixin[at]hitwh 阅读(1124) 评论(0) 推荐(0) 编辑
摘要: 有文本文件,内容如下,需要找出response不为on的设备ip root@dev[15:49:33]$ cat result.txt index[8] ip[8.8.8.8] send response[ % Total % Received % Xferd Average Speed Time 阅读全文
posted @ 2020-12-28 15:56 lixin[at]hitwh 阅读(1687) 评论(0) 推荐(0) 编辑
摘要: 摘自这里 /sys/class/net/network-interface/statistics root@Dev[09:41:51]$ ll /sys/class/net/eth0/statistics total 0 -r--r--r-- 1 root root 4096 Jun 29 14:5 阅读全文
posted @ 2020-06-30 09:55 lixin[at]hitwh 阅读(310) 评论(0) 推荐(0) 编辑
摘要: golang多协程并发工作 package main import ( "fmt" "log" "os" "sync" "time" ) type Task struct { Name string Age int } func work(wg *sync.WaitGroup, jobs chan 阅读全文
posted @ 2020-06-09 17:11 lixin[at]hitwh 阅读(934) 评论(0) 推荐(1) 编辑
摘要: 模拟beego登陆 package main import ( "fmt" "time" "io/ioutil" "net/url" "net/http" "net/http/cookiejar" ) func main() { now := time.Now() var err error var 阅读全文
posted @ 2020-06-09 16:47 lixin[at]hitwh 阅读(208) 评论(0) 推荐(0) 编辑
摘要: 1. 文件去重 sort file |uniq sort -n file |uniq 2. 文件按某一列去重 # 按照第二列去重 root@solitude[20:28:32]$ cat file beijing::198 shanghai::87 shenzhen::87 beijing::100 阅读全文
posted @ 2020-02-10 20:35 lixin[at]hitwh 阅读(379) 评论(0) 推荐(0) 编辑
摘要: ObjectId MongoDB每个集合存储的每个文档必须有一个"_id"键,默认是个ObjectId对象。 "_id"作为当前文档在集合的唯一标识。 ObjectId是有12字节组成的,其前面4字节表示的是文档创建的时间戳(比北京时间晚了 8 个小时) 在 mongo shell 里可以通过 Ob 阅读全文
posted @ 2019-10-10 12:10 lixin[at]hitwh 阅读(1128) 评论(0) 推荐(0) 编辑
摘要: 今天发现这本书不错: Python Cookbook 3rd Edition Documentation 记下来,后面抽时间学习学习。 学习是一个不断锐化的过程,切忌故步自封。 路漫漫其哀思不断,吾将上下而求索。 2019-09-26@Beijing 阅读全文
posted @ 2019-09-26 20:02 lixin[at]hitwh 阅读(275) 评论(0) 推荐(0) 编辑
摘要: 问题一:一个文件含有5亿行,每行是一个随机整数,需要对该文件所有整数排序。 分治(Divide&Conquer),参考大数据算法:对5亿数据进行排序 对这个一个500000000行的 total.txt 进行排序,该文件大小 4.6G。 每读10000行就排序并写入到一个新的子文件里(这里使用的是快 阅读全文
posted @ 2019-09-20 12:01 lixin[at]hitwh 阅读(4768) 评论(0) 推荐(1) 编辑
摘要: 二分查找 lst = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19] def binary_search(lst,item): low = 0 high = len(lst)-1 while low <= 阅读全文
posted @ 2019-09-14 14:24 lixin[at]hitwh 阅读(314) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 18 下一页