上一页 1 2 3 4 5 6 ··· 11 下一页
摘要: 在生产环境中测试 发现程序无法运行,所以要分析一下 ./mentester: /lib/libtinfo.so6: no uersion information available (required by ,/mentester) ./mentester' /lib/libncursesso.b: 阅读全文
posted @ 2023-11-08 22:02 scott_h 阅读(73) 评论(0) 推荐(0) 编辑
摘要: //1.回滚到上一次版本 git reset --hard HEAD^ //2. 同步到远程 master,使之 生效 git push -f https://www.runoob.com/git/git-reset.html $ git reset HEAD^ # 回退所有内容到上一个版本 $ g 阅读全文
posted @ 2023-11-07 15:16 scott_h 阅读(75) 评论(0) 推荐(0) 编辑
摘要: 第8章 使用通配符过滤 LIKE操作符 百分号(%)通配符 (匹配多个字符, 类似?) SELECT * FROM students WHERE email LIKE '%@163.com'; - 下划线(_)通配符 (匹配单个字符, 类似*) SELECT * FROM students WHER 阅读全文
posted @ 2023-11-04 18:26 scott_h 阅读(33) 评论(0) 推荐(0) 编辑
摘要: 迁移本地git到远程, 可以保留提交记录, 但是没有分支,这个可以自己下载分支code,再提交所有分支到new git。 //或者保留 所有diff 或者commit 文件 参考 https://blog.csdn.net/github_38336924/article/details/118544 阅读全文
posted @ 2023-11-04 15:45 scott_h 阅读(103) 评论(0) 推荐(0) 编辑
摘要: 参考 https://blog.csdn.net/u014470361/article/details/81512330 终端显示字体背景和字体颜色等使用用法 可输入以下指令查看其使用方法 ```bash man console_codes ``` ```t 在命令行下能产生五颜六色的字体和图案,只 阅读全文
posted @ 2023-09-05 16:14 scott_h 阅读(251) 评论(0) 推荐(0) 编辑
摘要: https://zhuanlan.zhihu.com/p/139007418 ``` | 函数成员 | 入参 | 出参 | 返回值 | 功能 | | | | | | | | transfer | cntlr:结构体指针,核心层I2C控制器。msgs:结构体指针,用户消息。count:uint16_t 阅读全文
posted @ 2023-08-24 10:45 scott_h 阅读(528) 评论(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 阅读(1407) 评论(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 阅读(431) 评论(0) 推荐(0) 编辑
摘要: 转自 "gaio小记" "gaio项目" [问题的提出] (https://github.com/golang/go/issues/15735​) 此链接是集中讨论这个问题的github issue。 使用golang开发一个网络服务器,通常的流程是: 如果采用非阻塞+Reactor,或非阻塞+Pr 阅读全文
posted @ 2020-04-03 11:53 scott_h 阅读(426) 评论(0) 推荐(0) 编辑
摘要: "epoll 的 Edge Trigger 和 Level Trigger 理解" 阅读全文
posted @ 2020-04-03 10:41 scott_h 阅读(535) 评论(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 阅读(112) 评论(0) 推荐(0) 编辑
摘要: https://www.w3resource.com/sqlite/sqlite select query statement.php 阅读全文
posted @ 2019-11-18 19:19 scott_h 阅读(175) 评论(0) 推荐(0) 编辑
摘要: 判断数据库是否存在, 表格式是否正确(版本更新时,很重要) 数据库更新,可以增加table_version 来进行判断 =================== 阅读全文
posted @ 2019-10-16 15:06 scott_h 阅读(1911) 评论(0) 推荐(1) 编辑
摘要: Navicat text 不仅做了分页查询, 显示 还自带数据 导入,导出 工具(支持多种格式) 导出csv, 100W个数据也才2min 导出也可以指定数据begin~ end, 比如10000W 可以分批次 , 每次1000W, but 领导们很喜欢 用excel 打开数据(习惯了 筛选,隐藏功 阅读全文
posted @ 2019-10-16 12:27 scott_h 阅读(542) 评论(0) 推荐(0) 编辑
摘要: mod goland 阅读全文
posted @ 2019-10-16 00:24 scott_h 阅读(997) 评论(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 阅读(197) 评论(0) 推荐(0) 编辑
摘要: sqlite 阅读全文
posted @ 2019-10-15 10:40 scott_h 阅读(2549) 评论(0) 推荐(0) 编辑
摘要: https://docs.microsoft.com/zh cn/dotnet/csharp/language reference/tokens/interpolated 阅读全文
posted @ 2019-10-11 16:50 scott_h 阅读(127) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 11 下一页