Bash的特性 1. tab补全 #命令补全 [root@clf ~]# user #命令补全useradd userdel usermod usernetctl users [root@clf ~]# s Display all 195 possibilities? (y or n) #以s开头的 ...
分类:
其他好文 时间:
2020-07-07 15:26:59
阅读次数:
66
一、基本思路 打开F12 尝试输入单词girl,会发现每敲一个字母后都有请求 请求地址是http://fanyi.baidu.com/sug 利用NetWork-All-Hearders,查看发现Fromdata的值是 kw:girl 检查返回内容格式,发现返回的是json格式的内容,所以需要用到j ...
分类:
编程语言 时间:
2020-07-07 13:42:20
阅读次数:
135
mongodb中的查询条件 关键字说明 $or 或关系 $nor 或关系取反 $gt 大于 $gte 大于等于 $lt 小于 $lte 小于等于 $ne 不等于 $in 在多个值范围内 $nin 不在多个值范围内 $all 匹配数组中多个值 $regex 正则,用于模糊查询 $size 匹配数组大小 ...
分类:
数据库 时间:
2020-07-07 13:27:39
阅读次数:
139
Lost and AekdyCoin are friends. They always play "number game"(A boring game based on number theory) together. We all know that AekdyCoin is the man c ...
分类:
编程语言 时间:
2020-07-07 12:52:15
阅读次数:
93
We have a wooden plank of the length n units. Some ants are walking on the plank, each ant moves with speed 1 unit per second. Some of the ants move t ...
分类:
其他好文 时间:
2020-07-07 10:21:05
阅读次数:
78
Permutation Sequence (M) 题目 The set [1,2,3,...,*n*] contains a total of n! unique permutations. By listing and labeling all of the permutations in ord ...
分类:
其他好文 时间:
2020-07-07 10:12:57
阅读次数:
64
cat * > new.mp4 More Details:https://www.tecmint.com/13-basic-cat-command-examples-in-linux/ ffmpeg.exe -allowed_extensions ALL -i xx.m3u8 -c copy -bs ...
分类:
其他好文 时间:
2020-07-07 09:29:20
阅读次数:
81
查找命名空间 kubectl get namespace kubectl get ns 查询某个命名空间的资源 kubectl get all -n default 创建命名空间 kubectl create namespace testapp kubectl create ns testapp 删 ...
分类:
Web程序 时间:
2020-07-07 00:21:50
阅读次数:
79
应用场景,每天定时执行数据同步的所有的存储过程;先写一个同步数据的总的存储过程,具体代码如下: create or replace procedure run_all_sync_proc is begin Sync_Bank_TPEB_BS_SGMT;--基础信息表TPEB_BS_SGMT sync ...
分类:
数据库 时间:
2020-07-06 20:27:58
阅读次数:
98
@ PointXYZ——成员变量: float x, y, z; PointXYZ是使用最常见的一个点数据类型,因为它只包含三维xyz坐标信息,这三个浮点数附加一个浮点数来满足存储对齐,用户可利用points[i].data[0],或者points[i].x访问点的x坐标值。 union { flo ...
分类:
其他好文 时间:
2020-07-06 20:07:02
阅读次数:
91