2023年7月24日
摘要: 1.使用homebrew安装privoxy,但安装时报错: https://juejin.cn/post/6961616069941264415 homebrew 执行 brew update 报错 Error: homebrew-core is a shallow clone. To `brew 阅读全文
posted @ 2023-07-24 17:18 是谁啊? 阅读(24) 评论(0) 推荐(0) 编辑
  2023年4月21日
摘要: from: https://www.jianshu.com/p/87a5cca2a490 新版本的M1芯片运行模拟器报CocoaPods库(如:WechatOpenSDK报arm64错误)错误,是因为M1兼容问题,解决办法有两种如下:强烈推荐方法2 方法1:强制打开xcode对x86的支持,有缺点: 阅读全文
posted @ 2023-04-21 10:44 是谁啊? 阅读(313) 评论(0) 推荐(0) 编辑
  2023年3月9日
摘要: 新建~/.ssh/config文件,文件内容如下: Host * KexAlgorithms +diffie-hellman-group1-sha1 HostkeyAlgorithms +ssh-dss,ssh-rsa PubkeyAcceptedKeyTypes +ssh-dss,ssh-rsa 阅读全文
posted @ 2023-03-09 18:29 是谁啊? 阅读(46) 评论(0) 推荐(0) 编辑
  2023年3月7日
摘要: 在命令行中执行 python,也会提示“python 命令需要使用命令行开发者工具,你要现在安装该工具吗” 执行如下命令,将python命令给创建一个软链接到bin/python下即可解决。 sudo ln -s $(which python3) /usr/local/bin/python 如果还解 阅读全文
posted @ 2023-03-07 15:07 是谁啊? 阅读(1832) 评论(0) 推荐(0) 编辑
  2023年2月17日
摘要: 如果你电脑开了代理软件,Android studio 会自动跟随系统代理, 有时候即使你关闭了代理打包的时候还是会提示 连不上代理的错误, 下面提供两种解决方案, 第一种 如果你从来没主动设置过代理用这个 mac用户执行命令关闭Android studio的守护程序: pkill -f '.*Gra 阅读全文
posted @ 2023-02-17 09:28 是谁啊? 阅读(165) 评论(0) 推荐(0) 编辑
  2021年7月6日
摘要: nginx配置https,tomcat正常http接受nginx转发。nginx 代理https后,(java代码redirect地址)应用redirect https变成http情况类似http://2hei.net/mt/2010/02/request-getscheme-cannt-get-h 阅读全文
posted @ 2021-07-06 00:31 是谁啊? 阅读(687) 评论(0) 推荐(0) 编辑
  2021年6月25日
摘要: sed -i "s|enabled=1|enabled=0|g" /etc/yum/pluginconf.d/fastestmirror.conf mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backu 阅读全文
posted @ 2021-06-25 21:49 是谁啊? 阅读(64) 评论(0) 推荐(0) 编辑
  2021年2月2日
摘要: Postfix的邮件状态在日志中是:status=XXXXXX 一般来说Postfix的邮件状态有以下几种: sent 发送成功 deferred 延期发送 bounced 弹回 deferral 延期 reject 拒绝 在maillog中有这样部分内容: delay=1.5, delays=0. 阅读全文
posted @ 2021-02-02 11:36 是谁啊? 阅读(388) 评论(0) 推荐(0) 编辑
  2021年1月6日
摘要: private static double PI = 3.14159265358979324;public static double[] gcj02ToWgs(double lng, double lat) { double a = 6378245.0; // a: 卫星椭球坐标投影到平面地图坐标 阅读全文
posted @ 2021-01-06 00:39 是谁啊? 阅读(196) 评论(0) 推荐(0) 编辑
  2020年10月29日
摘要: Because of my work, I studied James 3.5 distributed version. In order to confirm how much concurrent users it can support under the existing hardware 阅读全文
posted @ 2020-10-29 07:48 是谁啊? 阅读(438) 评论(0) 推荐(0) 编辑