2024年10月24日

Linux bash 与 命令行 查找进程的不同

摘要: #必须使用 GL2ServerConsole.dll 来过滤 #不能使用 GL2ServerConsole #在命令行模式下一样 #但是通过远程bash调用 后者会返回如下内容: root 25800 0.0 0.0 113280 1220 ? S 20:36 0:00 bash -c /root/ 阅读全文

posted @ 2024-10-24 12:14 norsd 阅读(3) 评论(0) 推荐(0) 编辑

2024年10月14日

快速确定dll 是x86还是x64

摘要: reference: https://www.cnblogs.com/chinalantian/p/4903252.html 非.NET文件用:dumpbin.exe /headers file.exe(C:\Program Files (x86)\Microsoft Visual Studio 1 阅读全文

posted @ 2024-10-14 14:45 norsd 阅读(3) 评论(0) 推荐(0) 编辑

2024年10月13日

Python 将 tuples 作为参数依序传入函数 (Expanding tuples into arguments)

摘要: myfun(*tuple) does exactly what you request. reference: http://stackoverflow.com/questions/1993727/expanding-tuples-into-arguments 阅读全文

posted @ 2024-10-13 09:11 norsd 阅读(2) 评论(0) 推荐(0) 编辑

2024年10月10日

Nanomsg 安装在windows下的流程

摘要: 从GitHub上下载 zip https://github.com/nanomsg/nanomsg官方Readme.md中关于Windows的安装方法很简单,如果你完全照做可能编译后是一个32bit的nanomsghttps://github.com/nanomsg/nanomsg/issues/8 阅读全文

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

2024年10月9日

Linux系统查看文件夹大小,按照从大到小排列

摘要: Reference: https://zhuanlan.zhihu.com/p/628539546 可以使用du命令查看文件夹大小,然后使用sort命令排列,组合起来如下: du -sh * | sort -rh 解释一下这个命令: du命令用于估算文件或文件夹的磁盘使用情况。 -s选项用于显示文件 阅读全文

posted @ 2024-10-09 12:34 norsd 阅读(249) 评论(0) 推荐(0) 编辑

2024年10月4日

在修改dll名字后如何使lib重建,定向到新名字的dll

摘要: ref: https://blog.csdn.net/GG_SiMiDa/article/details/81742924 因为工作需要区分不同版本的dll(名字相同), 工程中不希望动态LoadLibrary,而是用lib 所以必须重建lib。 将dll改名为 原名.version.dll用 pe 阅读全文

posted @ 2024-10-04 09:59 norsd 阅读(4) 评论(0) 推荐(0) 编辑

2024年9月25日

rpy2 使用中注意的问题

摘要: import rpy2时 windows抛出 Module 没有找到错误 添加 R_HOME 全局变量 值形如: “C:\Program Files\R\R-3.4.0” 随后重启VisualStudio后再次运行即可 阅读全文

posted @ 2024-09-25 09:31 norsd 阅读(9) 评论(0) 推荐(0) 编辑

rpy2 的安装

摘要: 1.第一种方法 ref: https://stackoverflow.com/questions/34512910/error-install-rpy2 Download the version you need here http://www.lfd.uci.edu/~gohlke/pythonl 阅读全文

posted @ 2024-09-25 09:31 norsd 阅读(20) 评论(0) 推荐(0) 编辑

2024年9月21日

VSCode 安装 Python pip 包

摘要: VSCode 点击 Ctrl+Shift+`Windows环境输入: python -m pip install matplotlib但是速度会很慢,可以通过清华的镜像 python -m pip install matplotlib -i https://pypi.tuna.tsinghua.ed 阅读全文

posted @ 2024-09-21 16:58 norsd 阅读(31) 评论(0) 推荐(0) 编辑

2024年9月20日

Windows Spotlight 不更新图片

摘要: Windows Spotlight 不更新图片 忘了什么时候的事情了… reference: 参考连接 我这里的问题是 点击 Win+I , Personalization, LockScreen 中总是选择 Pictures, 及时你选择了Spotlight, 关闭窗口后,再次打开,仍然是Pict 阅读全文

posted @ 2024-09-20 14:41 norsd 阅读(4) 评论(0) 推荐(0) 编辑

导航