Skip to content

Instantly share code, notes, and snippets.

View GivenCui's full-sized avatar
🎯
Focusing

晋龙 GivenCui

🎯
Focusing
View GitHub Profile
@GivenCui
GivenCui / main.yml
Created October 9, 2021 09:35 — forked from lipengzhou/main.yml
GitHub Actions 部署 Nuxt 应用
name: Publish And Deploy Demo
on:
push:
tags:
- 'v*'
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
#
# Update: 2021-04-13 02:34:46
# https://raw.githubusercontent.com/pexcn/daily/gh-pages/shadowrocket/whitelist.conf
#
[General]
bypass-system = true
skip-proxy = 192.168.0.0/16, 10.0.0.0/8, 172.16.0.0/12, localhost, *.local, e.crashlytics.com, captive.apple.com
bypass-tun = 10.0.0.0/8,100.64.0.0/10,127.0.0.0/8,169.254.0.0/16,172.16.0.0/12,192.0.0.0/24,192.0.2.0/24,192.88.99.0/24,192.168.0.0/16,198.18.0.0/15,198.51.100.0/24,203.0.113.0/24,224.0.0.0/4,255.255.255.255/32
dns-server =
@GivenCui
GivenCui / getDocker.sh
Last active December 1, 2019 10:51
linux的docker安装脚本
#!/bin/sh
set -e
# This script is meant for quick & easy install via:
# $ curl -fsSL https://get.docker.com -o get-docker.sh
# $ sh get-docker.sh
#
# For test builds (ie. release candidates):
# $ curl -fsSL https://test.docker.com -o test-docker.sh
# $ sh test-docker.sh
@GivenCui
GivenCui / connect_v3.7.0
Created July 18, 2019 03:37
connect v3.7.0的源码分析记录
/*!
* connect
* Copyright(c) 2010 Sencha Inc.
* Copyright(c) 2011 TJ Holowaychuk
* Copyright(c) 2015 Douglas Christopher Wilson
* MIT Licensed
*/
'use strict';