上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 45 下一页

2023年2月18日

由于临时文件夹造成的DOTNET_BUNDLE_EXTRACT_BASE_DIR错误

摘要: windows server 2019 系统显示的 %TEMP% %TMP% 全部正常 当时在地址栏,或者cmd中输入 %TEMP% 指向的却是: 在.net在windows中, DOTNET_BUNDLE_EXTRACT_BASE_DIR 被设为 %TEMP% 相关信息 当服务器运行“单文件部署” 阅读全文

posted @ 2023-02-18 14:07 norsd 阅读(10) 评论(0) 推荐(0) 编辑

2022年12月21日

Python 类datetime的方法 replace 与 astimezone 区别

摘要: astimezone: 改变时区, 例如 utc 时间 为 2021/04/15 17:00:00 改为 北京时间后,则变为 2021/04/16 01:00:00replace(tzinfo = new_timezone_info) 替换时区, 时间数值不会发生变化,例如 utc 时间为 2021 阅读全文

posted @ 2022-12-21 15:30 norsd 阅读(4) 评论(0) 推荐(0) 编辑

2022年11月13日

Linux 输出 SO文件的EntryPoint 函数地址和名字

摘要: nm -D xxxx.so > test.txt 阅读全文

posted @ 2022-11-13 18:15 norsd 阅读(3) 评论(0) 推荐(0) 编辑

2022年11月12日

Python dict 使用

摘要: sum 所有 value sum(d.values()) dictionary.get(“bogus”, default_value) 此时如果dict 不存在key"bogus",将返回default_value dictionary.setdefault(‘one’, 3.4) 此时如果dict 阅读全文

posted @ 2022-11-12 16:48 norsd 阅读(2) 评论(0) 推荐(0) 编辑

2022年10月29日

c# 如何使Form的内部控件(Control)响应整个Form的按键消息(Event) KeyWord: IMessageFilter

摘要: 使控件继承IMessageFilter, 随后在IMessageFilter.PreFilterMessage中可以处理WM_KEYDOWN 这类Windows消息 代码类似如下: bool IMessageFilter.PreFilterMessage(ref Message m) { if (m 阅读全文

posted @ 2022-10-29 11:35 norsd 阅读(3) 评论(0) 推荐(0) 编辑

2022年10月27日

Linux Centos 离线安装库

摘要: 网上库地址:https://pkgs.org/搜索找到对应的rpm,下载复制到Centos中去, 在rpm的路径下执行 rpm -ivh packname 阅读全文

posted @ 2022-10-27 15:46 norsd 阅读(2) 评论(0) 推荐(0) 编辑

2022年10月19日

MongoDb 修改nssize

摘要: 在服务的命令行中加入 -nssize 500 表示namespace size 从默认16MB改为 500MB 注意在windows下是 -nssize, 不是 --nssize 否则服务无法启动以新nssize 启动后,对于已经存在的db,需要运行 db.repairDatabase() 命令修复 阅读全文

posted @ 2022-10-19 00:10 norsd 阅读(6) 评论(0) 推荐(0) 编辑

2022年10月11日

CentOS多网卡下 应用层无法收到组播的问题解决

摘要: CentOS6.5 系统配置文件 /etc/sysctl.conf 把 net.ipv4.conf.all.rp_filter和net.ipv4.conf.default.rp_filter设为0即可 net.ipv4.conf.default.rp_filter = 0 net.ipv4.conf 阅读全文

posted @ 2022-10-11 21:52 norsd 阅读(7) 评论(0) 推荐(0) 编辑

2022年9月26日

解决Button无法居中显示字符,特别是Webdings这类图形字符

摘要: Reference: https://stackoverflow.com/questions/17469159/centering-text-on-a-button btnUp.Text = "▲"; btnDown.Text = "▼"; btnUp.TextAlign = ContentAlig 阅读全文

posted @ 2022-09-26 11:48 norsd 阅读(3) 评论(0) 推荐(0) 编辑

2022年8月29日

MognoDb Linux C++ Driver 编译,运行注意事项

摘要: MongoDb C++ Driver 一般安装于 ./usr/local目录下,在这个目录下你能看到 boost文件夹, include文件夹(内部有bsoncxx,libbson, libmongoc, mongocxx等), lib文件夹(libson,libmongoc,mongocxx的各种 阅读全文

posted @ 2022-08-29 20:10 norsd 阅读(2) 评论(0) 推荐(0) 编辑

上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 45 下一页

导航