https://xiazemin.github.io/MyBlog/index.html
https://github.com/xiazemin/golangCodeHelper 支持右键从json文件生成golang结构体,从curl生成golang http请求代码
源码:https://github.com/xiazemin/autotest 实例:https://github.com/xiazemin/tabel_drving_test_learn 安装:go get -u github.com/xiazemin/autotest/gotests
https://github.com/xiazemin/jstree-go 逻辑分支可视化(https://github.com/xiazemin/jstree-go/blob/main/static/1677917465883.jpg)
sqlc that support in syntax
-- name: GetAuthorsInCompany :many
SELECT * FROM authors where company_id in ( select id from company where id in (?) and name in (?) );
支持不定长values语法
/* name: BatchCreateAuthor :execresult */
INSERT INTO authors (
id,name,bio,company_id
) VALUES (
?,?, ?,1
),(
?,?, ?,1
);
源码:https://github.com/xiazemin/sqlc 实例:https://github.com/xiazemin/sqlc_study 安装:go get -u github.com/xiazemin/sqlc
https://github.com/xiazemin/ast_graph
https://github.com/xiazemin/registrator-nacos
docker run -d \
--name=registrator-nacos \
--net=host \
--volume=/var/run/docker.sock:/tmp/docker.sock \
xiazemin/registrator-nacos:v0.0.1 \
nacos://127.0.0.1
docker run -p5678:5678 yourservice:yourport
https://github.com/xiazemin/jsonToAll
https://github.com/xiazemin/proto2xmind
安装: go install github.com/xiazemin/proto2xmind 使用: proto2xmind gen -s ./example/sub.proto -s ./example/request.proto -d ./example/example.xmind
给定父子结构关系json,生成对应的xmind文件 https://github.com/xiazemin/xmind-go
https://github.com/xiazemin/mysqlslap-go
https://github.com/xiazemin/slowLog
https://github.com/xiazemin/php_ext_class
php项目改造的时候,快速查找非指定目录内部的namespace,快速排错 https://github.com/xiazemin/php_imports
https://github.com/xiazemin/PhpParserEngine