在conf/setting.xml文件的mirrors中添加以下内容

<mirror>
  <id>AliMaven</id>
  <name>aliyun maven</name>
  <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  <mirrorOf>central</mirrorOf>        
</mirror>
阅读全文 »

RocketMQ部署

官方文档

http://rocketmq.apache.org/docs/quick-start/

历史版本

https://archive.apache.org/dist/rocketmq/

中文文档

https://github.com/apache/rocketmq/tree/master/docs/cn

最佳实践

https://github.com/apache/rocketmq/blob/master/docs/cn/best_practice.md

系统参数调优

https://github.com/apache/rocketmq/blob/master/distribution/bin/os.sh

阅读全文 »

《iOS应用逆向与安全之道》

微信读书可阅读

本文是阅读本书的笔记

阅读全文 »

The master has failed more times than the beginner has tried.

阅读全文 »

关闭Win10自带的Python别名

  1. 设置
  2. 应用
  3. 应用和功能
  4. 应用执行别名
  5. python.exepython3.exe关掉
  6. 检查explorer %USERPROFILE%\AppData\Local\Microsoft\WindowsApps
阅读全文 »

下载脚本

将iterm2-send-zmodem.sh & iterm2-recv-zmodem.sh放到/usr/local/bin/

git clone https://github.com/huyuwei1996/iterm2-zmodem.git
cd iterm2-zmodem
cp *.sh /usr/local/bin
阅读全文 »

mysql8.0客户端连接报错

原因: caching_sha2_password, 是mysql8.0的一个新特性, 默认使用该身份认证插件进行加密. 但是一些客户端, 诸如sequel pro, Navicat 不支持这种插件, 这个时候就会出现如上错误.

阅读全文 »