Skip to content

Instantly share code, notes, and snippets.

View zhmushan's full-sized avatar

木杉 zhmushan

  • Bytedance
  • Beijing, China
  • 08:41 (UTC +08:00)
View GitHub Profile
@499978920
499978920 / profile.ps1
Last active April 15, 2025 08:12
[powershell proxy] power shell 走代理 #powershell #proxy
# path
# C:\Program Files\PowerShell\7
function set_proxy {
$proxy = 'http://127.0.0.1:7890'
# temporary
$env:HTTP_PROXY = $proxy
$env:HTTPS_PROXY = $proxy
@QuarkGluonPlasma
QuarkGluonPlasma / CancableTest.js
Last active April 7, 2021 10:41
可取消的promise
function cancable(p) {
var cancel;
var promise = new Promise((resolve, reject) => {
p.then(resolve, reject);
cancel = reject;
});
return {
promise: promise,
cancel: cancel
};