手机 QQ 和微信内置浏览器使用 Chrome 进行调试
13访客 76字under Website Notes of Programming
前置条件使用数据线连接电脑和手机,并在手机设置内开启开发者模式的 USB 调试微信启用浏览器调试地址http://debugxweb.qq.com/?inspector=trueQQ 启用浏览器调试地址http://debugx5.qq.com?inspector=trueChrome 调试地...
风云瞬息,气候恒驻。
under Website Notes of Programming
前置条件使用数据线连接电脑和手机,并在手机设置内开启开发者模式的 USB 调试微信启用浏览器调试地址http://debugxweb.qq.com/?inspector=trueQQ 启用浏览器调试地址http://debugx5.qq.com?inspector=trueChrome 调试地...
under Windows
本指南同样适用于 Windows 10 无损升级至 Windows 11,且可绕过 TPM 2.0 校验(Windows 11 24H2 测试有效)1. 下载访问微软官方下载 Windows 11 ISO 页面:https://www.microsoft.com/zh-cn/software-...
under Notes of Programming
git reflog找到丢失的 commit 并将前面的哈希值复制出来,通常是 8 个字符的哈希值。可以输入 q 回到命令行git checkout 哈希值跳转至丢失的 commitgit reset --soft HEAD~1撤回当前 commit,将更改恢复为可 commit 状态git ...
under Notes of Programming
以下方法可使在 Clone 或 Push Github 上的项目时通过代理执行;同时其他诸如对 Gitee 进行 Git 操作则不会通过代理git config --global http.https://github.com.proxy http://127.0.0.1:7890 git c...