摘要: ✅ 如果你用的是 Zsh(默认推荐) 推荐安装 Oh My Zsh(自动补全、主题、Git 集成) sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" 然后你就 阅读全文
posted @ 2025-06-06 16:38 奔跑的兔 阅读(167) 评论(0) 推荐(0)
摘要: ProtoOptions 简介 使用protobuf的options,我们可以添加我们自己的option,然后根据option生成代码添对proto中的参数进行处理,例如添加message的校验。 extension 能够对已经存在的消息进行扩展,这种扩展只是动态增加字段,而没有增加接口。 例子:扩 阅读全文
posted @ 2023-02-18 20:41 奔跑的兔 阅读(3577) 评论(0) 推荐(0)
摘要: 安装 安装MongoDB docker run -d --name mongo-yapi mongo 安装Yapi docker pull registry.cn-hangzhou.aliyuncs.com/anoy/yapi # 初始化 Yapi 数据库索引及管理员账号 docker run -i 阅读全文
posted @ 2022-04-28 18:48 奔跑的兔 阅读(73) 评论(0) 推荐(0)
摘要: 软件缓存目录 # take JetBrains for example /System/Volumes/Data/Users/[你的名字]/Library/Application Support/ /System/Volumes/Data/Users/[你的名字]/Library/Logs/JetB 阅读全文
posted @ 2022-04-23 12:10 奔跑的兔 阅读(32) 评论(0) 推荐(0)
摘要: macos 12 Java下载地址:https://www.oracle.com/java/technologies/downloads 环境变量设置 vi ~/.zshrc export JAVA_HOME=/Users/wxx/env/java/jdk-18.jdk/Contents/Home 阅读全文
posted @ 2022-04-19 21:31 奔跑的兔 阅读(47) 评论(0) 推荐(0)
摘要: 报错内容 untimeError: Broken toolchain: cannot link a simple C program ... ERROR: Could not build wheels for numpy which use PEP 517 and cannot be install 阅读全文
posted @ 2022-04-13 23:22 奔跑的兔 阅读(442) 评论(0) 推荐(0)
摘要: 安装配置 sudo docker pull eclipse-mosquitto sudo mkdir -p /mosquitto/config sudo mkdir -p /mosquitto/data sudo mkdir -p /mosquitto/log sudo vi /mosquitto/ 阅读全文
posted @ 2022-04-13 14:08 奔跑的兔 阅读(894) 评论(0) 推荐(0)
摘要: docker pull mariadb sudo docker run --name mariadb -e MYSQL_ROOT_PASSWORD=123456 -p 13306:3306 -d mariadb 阅读全文
posted @ 2022-04-12 17:05 奔跑的兔 阅读(45) 评论(0) 推荐(0)
摘要: 环境 Ubuntu21 安装 sudo apt-get install mosquitto ## 客户端 sudo apt-get install mosquitto-clients 启动服务 mosquitto -c /etc/mosquitto/mosquitto.conf -d 发布订阅 参数 阅读全文
posted @ 2022-04-04 20:55 奔跑的兔 阅读(128) 评论(0) 推荐(0)
摘要: helm github https://github.com/helm/helm/releases/tag/v3.8.0 centos # 使用国内源 wget https://get.helm.sh/helm-v3.8.0-linux-amd64.tar.gz tar zxf helm-v3.8. 阅读全文
posted @ 2022-03-13 22:52 奔跑的兔 阅读(159) 评论(0) 推荐(0)