摘要: `git config --global --unset http.proxy git config --global --unset https.proxy 解决方案:cmd下命令执行 ipconfig/flushdns 清理dns缓存 ` https://blog.csdn.net/weixin 阅读全文
posted @ 2022-04-03 11:32 Johnsonbug 阅读(301) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/RUIMENG061511332/article/details/90634242 https://www.cnblogs.com/renshengruxi/p/11095167.html 阅读全文
posted @ 2022-03-29 14:48 Johnsonbug 阅读(69) 评论(0) 推荐(0) 编辑
摘要: 1 首先安装 brew 参考: https://blog.csdn.net/yuanshangshenghuo/article/details/106599836 2 然后配置 .bash_profile中添加 export LDFLAGS="-L/usr/local/opt/openssl/lib 阅读全文
posted @ 2022-03-29 01:59 Johnsonbug 阅读(188) 评论(0) 推荐(0) 编辑
摘要: #二分法 def erfenfa(lis,target): start,end=0,len(lis)-1 while True: if end-start<=1: if target==lis[start]: return start elif target==lis[end]: return en 阅读全文
posted @ 2022-03-08 00:56 Johnsonbug 阅读(18) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/111testing/p/11218400.html 阅读全文
posted @ 2022-01-20 18:07 Johnsonbug 阅读(10) 评论(0) 推荐(0) 编辑
摘要: mysql 学习记录 2022年1月20日回顾 union 和 union all 区别, union是会过滤和重新排序的,union all 能够合并但不去重 exists 和 not exists 表示 存在或者不存在,适用于替代 in select * from table t1 where 阅读全文
posted @ 2022-01-20 17:07 Johnsonbug 阅读(20) 评论(0) 推荐(0) 编辑
摘要: python常用配置--持续更新 一、更换源方法 pypi 镜像每 5 分钟同步一次。 临时使用 pip install -i https://pypi.tuna.tsinghua.edu.cn/simple some-package 注意,simple 不能少, 是 https 而不是 http 阅读全文
posted @ 2022-01-18 15:25 Johnsonbug 阅读(24) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/tianlangls/article/details/102810463 后续归纳总结 阅读全文
posted @ 2022-01-18 01:05 Johnsonbug 阅读(8) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/chengfengchi/p/11606046.html 后面补充 阅读全文
posted @ 2022-01-18 01:03 Johnsonbug 阅读(2) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/williamjie/p/9660427.html redis性能优化 一、redis 查看性能命令 info: server : 一般 Redis 服务器信息,包含以下域: redis_version : Redis 服务器版本 redis_git_ 阅读全文
posted @ 2022-01-18 01:01 Johnsonbug 阅读(495) 评论(0) 推荐(0) 编辑