你,将如何度过你的一生

Posted in 默认分类 | Comments Off on

追求的是幸福,得到的只有回忆。

Posted in 默认分类 | Comments Off on

生活(二零二四七)

很久很久没有好好打开博客写一篇博客了,打开博客写了一句话,然后去看了看域名和服务器到期时间,续了一年。

工作之后好像真的没有什么时间沉下心好好写点东西了,希望忙过这段时间好好休息一下调整状态。

Posted in 默认分类 | Comments Off on 生活(二零二四七)

Posted in 默认分类 | Comments Off on

无伤大雅

Posted in 默认分类 | Comments Off on

天地不仁,以万物为刍狗;

圣人不仁,以百姓为刍狗。

Posted in 默认分类 | Comments Off on

除夕子时雪,雪落已隔年。

Posted in 默认分类 | Comments Off on

新的开始

辞旧迎新吧

Posted in 默认分类 | Comments Off on 新的开始

近况

一个大浪打过来

是顺势冲浪

还是逆浪而行

略有微风

却看不清方向

拳头没有力量

就只有向水求教

大江大河

愿诸君万事胜意

Posted in 默认分类 | Comments Off on 近况

Mac terminal proxy

配置 Terminal(终端)使用 Clash 作为网络代理
在 terminal 分别输入如下 2 个命令:

> export http_proxy=http://localhost:7890
> export https_proxy=http://localhost:7890
测试结果:可成功从控制台访问 Google

➜  ~ curl https://www.google.com/
curl: (35) LibreSSL SSL_connect: SSL_ERROR_SYSCALL in connection to 127.0.0.1:7890
➜  ~ export http_proxy=http://localhost:7890
➜  ~ export https_proxy=http://localhost:7890
➜  ~ curl https://www.google.com/
<!doctype html><html itemscope="" itemtype....




如何取消终端中的配置
在 terminal 分别输入如下 2 个命令:

> unset http_proxy
> unset https_proxy
Posted in 默认分类 | Comments Off on Mac terminal proxy