2024-04-21

mysql用户管理

用户创建用户1234567891011121314-- 创建用户,并允许其在任何IP登陆create user 'username'@'%' identifie...

阅读全文 →
2024-04-21

clone github代码出现Operation timed out解决

1234567➜ ~ git clone git@github.com:pkg6/go-requests.gitCloning into 'go-requests'...ssh:...

阅读全文 →
2024-04-21

在mac系统下golang语言GRPC工具安装

protoc123456https://github.com/protocolbuffers/protobuf/releases/tag/v3.19.4➜ ~ wget https://github...

阅读全文 →
2024-04-21

使用golang对接firebase登录流程

客户端sdk: https://firebase.google.com/docs/auth/?hl=zh-cn golang sdk: GitHub - firebase/firebase-...

阅读全文 →
2024-04-21

使用fastapi读取docx文件内容

需要安装的包1234python-docx==1.1.0fastapi==0.110.0uvicorn==0.22.0python-multipart==0.0.9 读取docx文件12345fro...

阅读全文 →
2024-04-21

git免密拉取代码

方式1: 通过公钥和私钥进行ssh拉去代码生成公钥和私钥命令 1ssh-keygen 拉去代码 1git clone git@github.com:username/repository.git ...

阅读全文 →
2024-04-21

在项目中git中常见分支及其作用

master/main分支master/main分支是主分支,包含了已经发布到生产环境的稳定,可靠版本的代码。一般情况下,master/main分支应该只用于发布新版本,...

阅读全文 →
2024-04-21

通过shell脚本clone组织下所有仓库

获取github组织下仓库12345curl --silent \ -H "Accept: application/vnd.github+json" \ ...

阅读全文 →
2024-04-21

在spring boot框架中使用mybatis操作数据库

加载mybatis依赖123456789101112131415161718<dependency> <!-- 数据库操作 https://github.com...

阅读全文 →
2024-04-21

在mac电脑配置Java环境

JDK1234brew install openjdk@8export PATH="/usr/local/opt/openjdk@8/bin:$PATH"export JAVA_H...

阅读全文 →