摘要:
将当前用户添加到docker组就可以了 1、如果还没有 docker group 就添加一个 sudo groupadd docker 2、将用户加入该 group 内。然后退出并重新登录就生效啦。 sudo gpasswd -a $ docker 3、重启 docker 服务 sudo servi 阅读全文
摘要:
将barCategoryGap设置为"0%"就可以去除柱子之间的间距 详见echarts配置项手册的series[i]-bar.barGap https://echarts.apache.org/zh/option.html#series-bar 阅读全文
摘要:
以utf-8-sig形式打开文件即可 with open('./JsonMap/features.json', 'r', encoding='utf-8-sig') as f: data = f.read() data = json.loads(data) 阅读全文
摘要:
打开package.json,找到scripts下的dev 结尾增加一个参数 --host 192.168.191.1(更改为自己电脑ip) "scripts": { "dev": "webpack-dev-server --inline --progress --config build/webp 阅读全文
摘要:
在html的head标签加入以下内容即可 <head> <meta name="viewport" content="width=device-width, initial-scale=1.0"> </head> 阅读全文
摘要:
nohup python check_battery.py > /dev/null 2>&1 & jobs kill %1 参考链接 https://www.jianshu.com/p/4041c4e6e1b0 https://blog.csdn.net/ithomer/article/detail 阅读全文
摘要:
初始化 git add file 将文件添加至暂存区,多个文件用git add * git commit -m 'xxx' 提交至当前版本 git log --pretty=oneline 查看commitid 和 commit消息 git reflog 查看自己命令 git reset --har 阅读全文
摘要:
# Python code to demonstrate # finding duplicate values from dictionary # initialising dictionary ini_dict = {'a':1, 'b':2, 'c':3, 'd':2} # printing i 阅读全文
摘要:
a_series = pd.Series(["a", "b", "c"], name="Letters") another_series = pd.Series([1, 2, 3], name="Numbers") df = pd.concat([a_series, another_series], 阅读全文
摘要:
恢复内容开始 response_data['list'][0]是一个python字典,indent可以让文件内容缩进4个空格 json_str = json.dumps(response_data['list'][0], indent=4) with open('record.json', 'a') 阅读全文