摘要: 新版的ida弃用了idc.find_binary推荐使用ida_bytes.bin_search方法。 ida_bytes.bin_search需要和ida_bytes.parse_binpat_str配合使用。 ida_bytes.parse_binpat_str的功能类似于对正则表达式进行编译。 阅读全文
posted @ 2024-07-04 09:42 ComputerPlayerJs 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 根据官方文档,只需要在系统的环境变量中设置http_proxy和https_proxy. Question: How do I configure my company proxy in pyenv for windows? Answer: Set the http_proxy or https_p 阅读全文
posted @ 2024-01-18 10:07 ComputerPlayerJs 阅读(122) 评论(0) 推荐(0) 编辑
摘要: #log4cplus 动态库版本 #log4cplusS 静态库版本 #loggingserver server应用程序 阅读全文
posted @ 2023-04-04 16:49 ComputerPlayerJs 阅读(15) 评论(0) 推荐(0) 编辑
摘要: KB2533623现在已经无法下载但是包含KB4457144中。 下载地址: https://www.catalog.update.microsoft.com/Search.aspx?q=KB4457144 阅读全文
posted @ 2022-08-29 15:25 ComputerPlayerJs 阅读(1886) 评论(0) 推荐(1) 编辑
摘要: 首先确保安装好WSL2和DockerDesktop,本文章不讨论这个。 在DockerDesktop的Setting->Resources->Proxy 设置好代理,这样能够加快镜像的拉取速度。 http://127.0.0.1:xxxx https://127.0.0.1:xxxx 使用如下命令安 阅读全文
posted @ 2022-08-13 17:13 ComputerPlayerJs 阅读(527) 评论(0) 推荐(0) 编辑
摘要: 需要附加依赖项ntdll.lib 需要导入NtQuerySystemInformation等相关函数的定义。这里使用了ProcessHacker的phnt库。 Github ProcessHacker phnt 代码如下: #include <iostream> #include <phnt_win 阅读全文
posted @ 2022-07-16 13:49 ComputerPlayerJs 阅读(217) 评论(0) 推荐(0) 编辑
摘要: 1.安装 composer require dingo/api 2.发布配置: php artisan vendor:publish 选择DingoApi发布. 3.向.env文件添加配置 (1)项目环境 API_STANDARDS_TREE = prs x:本地开发私有环境 prs:未对外公布,单 阅读全文
posted @ 2019-05-13 15:00 ComputerPlayerJs 阅读(477) 评论(0) 推荐(0) 编辑
摘要: 1.安装easywechat composer require "overtrue/laravel-wechat" 2.文档 EasyWhchat官方文档 阅读全文
posted @ 2019-05-13 14:36 ComputerPlayerJs 阅读(1396) 评论(0) 推荐(0) 编辑
摘要: 定义协同程序: 开始协同程序: 阅读全文
posted @ 2019-03-18 16:48 ComputerPlayerJs 阅读(299) 评论(0) 推荐(0) 编辑
摘要: 1 绘制文本 fillText(string,x,y,maxWidth) //填充试绘制文本 strokeText(string,x,y,maxWidth) 画线试绘制文本 设置字体样式: context.font 文字的字体样式 可选属性: font-style 字体样式 font-variant 阅读全文
posted @ 2019-03-18 09:42 ComputerPlayerJs 阅读(238) 评论(0) 推荐(0) 编辑