-
github上你可以用别人的现成的代码 直接 git clone 即可了
-
然后你也想改代码或者贡献代码咋办?
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
| @echo off | |
| setlocal ENABLEDELAYEDEXPANSION | |
| set /a tee=0 | |
| for /f "tokens=1* delims==" %%a in ( | |
| 'wmic DESKTOPMONITOR get ScreenWidth^,ScreenHeight^ /value' | |
| ) do ( | |
| set /a tee+=1 | |
| if "!tee!" == "3" set screenheight=%%b | |
| if "!tee!" == "4" set screenwidth=%%b |
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
| (setq url-gateway-method 'socks) | |
| (setq socks-server '("Default server" "127.0.0.1" 1080 5)) |
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
| @echo off | |
| SETLOCAL EnableDelayedExpansion | |
| set "curl_install=D:\daan\bin\curl-7.57.0" | |
| set "iconv_install=D:\daan\bin\libiconv-1.9.2-1\bin" | |
| set url-config-file=url-config.txt | |
| REM set "local_service_url=http://wl.ykhealth.cn:11300" | |
| set /P local_service_url=< %url-config-file% |
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
| myWay远程办公网址导航 - http://myway.leanapp.cn/ | |
| 远程.work - https://yuancheng.work/ | |
| 一早一晚 - http://yizaoyiwan.com/ | |
| https://yousails.com/ |
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
| 报告 Bug 格式: | |
| 重现步骤 | |
| 预期结果 | |
| 实际结果 | |
| 版本信息 |
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
| #!/bin/bash | |
| set -e | |
| readonly version="25.3" # "25.2" # "25.1" | |
| #version_postfix="-rc2" # ".90" | |
| #patch_version=25.2-rc1-mac-6.2 | |
| #source_url=ftp://alpha.gnu.org/gnu/emacs/pretest | |
| source_url=https://mirrors.tuna.tsinghua.edu.cn/gnu/emacs |
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
| #!/bin/bash | |
| LOG_DIR="/usr/local/app/*/logs" | |
| #old log erase | |
| find ${LOG_DIR} -type f -name "myAllipcation*" -mtime +31 | xargs rm -f | |
| find ${LOG_DIR} -type f -name "gc.log*" -mtime +31 | xargs rm -f |