上一页 1 2 3 4 5 6 7 ··· 45 下一页

2024年8月31日

OneDrive Windows Desktop 无法启动

摘要: https://answers.microsoft.com/en-us/onedrive/forum/odstart-odsignin/onedrive-keeps-crashing-shortly-after-launching-it/7c694921-f5b9-4c73-a33c-cf891c1 阅读全文

posted @ 2024-08-31 10:01 norsd 阅读(2) 评论(0) 推荐(0) 编辑

2024年8月30日

nanomsg.nng 在windows下的安装

摘要: 需要 cmake 版本号大于等于3.1, 个人使用了Visual Studio 的 Native tools command prompt (分为x86, x64 分别用于Build各自构架的nng)github源 https://github.com/nanomsg/nng 下载压缩包解压缩进入文 阅读全文

posted @ 2024-08-30 08:02 norsd 阅读(25) 评论(0) 推荐(0) 编辑

2024年8月28日

Python 问号表达式(ternary conditional operator)的实现

摘要: a if condition else b ref: https://stackoverflow.com/questions/394809/does-python-have-a-ternary-conditional-operator 阅读全文

posted @ 2024-08-28 03:58 norsd 阅读(2) 评论(0) 推荐(0) 编辑

2024年8月27日

Visual Studio Code 配置 PYTHONPATH, autoComplete 使得自己编写的package可以正常工作

摘要: 在cmd中定位到你的工作目录, 例如 e:\PythonProjects, 输入命令行 code . 打开 Visual Studio Code 确定settings.json 路径: 工作目录/vscode/settings.json 如果不存在,则点击 齿轮,设置。 进入Settings Pan 阅读全文

posted @ 2024-08-27 09:26 norsd 阅读(18) 评论(0) 推荐(0) 编辑

2024年8月22日

使用dumpbin 输出DLL外部函数

摘要: 使用VisualStudio 提供的 Developer Command Prompt 启动 Console 输入命令: dumpbin /EXPORTS dll_path >> output_path.txt 阅读全文

posted @ 2024-08-22 17:21 norsd 阅读(2) 评论(0) 推荐(0) 编辑

2024年8月21日

c++ 显式转换中的问题

摘要: 显式转换中的问题 auto test = (PCSTR)(String::Format("regex_match failed: \"%s\"", a_strAddress.c_str())); String::Format 返回一个String类型临时变量,我们把他称为 “t” 他被要求显示转化为 阅读全文

posted @ 2024-08-21 00:00 norsd 阅读(4) 评论(0) 推荐(0) 编辑

2024年8月20日

nanomsg-python 安装在Windows下的流程

摘要: 在本机安装x64的nanomsg : https://blog.csdn.net/norsd/article/details/81285104从GitHub 下载 nanomsg-python的 zip 文件: https://github.com/tonysimpson/nanomsg-pytho 阅读全文

posted @ 2024-08-20 09:39 norsd 阅读(10) 评论(0) 推荐(0) 编辑

2024年8月19日

VCode Python 设置当前目录

摘要: 1.当前目录 os.path.abspath('.') 2.设置新的当前目录 os.chdir('E:/Test/Test') 在VSCode中打开Folder时,当前目录就是这个Folder 而不是其中文件的目录 例如我打开了Foloder: c:\PythonProjects 随后其中有文件 c 阅读全文

posted @ 2024-08-19 15:57 norsd 阅读(8) 评论(0) 推荐(0) 编辑

2024年8月18日

numpy.searchsorted 用法

摘要: numpy.searchsorted : vs = [1, 3, 5, 7, 9] numpy.searchsorted(vs, 4) output:2 我们看到searchsorted 返回了2,注意vs必须是按序排 列,如果是乱序的话可以如此调用: a numpy.searchsorted(vs 阅读全文

posted @ 2024-08-18 11:52 norsd 阅读(2) 评论(0) 推荐(0) 编辑

2024年8月16日

怎样判断一个exe可执行程序(dll文件)是32位的还是64位的?

摘要: https://blog.csdn.net/chenjianqi0502/article/details/79034403 怎样判断一个exe可执行程序(dll文件)是32位的还是64位的? 简便方法: 直接用记事本或者notepad++打开exe文件(dll文件),会有很多乱码,不要头疼,接下来只 阅读全文

posted @ 2024-08-16 17:09 norsd 阅读(11) 评论(0) 推荐(0) 编辑

上一页 1 2 3 4 5 6 7 ··· 45 下一页

导航