上一页 1 ··· 21 22 23 24 25 26 27 28 29 ··· 41 下一页

2019年9月27日

[Qt] 打开Diskmgmt

摘要: QProcess mOpenDiskMgmt; QString program = "cmd"; QStringList arguments; arguments start(program, arguments); 阅读全文

posted @ 2019-09-27 13:16 liujx2019 阅读(198) 评论(0) 推荐(0)

2019年9月25日

如何给 Visual Studio 的输出程序添加版本信息

摘要: 出处:https://stackoverflow.com/questions/284258/how-do-i-set-the-version-information-for-an-existing-exe-dll 先给项目添加一个 version.h 头文件 再到 proj.rc 里创建一个 Ver 阅读全文

posted @ 2019-09-25 11:17 liujx2019 阅读(978) 评论(0) 推荐(0)

Inno Setup 添加版权信息

摘要: 有以上一句,即可在右键 --> Property --> Details 里看见版本信息。 目前没有发现 Inno 自带的可以获取 EXE 版权信息的函数。所以会出现版权信息的字符串,在程序代码里有一份,在 Inno 脚本里又有一份。 还有 VersionInfoCopyright, Default 阅读全文

posted @ 2019-09-25 11:09 liujx2019 阅读(1287) 评论(0) 推荐(0)

如何给 Inno Setup 生成的安装包添加版本信息

摘要: 使用 Inno 已有的函数 GetFileVersion 获取 EXE 文件的版本 这样,右键 Property --> Details 能看到版本信息。 程序的版本号会在 Welcome Page 里显示。如果 Disable 了 Welcome Page, 可以用修改程序显示名字的办法来显示出版 阅读全文

posted @ 2019-09-25 11:04 liujx2019 阅读(2996) 评论(0) 推荐(0)

2019年9月24日

如何调试 Inno Setup

摘要: 从命令行运行安装包,并加上 阅读全文

posted @ 2019-09-24 09:42 liujx2019 阅读(833) 评论(0) 推荐(0)

2019年9月11日

Debugging Under Unix: gdb Tutorial (https://www.cs.cmu.edu/~gilpin/tutorial/)

摘要: Contents Introduction This tutorial was originally written for CS 342 at Washington University. It is still maintained by Andrew Gilpin. Who should re 阅读全文

posted @ 2019-09-11 09:36 liujx2019 阅读(193) 评论(0) 推荐(0)

2019年9月10日

设置 cipher suite

摘要: https://man.openbsd.org/SSL_CTX_set_cipher_list.3#ECDHE SSL_CTX_set_cipher_list() sets the list of available cipher suites for ctx using the control s 阅读全文

posted @ 2019-09-10 18:42 liujx2019 阅读(1010) 评论(0) 推荐(0)

openssl查看证书细节 [转载]

摘要: openssl x509部分命令 打印出证书的内容: openssl x509 -in cert.pem -noout -text 打印出证书的系列号 openssl x509 -in cert.pem -noout -serial 打印出证书的拥有者名字 openssl x509 -in cert 阅读全文

posted @ 2019-09-10 18:40 liujx2019 阅读(648) 评论(0) 推荐(0)

查看现有的 cipher suite

摘要: openssl ciphers [-v] [-ssl2] [-ssl3] [-tls1] [cipherlist] 阅读全文

posted @ 2019-09-10 18:38 liujx2019 阅读(936) 评论(0) 推荐(0)

2019年8月23日

Makefile: missing separator(did you mean TAB instead of 8 spaces?). Stop.

摘要: 通常我们会对vimrc文件加以配置(如将TAB键自动转换为4个空白键)。但正是由于将tab键转换为n个空白键,使得用vim编写的Makefile中不存在tab键(即“\t”)了。恰恰Makefile中以tab键作为命令行的起始标记。所以现在找到了报错的原因,即tab键被替换为空白键了。解决方法是:在 阅读全文

posted @ 2019-08-23 16:44 liujx2019 阅读(3611) 评论(0) 推荐(0)

上一页 1 ··· 21 22 23 24 25 26 27 28 29 ··· 41 下一页

导航