上一页 1 2 3 4 5 6 ··· 11 下一页
摘要: windows python默认安装路径 C:\Users\test\AppData\Roaming\Python\Python312 Scripts 这个目录有软件 - pip - importdata.exe - HikyuuTDX.exe site-packages 这个目录有pip下载的包 阅读全文
posted @ 2024-10-21 20:13 scott_h 阅读(118) 评论(0) 推荐(0)
摘要: anaconda中自带python, 如果你之前安装了python,那么如何防止冲突,或者指定想要的python 版本呢? windows 方法1 在系统环境变量中, [系统]或者[用户]path设置 对应的路径 默认python安装包路径(默认安装) C:\ProgramData\anaconda 阅读全文
posted @ 2024-10-17 01:05 scott_h 阅读(671) 评论(0) 推荐(0)
摘要: 包协议 Http,TCP,UDP,这几个, 游戏是tcp 加心跳包,和http多一些 点击capture filter 新增 ip host=47.96.185.162 之前一个个比对,查看服务器地址,如果游戏是杭州的, 那服务器机房在杭州 阿里巴巴,就没错。 https://site.ip138. 阅读全文
posted @ 2024-09-02 00:09 scott_h 阅读(179) 评论(0) 推荐(0)
摘要: https://tangqixiang.blog.csdn.net/article/details/131242849 参考书籍:《Memory Systems - Cache, DRAM, Disk》 阅读全文
posted @ 2024-08-22 16:26 scott_h 阅读(59) 评论(0) 推荐(0)
摘要: https://maxwell.blog.csdn.net/article/details/136333139#comments_32057350 阅读全文
posted @ 2024-08-22 16:07 scott_h 阅读(32) 评论(0) 推荐(0)
摘要: 谈为员工创造一个相对公平、平等的工作环境的重要性 https://www.jianshu.com/p/4d2d374d518b 公平、平等的工作环境是每个员工都希望自己所在的单位具备的基本特点之一, 公平、平等的工作环境可以使员工踏实工作, 相信自己付出多少就会有多少回报, 相信自身价值在工作单位能 阅读全文
posted @ 2024-04-26 23:05 scott_h 阅读(167) 评论(0) 推荐(0)
摘要: 重点都在intel EDS中 EDAC https://www.kernel.org/doc/html/v4.14/driver-api/edac.html x86架构—MCA https://www.codenong.com/cs106476885/ 【x86架构】MCA https://blog 阅读全文
posted @ 2024-04-26 22:17 scott_h 阅读(824) 评论(0) 推荐(0)
摘要: 各个语言算法库,值得借鉴一下 The Algorithms Open Source resource for learning Data Structures & Algorithms and their implementation in any Programming Language http 阅读全文
posted @ 2024-04-26 22:10 scott_h 阅读(12) 评论(0) 推荐(0)
摘要: 因为PL 串口驱动,对win10,win11支持不够好。 在网上找了很久,确认win10+win11 可用的串口驱动, (需要删除之前驱动,然后手动导入安装驱动) Prolific PL2303 driver v3.3.2.102 (2008-24-09) Win8_x64_x86.7z 阅读全文
posted @ 2024-03-27 16:00 scott_h 阅读(363) 评论(0) 推荐(0)
摘要: https://semiengineering.com/five-key-changes-coming-with-ddr5-dimms/ On July 14th of last year, JEDEC announced the publication of the DDR5 SDRAM stan 阅读全文
posted @ 2024-03-05 15:15 scott_h 阅读(81) 评论(0) 推荐(0)
摘要: 查看 Linux 发行版名称和版本号的 8 种方法 via https://zhuanlan.zhihu.com/p/36253769 via: https://www.2daygeek.com/check-find-linux-distribution-name-and-version/ 作者:M 阅读全文
posted @ 2023-11-13 17:10 scott_h 阅读(68) 评论(0) 推荐(0)
摘要: 0. 选用 VMWare 个人免费版player 配置网络 个人免费版player 网络连接 1.配置成=》【桥接模式】 2.勾选【复制网络连接状态】 ps. workstation 自带VMTools,可以拖拽,移动文件。 1. 安装samba 1.更新当前软件。 sudo apt-get upg 阅读全文
posted @ 2023-11-09 19:29 scott_h 阅读(61) 评论(0) 推荐(0)
摘要: 在生产环境中测试 发现程序无法运行,所以要分析一下 ./mentester: /lib/libtinfo.so6: no uersion information available (required by ,/mentester) ./mentester' /lib/libncursesso.b: 阅读全文
posted @ 2023-11-08 22:02 scott_h 阅读(182) 评论(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 阅读(87) 评论(0) 推荐(0)
摘要: 第8章 使用通配符过滤 LIKE操作符 百分号(%)通配符 (匹配多个字符, 类似?) SELECT * FROM students WHERE email LIKE '%@163.com'; - 下划线(_)通配符 (匹配单个字符, 类似*) SELECT * FROM students WHER 阅读全文
posted @ 2023-11-04 18:26 scott_h 阅读(47) 评论(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 阅读(132) 评论(0) 推荐(0)
摘要: https://zhuanlan.zhihu.com/p/139007418 ``` | 函数成员 | 入参 | 出参 | 返回值 | 功能 | | | | | | | | transfer | cntlr:结构体指针,核心层I2C控制器。msgs:结构体指针,用户消息。count:uint16_t 阅读全文
posted @ 2023-08-24 10:45 scott_h 阅读(883) 评论(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 阅读(1516) 评论(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 阅读(461) 评论(0) 推荐(0)
摘要: 转自 "gaio小记" "gaio项目" [问题的提出] (https://github.com/golang/go/issues/15735​) 此链接是集中讨论这个问题的github issue。 使用golang开发一个网络服务器,通常的流程是: 如果采用非阻塞+Reactor,或非阻塞+Pr 阅读全文
posted @ 2020-04-03 11:53 scott_h 阅读(454) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 ··· 11 下一页