win11 卸载 小组件
1winget uninstall "windows web experience pack"
mac 查看cpu具体型号
1sysctl machdep.cpu.brand_string
mac 百度输入法 拼音 总是输入2行 如何解决-
选择外观选项卡勾选单行皮肤模式
mysql 数据恢复 无bin_log 无备份
https://github.com/zbdba/db-recovery 12345678FROM golang:1.19 as builderENV GO111MODULE=onENV GOPROXY=https://goproxy.ioCOPY ./db-recovery /appWORKDIR /appRUN make
mysql8 小内存 100m左右运行
1234567[mysqld]performance_schema_max_table_instances=400 #设置效果不明显table_definition_cache=400performance_schema=off #效果明显table_open_cache=64innodb_buffer_pool_chunk_size=64M #效果不明显innodb_buffer_pool_size=64M #效果不明显
yii2 yii3 框架 无法执行composer 无法加载资源 asset
https://www.asset-packagist.cn/ 使用阿里云composer镜像 使用asset-packagist镜像 1234567"repositories": { { "type": "composer", "url": "https://asset-packagist.cn" }}
mac homebrew无法 安装php7.3
https://blog.51cto.com/u_13502462/5071269 1vim /usr/local/Homebrew/Library/Taps/homebrew/homebrew-core/Formula/php@7.3.rb 注释 disable 那一行 重新下载
nvm
https://github.com/nvm-sh/nvm https://blog.csdn.net/songisgood/article/details/121230371 https://blog.csdn.net/qq_22186119/article/details/123255420 安装123456789101. 码云下载git clone https://gitee.com/mirrors/nvm2. 修改`install.sh`第75行NVM_SOURCE_URL="https://gitee.com/mirrors/nvm.git"3. 执行安装./install.sh _git4. 根据使用的命令行把环境变量写入 下载镜像也可以写入环境变量 1NVM_NODEJS_ORG_MIRROR=https://registry.npmmirror.com/-/binary/node 1nvm install 16 设置默认版本1nvm alias default 10 1234567curl -o- https://raw.githubu...
git 设置用户名密码
12git config --global user.name “你的用户名”git config --global user.email “你的邮箱”
vue 不同路由 相同组件 页面刷新数据不更新
12345watch: { '$route'(to, from) { this.init() } },