background picture of the home page

Hi,Friend

使用谷歌 Indexing API 进行推送

创建 Google API 项目 进入 https://console.cloud.google.com/apis/credentials 新建一个项目,创建项目后再切换到新创建的项目进行下一步操作 创建服务账号,在左边栏点凭据 这里的服务帐号 ID 生成的邮箱在稍后会用到,ID 随意 点击完成后完

thumbnail of the cover of the post

查看 Docker 容器运行命令

查看 Docker 容器运行命令 某些情况需要查看以前的docker运行时的命令参数 推荐方式 docker inspect 容器名 root@cloud:~# docker inspect brd --format='{{.Config.Cmd}}' [python app.py] docker

thumbnail of the cover of the post

YOLOv5 训练自定义目标检测模型

使用 YOLOv5 训练自定义目标检测模型 一、环境准备 1. 克隆 YOLOv5 仓库 首先,我们需要从 GitHub 上克隆 YOLOv5 仓库到本地: git clone https://github.com/ultralytics/yolov5 cd yolov5 2. 安装依赖 进入克隆

thumbnail of the cover of the post

vue项目创建方法

vue-cli # 安装 vue-cli npm install -g @vue/cli # 查看 vue-cli 版本 vue --version # 创建 vue 项目 方式1 vue create vue_name # 创建 vue 项目 方式2 npm --yes --package

thumbnail of the cover of the post

Linux 清理空间

Linux 清理空间 清理内核 确认当前内核和备用内核 uname -a uname -r 清理多余的内核 运行以下命令,清理非当前内核和非备用内核的旧内核: sudo apt-get purge $(dpkg --list | grep 'linux-image' | awk '{print $

thumbnail of the cover of the post