import os def traverse_dir(path): for root, dirs, files in os.walk(path): for dir in dirs: dir_path = os.path.join(root, dir) print(dir_path) traverse ...
分类:
其他好文 时间:
2021-07-05 17:23:58
阅读次数:
0
https://www.it1352.com/1873377.html #!/bin/sh if [ -n "$TMUX" ]; then case "$1" in prod_*) tmux selectp -P bg=red ;; esac fi ssh "$@" tmux selectp -P ...
分类:
其他好文 时间:
2021-07-05 17:23:38
阅读次数:
0
[CTSC2018]混合果汁 \(\text{Solution:}\) 题目有三个限制:饮料体积的限制、要求的饮料总体积限制、总价格限制。 首先,美味度最大是我们一定要满足的条件。考虑如何让它变得好维护: 将饮料按照美味度排序,并按顺序建立主席树。 这样,\(root_i\) 所对应的区间 \([1 ...
分类:
其他好文 时间:
2021-07-05 17:22:16
阅读次数:
0
[root@NMS src]# yum search mariadb Last metadata expiration check: 0:46:24 ago on Fri 02 Jul 2021 08:18:32 PM CST. Name Exactly Matched: mariadb maria ...
分类:
数据库 时间:
2021-07-05 16:58:36
阅读次数:
0
1.问题: Warning: Permanently added 'github.com' (RSA) to the list of known hosts. git@github.com: Permission denied (publickey). fatal: Could not read f ...
分类:
其他好文 时间:
2021-07-05 16:56:22
阅读次数:
0
1.需要在联网的linux环境下下载好所需要的包 /root/temp 目录 pip3 download impala -d /root/temp pip3 download impyla -d /root/temp 2.下载之后的包 3.然后拷贝到离线的环境下 执行 pip3 install安装所 ...
分类:
编程语言 时间:
2021-07-05 16:41:50
阅读次数:
0
driverClassName = com.mysql.cj.jdbc.Driver url = jdbc:mysql://localhost:3306/数据库名?serverTimezone=UTC username = root password = 123456 #初始化连接数量 initia ...
分类:
其他好文 时间:
2021-07-05 16:39:21
阅读次数:
0
因业务需要,我们现有得服务器上一个节点上装了多个服务,前后端都有涉及,因此就需要用 filebeat 将这些日志收集起来生成不一样得索引,配置如下(仅供参考): input: filebeat.inputs: # Each - is an input. Most options can be set ...
分类:
其他好文 时间:
2021-07-05 16:37:41
阅读次数:
0
我司gerrit 在gerrit review的流程上用js 定制了一堆precheck的checkbox,有时候遇上浏览器抽风,或者gerrit 流程顺序不对,导致label不能在gerrit界面上手动修改,时间紧急只好用命令行 修改gerrit label,记录下命令: ssh -p 29418 ...
分类:
其他好文 时间:
2021-07-02 16:42:29
阅读次数:
0
※ 树莓派Zero W ,默认 hostname为 raspberrypi ,通过USB网络方式登陆时,修改hostname后,登录主机名要随之变化。 ① ssh pi@raspberrypi 更新系统: sudo apt update && sudo apt upgrade -y ② 安装apac ...
分类:
Web程序 时间:
2021-07-02 16:33:55
阅读次数:
0