09 2019 档案

如何打开 Visual Studio 的 Dump,适用于调试 appcrash,exception
摘要:https://keithbabinec.com/2018/06/12/how-to-capture-and-debug-net-application-crash-dumps-in-windows/ https://docs.microsoft.com/en-us/windows/win32/we 阅读全文

posted @ 2019-09-29 13:48 liujx2019 阅读(583) 评论(0) 推荐(0)

[Qt] 打开Diskmgmt
摘要:QProcess mOpenDiskMgmt; QString program = "cmd"; QStringList arguments; arguments start(program, arguments); 阅读全文

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

如何给 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 阅读(987) 评论(0) 推荐(0)

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

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

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

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

如何调试 Inno Setup
摘要:从命令行运行安装包,并加上 阅读全文

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

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 阅读(195) 评论(0) 推荐(0)

设置 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 阅读(1029) 评论(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 阅读(650) 评论(0) 推荐(0)

查看现有的 cipher suite
摘要:openssl ciphers [-v] [-ssl2] [-ssl3] [-tls1] [cipherlist] 阅读全文

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

导航