C语言 #include "stdbool.h" #define NULL ((void *)0) //Definition for a binary tree node. struct TreeNode { int val; struct TreeNode *left; struct TreeNo ...
分类:
编程语言 时间:
2021-05-25 17:51:01
阅读次数:
0
<dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.7</version> <!-- 作用域范围为test --> <scope>test</scope> </dependency> 将<sc ...
分类:
其他好文 时间:
2021-05-24 17:22:10
阅读次数:
0
public htmlToText(html: string) { return html .replace(/<br>/g, '') .replace(/<p>/g, '') .replace(/<\/p>/g, '') .replace(/<\s*b[^>]*>/g, '') .replace( ...
分类:
Web程序 时间:
2021-05-24 17:18:14
阅读次数:
0
https://cloud.google.com/storage/docs/gsutil_install#deb yum install google-cloud-sdk yum install gcc python3-devel python3-setuptools redhat-rpm-conf ...
分类:
其他好文 时间:
2021-05-24 16:44:17
阅读次数:
0
为了Skywalking 准备 elasticsearch 至少 需要2G内存 docker pull elasticsearch:7.9.3 docker run --name elasticsearch -p 9200:9200 -p 9300:9300 \ -e "discovery.type ...
分类:
其他好文 时间:
2021-05-24 16:43:33
阅读次数:
0
先看一个简单的字典生成式: 1 columns=[1,2,3,4] 2 3 new_dict={c:1 for c in columns} 4 5 print(new_dict) 结果是:{1: 1, 2: 1, 3: 1, 4: 1} ...
分类:
编程语言 时间:
2021-05-24 16:39:55
阅读次数:
0
问题描述: 有两个coredns pod不能正常运行,反复重启 kubectl get pods --all-namespaces 问题分析: 1、其他pod能正常运行,只有dns这两个pod不能运行,排除整个环境网络问题 2、查看报错信息,提示不能和192.168.0.3和192.168.0.6通 ...
分类:
其他好文 时间:
2021-05-24 16:18:31
阅读次数:
0
python k-means F:\PythonProject\K-Means import pandas as pd import numpy as np from sklearn.preprocessing import StandardScaler from sklearn.model_sel ...
分类:
编程语言 时间:
2021-05-24 16:18:04
阅读次数:
0
这篇文章实在是很难下笔,因为网上相关文章不胜枚举。 巧合的是前些天看到阮老师的一篇文章的一句话: “对我来说,博客首先是一种知识管理工具,其次才是传播工具。我的技术文章,主要用来整理我还不懂的知识。我只写那些我还没有完全掌握的东西,那些我精通的东西,往往没有动力写。炫耀从来不是我的动机,好奇才是。" ...
分类:
移动开发 时间:
2021-05-24 16:11:19
阅读次数:
0
1、如何将多个文件及文件夹压缩为一个压缩文件 问题:我要把这些文件压缩为一个压缩文件 解决方案:linux命令 — tar命令:https://www.runoob.com/linux/linux-comm-tar.html PS D:\nuxtrun\test> tar czvf dev.tar. ...
分类:
系统相关 时间:
2021-05-24 16:09:18
阅读次数:
0