Skip to content

Instantly share code, notes, and snippets.

View powerball0x2a's full-sized avatar
:octocat:
Focusing

Zec powerball0x2a

:octocat:
Focusing
View GitHub Profile
@jason5ng32
jason5ng32 / surge.conf
Last active November 6, 2024 06:39
Surge Configs ( for 2.x )
[General]
loglevel = notify
skip-proxy = 127.0.0.1, 192.168.0.0/16, 10.0.0.0/8, 172.16.0.0/12, 100.64.0.0/10, localhost, *.local, ::ffff:0:0:0:0/1, ::ffff:128:0:0:0/1
bypass-tun = 192.168.0.0/16, 10.0.0.0/8, 172.16.0.0/12
# dns-server = 119.29.29.29,223.5.5.5,114.114.115.115
# external-controller-access = [email protected]:6155
# ipv6 = true
// REMEMBER TO CHANGE THE external-controller-access' PASSWORD
@guweigang
guweigang / git_toturial
Last active May 17, 2025 01:23
git命令大全
git init # 初始化本地git仓库(创建新仓库)
git config --global user.name "xxx" # 配置用户名
git config --global user.email "[email protected]" # 配置邮件
git config --global color.ui true # git status等命令自动着色
git config --global color.status auto
git config --global color.diff auto
git config --global color.branch auto
git config --global color.interactive auto
git config --global --unset http.proxy # remove proxy configuration on git
git clone git+ssh://[email protected]/VT.git # clone远程仓库
anonymous
anonymous / gist:4266065
Created December 12, 2012 08:22
Draw a radial gradient for view
//
// GradientView.m
// test
//
// Created by Sheng on 12-12-12.
// Copyright (c) 2012年 Sheng Jiang. All rights reserved.
//
#import "GradientView.h"