๋๋ถ๋ถ์ ๋ด์ฉ์ Contributions Welcome!์ ๋์ ์๊ธฐ ๋๋ฌธ์ ์ฌ๊ธฐ์๋ Contributions Welcome!์ ๋์ค์ง ์๋ ์ธ์ธํ ๋ด์ฉ์ ๋ค๋ฃฌ๋ค.
- ๊ธฐ์ฌํ๊ณ ์ ํ๋ ํ๋ก์ ํธ๋ฅผ github์์ forkํ์ฌ ์งํํจ
| sudo rm -rf /usr/local/go | |
| sudo ln -s $PWD/$1 /usr/local/go |
๋๋ถ๋ถ์ ๋ด์ฉ์ Contributions Welcome!์ ๋์ ์๊ธฐ ๋๋ฌธ์ ์ฌ๊ธฐ์๋ Contributions Welcome!์ ๋์ค์ง ์๋ ์ธ์ธํ ๋ด์ฉ์ ๋ค๋ฃฌ๋ค.
| // Polyfill to expand variables in a string | |
| // Example: expandEnv("Welcome back ${name}. Glad to see you"); | |
| // Example: expandEnv("Welcome back $name. Glad to see you"); | |
| // eslint-disable-next-line no-extend-native | |
| function expandEnv(s: string): string { | |
| return s.replace(/\$([\w]+|{([^{}]*)})/g, (str, varName) => { | |
| const vName = varName.startsWith("{") ? varName.substring(1, varName.length - 1) : varName; | |
| var value = process.env[vName]; |
| [Desktop Entry] | |
| Name=Galaxy | |
| Comment=Android Mirror | |
| Exec=/usr/bin/scrcpy -S -K | |
| Terminal=false | |
| Type=Application | |
| Category=Network;WebBrowser; |