上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 45 下一页

2024年3月10日

C++ 父类泛型中涉及到衍生类时的方法

摘要: gcc(相比较vc++)对于前置声明类不太友好 class BsonArray;//BsonArray是BasicBsonValue的衍生类, 衍生类必须在Base类之后定义,所以这里只能用前置类 class Bson { ... template<typename T> static BasicB 阅读全文

posted @ 2024-03-10 21:58 norsd 阅读(4) 评论(0) 推荐(0) 编辑

2024年3月1日

修改DataGridView的ColumnHeaderStyle

摘要: 如下代码将使得变量dgv(DataGridView)的ColumnHeader背景色为黑色,前色为麦色。且没有白色的边框 dgv.EnableHeadersVisualStyles = false; dgv.ColumnHeadersDefaultCellStyle.BackColor = Colo 阅读全文

posted @ 2024-03-01 22:01 norsd 阅读(3) 评论(0) 推荐(0) 编辑

2024年2月22日

Mongodb 删除用户,创建全局只读账户

摘要: 使用 mongosh 默认是 127.0.0.1:27017 否则用 --port 27016 --host 127.0.0.2 1.认证用户 use admin db.auth(“username”, “password”) 如果正确, mongosh将返回 { ok: 1 } 删除用户: 进入需 阅读全文

posted @ 2024-02-22 01:59 norsd 阅读(9) 评论(0) 推荐(0) 编辑

2024年2月9日

Visual Studio 2017 C#Debug模式下因为调用层次过多导致StackOverFlowException

摘要: Visual Studio 2017 C# 工程 Debug模式下因为 函数调用层次过多导致StackOverFlowException 后来在一些位置使用了Task.Factory.StartNew IVDataQueueProvider.GetAsync public void GetAsync 阅读全文

posted @ 2024-02-09 12:11 norsd 阅读(3) 评论(0) 推荐(0) 编辑

2024年1月26日

C# List.Sort 方法可能自己比较自己

摘要: 最近代码突然报错 如下: pps = pps.Sort((t0, t1) => { var c = t0.Variety.DeliveryYearMonth.CompareTo(t1.Variety.DeliveryYearMonth); if (c != 0) return c; c = (t0. 阅读全文

posted @ 2024-01-26 17:07 norsd 阅读(2) 评论(0) 推荐(0) 编辑

Visual Studio build Linux ValidateSources FAILED

摘要: 当编译Linux的程序时, VC会把所有引用的文件复制到Remote, 在这之前,他将做 ValidateSources 检查文件是否正常。如果你引用的文件被移动或者删除,将产生这个错误。 例如: 1>Target _ValidateSources: 1> Using "ValidateSource 阅读全文

posted @ 2024-01-26 17:06 norsd 阅读(2) 评论(0) 推荐(0) 编辑

2024年1月24日

Python min/max 返回index

摘要: Reference: https://stackoverflow.com/questions/2474015/getting-the-index-of-the-returned-max-or-min-item-using-max-min-on-a-list values = [3,6,1,5] in 阅读全文

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

2024年1月23日

CentOS 设置DNS

摘要: 修改对应网卡的DNS的配置文件 vi /etc/resolv.conf 修改以下内容 nameserver 8.8.8.8 #google域名服务器 nameserver 8.8.4.4 #google域名服务器 REF: http://blog.csdn.net/iamfafa/article/d 阅读全文

posted @ 2024-01-23 18:04 norsd 阅读(4) 评论(0) 推荐(0) 编辑

2024年1月9日

Linux Centos 确定端口被占用

摘要: 在终端窗口输入 netstat -tln | grep + 被占用的端口命令 netstat -tln netstat -tln | grep 9090 输入lsof -i :+被占端口命令,回车后可查看端口被哪个进程占用 lsof -i:9090 REF: https://blog.csdn.ne 阅读全文

posted @ 2024-01-09 18:13 norsd 阅读(20) 评论(0) 推荐(0) 编辑

2023年12月28日

Python datetime timezone 各种操作

摘要: 1.替换timezone,不会改变时间 datetimeInstance.replace(tzinfo=timezone.utc) 2.创建本地timezone zoneLocal = dateutil.tz.tzlocal() 3.调整时区 datetimeInstance.astimezone( 阅读全文

posted @ 2023-12-28 16:04 norsd 阅读(5) 评论(0) 推荐(0) 编辑

上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 45 下一页

导航