├── .gitignore ├── LICENSE ├── README.md ├── binary_file.go ├── cloud ├── aliSMSSend.go └── static │ ├── aliOSS.go │ ├── base.go │ ├── local.go │ └── tencentCOS.go ├── config.ini ├── datetime ├── datetime.go └── funcs.go ├── db └── db.go ├── demo.txt ├── demoData └── html.html ├── gDom ├── dom.go └── transform.go ├── gZip └── zip.go ├── gfs └── gfs.go ├── gimage ├── image.go └── verificationCode.go ├── gintool ├── gintool.go ├── param.go ├── postform.go ├── query.go ├── safeData.go └── upload.go ├── gmd5 └── gmd5.go ├── go.mod ├── go.sum ├── gotool_test.go ├── greflect └── greflect.go ├── gstring └── string.go ├── iniReader └── iniReader.go ├── ip.go ├── mapCache ├── .DS_Store └── cacher.go ├── mapDetailCache └── cacher.go ├── maths └── maths.go ├── message └── message.go ├── miniTypes.md ├── nlp └── nlp.go ├── paginator └── paginator.go ├── random └── random.go ├── redis └── redis.go ├── request └── request.go ├── resources ├── dict │ ├── nplNotWords.txt │ └── zh │ │ ├── idf.txt │ │ ├── s_1.txt │ │ ├── stop_tokens.txt │ │ ├── stop_word.txt │ │ └── t_1.txt └── fonts │ └── FiraCode.ttf ├── runtimeEnvironment.go ├── slice └── slice.go ├── static └── index.html ├── tcpMessage.go ├── templates ├── form.html └── upload.html └── thirdPartyLogin ├── webQQLogin.go └── webWXLogin.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlesscode/gotool/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlesscode/gotool/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlesscode/gotool/HEAD/README.md -------------------------------------------------------------------------------- /binary_file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlesscode/gotool/HEAD/binary_file.go -------------------------------------------------------------------------------- /cloud/aliSMSSend.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlesscode/gotool/HEAD/cloud/aliSMSSend.go -------------------------------------------------------------------------------- /cloud/static/aliOSS.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlesscode/gotool/HEAD/cloud/static/aliOSS.go -------------------------------------------------------------------------------- /cloud/static/base.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlesscode/gotool/HEAD/cloud/static/base.go -------------------------------------------------------------------------------- /cloud/static/local.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlesscode/gotool/HEAD/cloud/static/local.go -------------------------------------------------------------------------------- /cloud/static/tencentCOS.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlesscode/gotool/HEAD/cloud/static/tencentCOS.go -------------------------------------------------------------------------------- /config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlesscode/gotool/HEAD/config.ini -------------------------------------------------------------------------------- /datetime/datetime.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlesscode/gotool/HEAD/datetime/datetime.go -------------------------------------------------------------------------------- /datetime/funcs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlesscode/gotool/HEAD/datetime/funcs.go -------------------------------------------------------------------------------- /db/db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlesscode/gotool/HEAD/db/db.go -------------------------------------------------------------------------------- /demo.txt: -------------------------------------------------------------------------------- 1 | hi 2 | hi 3 | -------------------------------------------------------------------------------- /demoData/html.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlesscode/gotool/HEAD/demoData/html.html -------------------------------------------------------------------------------- /gDom/dom.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlesscode/gotool/HEAD/gDom/dom.go -------------------------------------------------------------------------------- /gDom/transform.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlesscode/gotool/HEAD/gDom/transform.go -------------------------------------------------------------------------------- /gZip/zip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlesscode/gotool/HEAD/gZip/zip.go -------------------------------------------------------------------------------- /gfs/gfs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlesscode/gotool/HEAD/gfs/gfs.go -------------------------------------------------------------------------------- /gimage/image.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlesscode/gotool/HEAD/gimage/image.go -------------------------------------------------------------------------------- /gimage/verificationCode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlesscode/gotool/HEAD/gimage/verificationCode.go -------------------------------------------------------------------------------- /gintool/gintool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlesscode/gotool/HEAD/gintool/gintool.go -------------------------------------------------------------------------------- /gintool/param.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlesscode/gotool/HEAD/gintool/param.go -------------------------------------------------------------------------------- /gintool/postform.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlesscode/gotool/HEAD/gintool/postform.go -------------------------------------------------------------------------------- /gintool/query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlesscode/gotool/HEAD/gintool/query.go -------------------------------------------------------------------------------- /gintool/safeData.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlesscode/gotool/HEAD/gintool/safeData.go -------------------------------------------------------------------------------- /gintool/upload.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlesscode/gotool/HEAD/gintool/upload.go -------------------------------------------------------------------------------- /gmd5/gmd5.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlesscode/gotool/HEAD/gmd5/gmd5.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlesscode/gotool/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlesscode/gotool/HEAD/go.sum -------------------------------------------------------------------------------- /gotool_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlesscode/gotool/HEAD/gotool_test.go -------------------------------------------------------------------------------- /greflect/greflect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlesscode/gotool/HEAD/greflect/greflect.go -------------------------------------------------------------------------------- /gstring/string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlesscode/gotool/HEAD/gstring/string.go -------------------------------------------------------------------------------- /iniReader/iniReader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlesscode/gotool/HEAD/iniReader/iniReader.go -------------------------------------------------------------------------------- /ip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlesscode/gotool/HEAD/ip.go -------------------------------------------------------------------------------- /mapCache/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlesscode/gotool/HEAD/mapCache/.DS_Store -------------------------------------------------------------------------------- /mapCache/cacher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlesscode/gotool/HEAD/mapCache/cacher.go -------------------------------------------------------------------------------- /mapDetailCache/cacher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlesscode/gotool/HEAD/mapDetailCache/cacher.go -------------------------------------------------------------------------------- /maths/maths.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlesscode/gotool/HEAD/maths/maths.go -------------------------------------------------------------------------------- /message/message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlesscode/gotool/HEAD/message/message.go -------------------------------------------------------------------------------- /miniTypes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlesscode/gotool/HEAD/miniTypes.md -------------------------------------------------------------------------------- /nlp/nlp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlesscode/gotool/HEAD/nlp/nlp.go -------------------------------------------------------------------------------- /paginator/paginator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlesscode/gotool/HEAD/paginator/paginator.go -------------------------------------------------------------------------------- /random/random.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlesscode/gotool/HEAD/random/random.go -------------------------------------------------------------------------------- /redis/redis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlesscode/gotool/HEAD/redis/redis.go -------------------------------------------------------------------------------- /request/request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlesscode/gotool/HEAD/request/request.go -------------------------------------------------------------------------------- /resources/dict/nplNotWords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlesscode/gotool/HEAD/resources/dict/nplNotWords.txt -------------------------------------------------------------------------------- /resources/dict/zh/idf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlesscode/gotool/HEAD/resources/dict/zh/idf.txt -------------------------------------------------------------------------------- /resources/dict/zh/s_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlesscode/gotool/HEAD/resources/dict/zh/s_1.txt -------------------------------------------------------------------------------- /resources/dict/zh/stop_tokens.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlesscode/gotool/HEAD/resources/dict/zh/stop_tokens.txt -------------------------------------------------------------------------------- /resources/dict/zh/stop_word.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlesscode/gotool/HEAD/resources/dict/zh/stop_word.txt -------------------------------------------------------------------------------- /resources/dict/zh/t_1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlesscode/gotool/HEAD/resources/dict/zh/t_1.txt -------------------------------------------------------------------------------- /resources/fonts/FiraCode.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlesscode/gotool/HEAD/resources/fonts/FiraCode.ttf -------------------------------------------------------------------------------- /runtimeEnvironment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlesscode/gotool/HEAD/runtimeEnvironment.go -------------------------------------------------------------------------------- /slice/slice.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlesscode/gotool/HEAD/slice/slice.go -------------------------------------------------------------------------------- /static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlesscode/gotool/HEAD/static/index.html -------------------------------------------------------------------------------- /tcpMessage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlesscode/gotool/HEAD/tcpMessage.go -------------------------------------------------------------------------------- /templates/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlesscode/gotool/HEAD/templates/form.html -------------------------------------------------------------------------------- /templates/upload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlesscode/gotool/HEAD/templates/upload.html -------------------------------------------------------------------------------- /thirdPartyLogin/webQQLogin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlesscode/gotool/HEAD/thirdPartyLogin/webQQLogin.go -------------------------------------------------------------------------------- /thirdPartyLogin/webWXLogin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnlesscode/gotool/HEAD/thirdPartyLogin/webWXLogin.go --------------------------------------------------------------------------------