Skip to content

Instantly share code, notes, and snippets.

View thuliu-yt16's full-sized avatar
🎯
Focusing

Yingtian Liu thuliu-yt16

🎯
Focusing
  • Tsinghua University, Beijing
View GitHub Profile
@maboloshi
maboloshi / README.md
Last active March 29, 2025 14:24
[Mac下配置Aria2] #macOS #aria2

Mac下配置Aria2

安装和设置 Aria2

# 使用 Homebrew 安装 aria2
brew install aria2

# 创建配置文件aria2.conf和空对话文件aria2.session
mkdir ~/.aria2 && cd ~/.aria2
touch aria2.conf
@chenshengzhi
chenshengzhi / git_ssh_proxy.md
Last active April 15, 2025 04:37
git ssh 代理设置

仅为 GitHub 设置代理

git 代理

设置 git config --global http.https://github.com.proxy socks5://127.0.0.1:1086
设置完成后, ~/.gitconfig 文件中会增加以下条目:

[http "https://github.com"]
    proxy = socks5://127.0.0.1:1086