上一页 1 2 3 4 5 6 ··· 10 下一页
摘要: 迁移本地git到远程, 可以保留提交记录, 但是没有分支,这个可以自己下载分支code,再提交所有分支到new git。 //或者保留 所有diff 或者commit 文件 参考 https://blog.csdn.net/github_38336924/article/details/118544 阅读全文
posted @ 2023-11-04 15:45 scott_h 阅读(109) 评论(0) 推荐(0) 编辑
摘要: https://zhuanlan.zhihu.com/p/139007418 ``` | 函数成员 | 入参 | 出参 | 返回值 | 功能 | | | | | | | | transfer | cntlr:结构体指针,核心层I2C控制器。msgs:结构体指针,用户消息。count:uint16_t 阅读全文
posted @ 2023-08-24 10:45 scott_h 阅读(706) 评论(0) 推荐(0) 编辑
摘要: How to build 参考 OpenSSL文件中 - INSTALL.md - NOTES-WINDOWS.md - NOTES-UNIX.md - NOTES-ANDROID.md 1. 下载 - OpenSSL https://github.com/openssl/openssl/tags 阅读全文
posted @ 2022-04-11 18:30 scott_h 阅读(1440) 评论(0) 推荐(0) 编辑
摘要: VC MSC 1.0 _MSC_VER == 100 MSC 2.0 _MSC_VER == 200 MSC 3.0 _MSC_VER == 300 MSC 4.0 _MSC_VER == 400 MSC 5.0 _MSC_VER == 500 MSC 6.0 _MSC_VER == 600 MSC 阅读全文
posted @ 2020-08-14 16:35 scott_h 阅读(437) 评论(0) 推荐(0) 编辑
摘要: 转自 "gaio小记" "gaio项目" [问题的提出] (https://github.com/golang/go/issues/15735​) 此链接是集中讨论这个问题的github issue。 使用golang开发一个网络服务器,通常的流程是: 如果采用非阻塞+Reactor,或非阻塞+Pr 阅读全文
posted @ 2020-04-03 11:53 scott_h 阅读(438) 评论(0) 推荐(0) 编辑
摘要: "epoll 的 Edge Trigger 和 Level Trigger 理解" 阅读全文
posted @ 2020-04-03 10:41 scott_h 阅读(545) 评论(0) 推荐(0) 编辑
摘要: Windows Terminal 阅读全文
posted @ 2019-12-02 12:04 scott_h 阅读(199) 评论(0) 推荐(0) 编辑
摘要: https://jingyan.baidu.com/article/d5a880eb74824013f147cca4.html 阅读全文
posted @ 2019-11-25 18:31 scott_h 阅读(113) 评论(0) 推荐(0) 编辑
摘要: https://www.w3resource.com/sqlite/sqlite select query statement.php 阅读全文
posted @ 2019-11-18 19:19 scott_h 阅读(176) 评论(0) 推荐(0) 编辑
摘要: 判断数据库是否存在, 表格式是否正确(版本更新时,很重要) 数据库更新,可以增加table_version 来进行判断 =================== 阅读全文
posted @ 2019-10-16 15:06 scott_h 阅读(2010) 评论(0) 推荐(1) 编辑
摘要: Navicat text 不仅做了分页查询, 显示 还自带数据 导入,导出 工具(支持多种格式) 导出csv, 100W个数据也才2min 导出也可以指定数据begin~ end, 比如10000W 可以分批次 , 每次1000W, but 领导们很喜欢 用excel 打开数据(习惯了 筛选,隐藏功 阅读全文
posted @ 2019-10-16 12:27 scott_h 阅读(552) 评论(0) 推荐(0) 编辑
摘要: mod goland 阅读全文
posted @ 2019-10-16 00:24 scott_h 阅读(1010) 评论(0) 推荐(0) 编辑
摘要: 依赖 1.System.Data.SQLite 2.SqlKata 阅读全文
posted @ 2019-10-15 17:31 scott_h 阅读(167) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/tiancai/p/4591731.html C 中new和override是继承中经常用到的两个关键字,但是往往有时候容易把这两个关键字的作用搞混淆。 new C new关键字表示隐藏,是指加上new关键字的属性或函数将对本类和继承类隐藏基类的同名属 阅读全文
posted @ 2019-10-15 15:21 scott_h 阅读(205) 评论(0) 推荐(0) 编辑
摘要: sqlite 阅读全文
posted @ 2019-10-15 10:40 scott_h 阅读(2683) 评论(0) 推荐(0) 编辑
摘要: https://docs.microsoft.com/zh cn/dotnet/csharp/language reference/tokens/interpolated 阅读全文
posted @ 2019-10-11 16:50 scott_h 阅读(129) 评论(0) 推荐(0) 编辑
摘要: https://archive.codeplex.com/?p=timsort4net 117964 download archive https://codeplexarchive.blob.core.windows.net/archive/projects/timsort4net/timsort 阅读全文
posted @ 2019-10-10 10:24 scott_h 阅读(225) 评论(0) 推荐(0) 编辑
摘要: //using NationalInstruments.NI4882; //请将项目文件中的“AutoGenerateBindingRedirects”属性设置为true //https://www.cnblogs.com/zoro zero/p/5867320.html //NI4882_1850 阅读全文
posted @ 2019-10-09 17:36 scott_h 阅读(279) 评论(0) 推荐(0) 编辑
摘要: https://gerardnico.com/ide/notepad/replace https://notepad plus plus.org/community/topic/16787/find and replace using regular expression http://www.pn 阅读全文
posted @ 2019-09-12 11:54 scott_h 阅读(240) 评论(0) 推荐(0) 编辑
摘要: 面向对象,继承关系设计 阅读全文
posted @ 2019-07-22 11:25 scott_h 阅读(406) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 10 下一页
点击右上角即可分享
微信分享提示