Here's what I did to get things working.
Yep, over at: https://developer.apple.com
| # 你可以从该 URL 下载这个配置文件: http://surge.run/config-example/ios.conf | |
| # 用编辑器编辑后,再通过 iTunes, URL, AirDrop 或者 iCloud Drive 复制回 iOS 设备 | |
| # Version 2.0 | |
| [General] | |
| # 日志等级: warning, notify, info, verbose (默认值: notify) | |
| loglevel = notify | |
| # 跳过某个域名或者 IP 段,这些目标主机将不会由 Surge Proxy 处理。(在 macOS | |
| # 版本中,如果启用了 Set as System Proxy, 那么这些值会被写入到系统网络代理 | |
| # 设置中.) |
| # You can download this config from: http://surge.run/config-example/ios.conf | |
| # Edit with your computer and copy back to iOS device via iTunes, URL, AirDrop | |
| # or iCloud Drive | |
| # Version 2.0 | |
| [General] | |
| # Log level: warning, notify, info, verbose (Default: notify) | |
| loglevel = notify | |
| # Skip domain or IP range. These hosts will not be processed by Surge Proxy. | |
| # (In macOS version when Set as System Proxy enabled, these hosts will be |
Here's what I did to get things working.
Yep, over at: https://developer.apple.com
简明 Python 教程: http://woodpecker.org.cn/abyteofpython_cn/chinese/
一开始通读一遍这个很不错,是最简单明确的 Python 教程,最适合快速了解。
CSS for readability and Chinese:
Tencent (腾讯):
If you are interested, see also my previous setup.
I use a Mid 2013 11-inch MacBook Air at home.
I use Logitech Performance MX mice with all three of them, though for the last one is usually just the trackpad. I have recently started using a Logitech MX Master and decided to only buy that from now on.
| #!/usr/bin/env bash | |
| repo=$1 | |
| rm -fr /tmp/gpm \ | |
| && mkdir /tmp/gpm \ | |
| && cd /tmp/gpm \ | |
| && curl -#L https://github.com/$repo/tarball/master \ | |
| | tar zx --strip 1 \ | |
| && make install |