- 国家企业信用信息公示系统 http://www.gsxt.gov.cn/index.html
- 全国组织机构统一社会信用代码数据服务中心 https://www.cods.org.cn/
- [民政部]全国行政区划信息查询(含人口、面积、区号、邮编) http://bmfw.www.gov.cn/mzbqgxzqhxxcx/index.html
- 统计用区划和城乡划分代码 http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/
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
go get -u -v github.com/rogpeppe/godef | |
go get -u -v github.com/nsf/gocode | |
go get -u -v github.com/uudashr/gopkgs/cmd/gopkgs | |
go get -u -v github.com/alecthomas/gometalinter | |
go get -u -v github.com/derekparker/delve/cmd/dlv | |
go get -u -v github.com/haya14busa/goplay/cmd/goplay | |
go get -u -v github.com/tylerb/gotype-live | |
go get -u -v github.com/sourcegraph/go-langserver | |
go get -u -v github.com/davidrjenni/reftools/cmd/fillstruct | |
go get -u -v github.com/fatih/gomodifytags |
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 | |
echo "start" | |
svnPath="E:/jdjr/jcode/rf_report/"$1"/rf-report-web/src/main/webapp/WEB-INF/views" | |
echo $svnPath | |
rm -rf $svnPath | |
cp -R dist/ $svnPath | |
cd $svnPath | |
svn st | awk '{if($1 == "!") {print $2}}' | sed 's/\\/\//g' | xargs svn rm | |
svn st | awk '{if($1 == "?") {print $2}}' | sed 's/\\/\//g' | xargs svn add | |
read -p "Press any key to continue." var |
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
if has("win32") || has("win32unix") | |
let g:OS#name = "win" | |
let g:OS#win = 1 | |
let g:OS#mac = 0 | |
let g:OS#unix = 0 | |
elseif has("mac") | |
let g:OS#name = "mac" | |
let g:OS#mac = 1 | |
let g:OS#win = 0 | |
let g:OS#unix = 0 |