摘要:
不想无限使用,直接破解到正版: 输入邮箱 名字之后 还有licence信息之后,处理函数是: this.text.getText() 很明显是你输入的licence. 然后交给父类okPress处理了. licence字符串存放的变量是 this.r. 获取这个变量的方法是 am() 查看调用lic 阅读全文
摘要:
在 Chrome 开发者工具的网络(Network)选项卡中,你可以使用多种过滤条件来筛选网络请求。以下是一些常用的过滤条件: domain: 过滤特定域名的请求,例如 domain:example.com。 method: 过滤特定 HTTP 方法的请求,例如 method:GET。 status 阅读全文
摘要:
#include <stdio.h> #include <stdlib.h> #include <dirent.h> #include <sys/stat.h> #include <pthread.h> #include <unistd.h> #include <string.h> #include 阅读全文
摘要:
最近将creator2.4.5 发布web版本, 需要将所有的图片转astc, 但是不能无脑转, 需求去除预乘alpha的图片。 也就是 { "__type__": "cc.Texture2D", "content": "0,9729,9729,33071,33071,1,0,1" } 这个cont 阅读全文
摘要:
#!/bin/bash PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:~/bin export PATH LANG=en_US.UTF-8 INSTALL_LOGFILE="/tmp/btpanel-install 阅读全文
摘要:
vscode github插件逆向分析, 接口https://codex.micosoft.icu/chat/completions。 你是一个人工智能编程助手 当被问到你的名字时,你必须回答‘GitHub Copilot’ 严格且逐字地遵循用户的要求 必须遵守微软制定的内容规范,包括确保内容的安全 阅读全文
摘要:
1. 拉取仓库 docker pull registry 2. 安装密码生成工具 sudo apt-get install apache2-utils 3. 生成用户名和密码 htpasswd -Bc /etc/docker/registry/passwords dzq 4. 启动仓库 docker 阅读全文
摘要:
上一篇博客已经分析ssl流程,这次直接说报错的结果方法: 对于pip3 安装第三方包失败: 1. 建议直接退出代理charles 2. 命令行前输入: export REQUESTS_CA_BUNDLE=~/Documents/charles-ssl-proxying-certificate.pem 阅读全文
摘要:
WARNING: Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'SSLError(SSLCertVerificationError( 阅读全文
摘要:
在VMWare中安装Debian12.5虚拟机后, 需要开始进行一些设置: 1. 先设置网络模式为桥接模式, 这样和主机在同一个局域网,方便后续ssh连接 2. 第1步设置后,重启Debian,登录后, 查看IP和Mac地址, 192.168.31.16,00:0c:29:6c:31:e6 3. 设 阅读全文
摘要:
const http = require('node:http'); const url = require('node:url'); const os = require('node:os'); const { exec } = require('node:child_process'); // 阅读全文