This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
param( | |
[Int] $port | |
) | |
$URL = "http://127.0.0.1:$port" | |
[environment]::SetEnvironmentVariable('HTTP_PROXY', $URL, "Machine") | |
[environment]::SetEnvironmentVariable('HTTPS_PROXY', $URL, "Machine") | |
git config --global http.proxy $URL | |
git config --global https.proxy $URL |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
npm cache clean -f | |
yarn cache clean | |
pnpm store prune |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script src="https://cdn.bootcss.com/babel-polyfill/6.26.0/polyfill.min.js"></script> | |
<script src="https://cdn.bootcss.com/qrcode-generator/1.4.0/qrcode.js"></script> | |
<form> | |
<fieldset> | |
<legend>QRCode Post</legend> | |
<ol> | |
<li><label> | |
Load an image | |
<input type="file" accept="image/*" |