Professional mechanics require the use of professional OBD2 diagnostic tools to get the job done. but before selected outstanding high-end scanners, w ...
分类:
其他好文 时间:
2020-11-12 13:22:27
阅读次数:
9
在配置asm磁盘的时候,openfiler通过识别,fdisk-l后需要配置网卡绑定
分类:
系统相关 时间:
2020-11-10 11:36:35
阅读次数:
18
#!/bin/bash#usemk-ks.shos_nametocreateksisoimages#set-xs_pr_no=$#s_os_name=$1s_os_versio=$2s_date=date+%F-%H-%M-%Ss_log=/kvm/kstool/log/mkks-${s_os_name}-${s_date}.logecho$s_logcase${s_os_name}inolinu
分类:
其他好文 时间:
2020-11-07 16:54:06
阅读次数:
31
原因: 接口返回不全, 或者后续维护不了的接口无法返回全, 才让写多个 留给自己看的 参考: 阮一峰的jQuery的deferred对象详解 ...
分类:
Web程序 时间:
2020-11-01 21:25:53
阅读次数:
35
图论模板 最短路 Dijkstra struct HeapNode { int u; LL d; bool operator < (const HeapNode& rhs) const { return d > rhs.d; } }; bool done[maxn]; LL d[maxn]; voi ...
分类:
其他好文 时间:
2020-10-26 11:08:36
阅读次数:
22
配套视频教程 本文B站配套视频教程 密码哈希 用户模型有一个password_hash字段,到目前为止尚未使用。它是用于保存用户密码的哈希值,密码用于验证用户在登录过程中输入的密码。密码散列是一个复杂的主题,应交给安全专家,但有几个易于使用的库以一种简单地从应用程序调用的方式实现所有逻辑。 其中一个 ...
分类:
其他好文 时间:
2020-10-21 21:10:09
阅读次数:
24
import turtle as t t.setup() t.pensize(5) for i in range(4): t.fd(150) t.right(90) t.circle(-150,45) t.right(90) t.fd(150) t.right(225) t.done() ...
分类:
其他好文 时间:
2020-10-19 23:05:13
阅读次数:
56
实战Redis集群 # 创建一个自定义的网络名词叫redis docker network create --subnet 172.18.0.0/16 --gateway 172.18.0.1 redis # 宿主机挂载文件 for port in $(seq 1 6); do mkdir -p / ...
分类:
其他好文 时间:
2020-10-19 22:48:19
阅读次数:
22
一、创建excel import pandas as pd df = pd.DataFrame() df.to_excel('C:/Temp/output.xls') print('Done!') 试着添加一些数据 import pandas as pd df = pd.DataFrame({'ID ...
分类:
其他好文 时间:
2020-10-18 16:33:11
阅读次数:
20
#!/bin/bash#by wwp Obtain hostname>hostname.txtip=`cat ip.list`for i in $ipdo Hostname=`ssh -t $i hostname` echo -e "$i \t $Hostname" >> hostname.txtd ...
分类:
其他好文 时间:
2020-10-18 09:45:27
阅读次数:
21