摘要:
安装OpenJDK 11 sudo yum install java-11-openjdk-devel 2. 确认Java版本 java -version 3. 配置JAVA_HOME环境变量 update-alternatives --config java 在输出的结果中,你会看到Java的安装 阅读全文
摘要:
git同步远程仓库 //新建一个upstream的远程主分支 git remote add upstream https://github.com/singerdmx/flutter-quill //将远程主分支更新到本地 git fetch upstream //切换到master分支 git c 阅读全文
摘要:
创建electron+vue项目 安装 Vue Cli npm install -g @vue/cli 创建项目 vue create electron-vue 添加electron模块 vue add electron-builder 运行项目 yarn electron:serve 打包项目 y 阅读全文
摘要:
# 前言 [ChatEmail](https://github.com/kongpf8848/ChatEmail)基于🦜️🔗[LangchainJS](https://github.com/hwchase17/langchainjs) 和 [ChatFiles](https://github.c 阅读全文
摘要:
# 前言 OpenAI推出的ChatGPT火出天际🔥,一路狂飙🚀,很多小伙伴都想尝试调用OpenAI API来搭建自己的ChatGPT玩一玩,但是通常会面临OpenAI API在国内无法正常访问、OpenAI账号容易被封或充值困难等问题😭。**一种替代方案就是使用微软的Azure OpenAI 阅读全文
摘要:
IMAP(Internet Message Access Protocol)常用命令合集 **相关文档**:[https://www.rfc-editor.org/rfc/rfc3501](https://www.rfc-editor.org/rfc/rfc3501) # 连接到服务器 ``` ss 阅读全文
摘要:
JSON处理 https://www.bejson.com UUID生成 https://www.uuid.online Maven仓库 https://mvnrepository.com [JDK下载] https://www.oracle.com/java/technologies/downlo 阅读全文
摘要:
| 功能 | 命令 | | : | : | |查看设备品牌|adb shell getprop ro.product.brand| |查看设备型号|adb shell getprop ro.product.model| |查看SDK版本|adb shell getprop ro.build.vers 阅读全文
摘要:
设置全局变量 在账号登录接口,Tests下添加以下脚本,用于保存接口返回的token信息到全局变量如jwt_token中 var response = JSON.parse(responseBody); if(response.data.token){ pm.globals.set("jwt_tok 阅读全文
摘要:
# 镜像使用 ## 登录 ```bash docker login [OPTIONS] [SERVER] docker login -u username -p password ``` ## 查看镜像 ```bash docker images ``` ## 获取镜像 ```bash docker 阅读全文