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

2022年8月26日

CTP RegisterFront 直接崩溃(Access violation writing location)的原因

摘要: 使用CTP 6.3.8 运行到RegisterFront 直接崩溃 写入数据到地址0x0遭遇权限问题。(地址0x0肯定没法写入啊…) 问题是写入的地址格式不对: 我写的是 “123.45.67.89:12345” 然后就崩溃了…… 正确写法是类似 “tcp://123.45.67.89:12345” 阅读全文

posted @ 2022-08-26 21:58 norsd 阅读(3) 评论(0) 推荐(0) 编辑

2022年7月19日

Linux 如何改变输出的内容

摘要: auto nLineCount = _vtInfo.size(); for (auto str : _vtInfo) { cout << str.c_str() << endl; } cout << "Connect Count:" << _mdAF101.GetConnectCount() << 阅读全文

posted @ 2022-07-19 23:47 norsd 阅读(3) 评论(0) 推荐(0) 编辑

2022年4月22日

MongoDb Official c# Driver 如何序列化 Struct

摘要: 配合2.x版本的驱动使用 https://stackoverflow.com/questions/26788855/how-do-you-serialize-value-types-with-mongodb-c-sharp-serializer public class BasicStructSer 阅读全文

posted @ 2022-04-22 21:54 norsd 阅读(6) 评论(0) 推荐(0) 编辑

2022年4月20日

Python List 对象的 append 和 extend 的区别

摘要: 1.append: Appends object at end x = [1, 2, 3] x.append([4, 5]) x = [1, 2, 3, [4, 5]] 2. extend: Extends list by appending elements from the iterable x 阅读全文

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

2022年4月19日

Linux Centos yum/rpm 设置代理

摘要: yum 设置代理: vim /etc/yum.conf 添加形如: proxy = http://user:pass@ip:port rpm 设置代理 sudo rpm -Uvh https://xxxxx.rpm --httpproxy ip --httpport port reference: 阅读全文

posted @ 2022-04-19 17:47 norsd 阅读(6) 评论(0) 推荐(0) 编辑

2022年4月8日

TemplateText 书写工具类时必须注意的问题

摘要: 在TemplateText中 当制作一个工具TemplateText中时 整个TemplateText 所有的输出都应该包在 <#+ #> 中 类似如下是错误的,将报错: A template containing a class feature must end with a class feat 阅读全文

posted @ 2022-04-08 00:04 norsd 阅读(2) 评论(0) 推荐(0) 编辑

2022年4月3日

Numpy 操作矩阵

摘要: 复制矩阵 m2 = m1.copy m2 = m1[:,:] 复制矩阵的部分Row m[1:] #取第1行之后所有 m[-2:] #取最后第2行之后所有(最后第2行和最后第1行) m[1:3] #取第1行到第3行之前(不包括第3行) m[3:-1] #取第3行到最后1行之前(不包括最后1行) m[: 阅读全文

posted @ 2022-04-03 17:00 norsd 阅读(2) 评论(0) 推荐(0) 编辑

2022年2月15日

windows 10使用 map network drive, 但是Visual Studio 中的Command却无法识别的问题

摘要: 原因: windows 10 在资源管理器中创建的是 当时的 Identity(也就是名字不是Administrator的用户), Visual Studio 使用的是 Administrator (个人设置) 所以Visual Studio 中使用 BuildEvent 无法识别 windows 阅读全文

posted @ 2022-02-15 20:47 norsd 阅读(2) 评论(0) 推荐(0) 编辑

2022年1月23日

C++ Class 构造时由于LazyMode 和 Copy Constructor导致的问题

摘要: 1.先看源代码 class: class Info { public: Info(string a_strName) { _name = string(a_strName); } ~Info() { if (NULL != _nbytes) { delete[] _nbytes; _nbytes = 阅读全文

posted @ 2022-01-23 16:27 norsd 阅读(2) 评论(0) 推荐(0) 编辑

2021年12月17日

C# Desinger 忽略Property

摘要: reference: https://stackoverflow.com/questions/2598733/how-do-i-get-the-winform-designer-to-totally-ignore-a-property-on-a-custom-contr I think you ca 阅读全文

posted @ 2021-12-17 10:49 norsd 阅读(2) 评论(0) 推荐(0) 编辑

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

导航