centos6 yum install git yum install http://opensource.wandisco.com/centos/6/git/x86_64/wandisco-git-release-6-1.noarch.rpm yum update git centos7 yum ...
分类:
其他好文 时间:
2021-02-15 12:32:55
阅读次数:
0
pom.xml报错:Failed to read artifact descriptor for xxxxxx.jar问题的解决方法 ...
分类:
编程语言 时间:
2021-02-15 12:05:54
阅读次数:
0
公司的C++工程迁移到了Centos8上面。现进行警告消除。发现如下警告。觉得挺有意思的记录一下。 Centos版本: cat /etc/redhat-releaseCentOS Linux release 8.2.2004 (Core) Gcc版本: gcc --versiongcc (GCC) ...
分类:
数据库 时间:
2021-02-15 11:58:50
阅读次数:
0
问题出现在程序运行清单上,默认是“嵌入清单”,清单文件是“$(IntDir)/$(TargetFileName).embed.manifest”。 调试程序运行时,不知道为什么却定位不到这个文件,我们如果手动把“程序名.embed.manifest"改为”程序名.manifest“,调试程序即可定位 ...
分类:
其他好文 时间:
2021-02-10 13:41:09
阅读次数:
0
i = 1while i <= 9: i += 1 j = 1 while j <= i-1: print("{}*{}=".format(j,i-1),j*(i-1),sep='',end=' ') j += 1 print('') for i in range(1,10): for y in r ...
分类:
编程语言 时间:
2021-02-10 13:39:52
阅读次数:
0
import pyaudio import wave def get_audio(filepath): aa = str(input("是否开始录音? (y/n)")) if aa == str("y") : CHUNK = 1024 FORMAT = pyaudio.paInt16 CHANNEL ...
分类:
其他好文 时间:
2021-02-10 13:18:22
阅读次数:
0
一、blackbox_exporter应用场景 HTTP 测试: 定义 Request Header 信息、判断 Http status / Http Respones Header / Http Body 内容TCP 测试: 业务组件端口状态监听、应用层协议定义与监听ICMP 测试: 主机探活机制 ...
分类:
Web程序 时间:
2021-02-09 12:02:09
阅读次数:
0
aptitude与apt-get 源 # See http://help.ubuntu.com/community/UpgradeNotes for how to upgrade to # newer versions of the distribution. deb http://archive. ...
分类:
其他好文 时间:
2021-02-08 12:18:42
阅读次数:
0
参考来源:Magnus Lie Hetland 《Python基础教程》 1. 自定义函数 def hello( name ): return 'Hello, ' + name + '!' 可以判断一个对象是不是函数: callable( hello ) 如果是函数,就会返回True,否则会返回Fa ...
分类:
编程语言 时间:
2021-02-08 12:06:02
阅读次数:
0
选择Release模式编译执行 找到对应生成的exe文件 将生成的exe文件拷贝到一个空文件夹中 运行Qt自带的Qt_MinGW进入刚刚创建好的带有exe的空文件中 执行 windeployqt 程序名.exe 命令自动复制运行所需的库文件 ...
分类:
其他好文 时间:
2021-02-06 12:19:26
阅读次数:
0