LATEST TRANSMISSIONS
ENCRYPTED // PUBLIC KEY DETECTED
Understanding 'Preferred IP': Why It's Essential for Network Circumvention
A deep dive into the concept of Preferred IP (IP Picking), how it leverages Cloudflare's Anycast network, and why it is a game-changer for bypassing network censorship and improving connection stability.
Argo Tunnel x Xray (VLESS+WS) x v2rayNG Setup Guide
A comprehensive guide on setting up a fixed Argo Tunnel with Xray (VLESS+WebSocket) and v2rayNG for a secure and stable proxy connection.
科学上网软件与协议:实用指南
对现代科学上网平台(Sing-box、V2Ray/Xray、Clash Meta/Clash、Shadowsocks、Tor、Surge、Hiddify)及主要协议(VMess、VLESS、Trojan、Hysteria、WireGuard、SOCKS5/HTTP(S)、Reality/XTLS)的实用概览。
Circumvention Software and Protocols: A Practical Guide
A comprehensive introduction to modern circumvention platforms (Sing-box, V2Ray/Xray, Clash Meta/Clash, Shadowsocks, Tor, Surge, Hiddify) and the major protocols (VMess, VLESS, Trojan, Hysteria, WireGuard, SOCKS5/HTTP(S), Reality/XTLS).
Using Ollama Behind a Proxy
Learn how to configure Ollama to work seamlessly behind a proxy, whether you're using it directly on your system or within a Docker container.
Node Axios with a Proxy
Want to send http request via a proxy? Axios got you covered. import axios from 'axios'; const proxy = { protocol: 'http', host: '127.0.0.1', port: 7890, auth: { username: 'username', …
Proxy Config for Git
Accessing GitHub becoming harder in less developed country these days, you might need a proxy to do that. Here is how to configure proxy for git. Please edit ~/.gitconfig and add the following lines: …
给 APT 附魔
编辑配置文件 sudo vim /etc/apt/apt.conf.d/proxy.conf 写入配置 Acquire::http::Proxy "http://user:[email protected]:port/"; Acquire::https::Proxy "http://user:[email protected]:port/"; 或者 Acquire { HTT…