摘要: 命令行版(codex.exe,绿色可直接运行) 地址(最新版,2026-05): https://github.com/openai/codex/releases 找: Windows x64:codex-x86_64-pc-windows-msvc.exe 下载后改名为 codex.exe,放桌面 阅读全文
posted @ 2026-05-12 11:32 show-code 阅读(89) 评论(0) 推荐(0)
摘要: 下载地址: https://github.com/farion1231/cc-switch 阅读全文
posted @ 2026-05-11 22:39 show-code 阅读(7) 评论(0) 推荐(0)
摘要: 在插件中搜索continue 安装好之后添加大模型 添加API key后connect 自动弹出C:\Users\xxx\.continue\config.yaml文件 修改为如下内容 name: Local Config version: 1.0.0 schema: v1 models: - na 阅读全文
posted @ 2026-05-11 22:00 show-code 阅读(15) 评论(0) 推荐(0)
摘要: 关闭trea的auto mode 选择添加模型 1、deep seek:https://www.deepseek.com/ 2、硅基流动:https://cloud.siliconflow.cn/me/models 阅读全文
posted @ 2026-05-10 09:57 show-code 阅读(19) 评论(0) 推荐(0)
摘要: server { # 1. 核心修改:将普通listen改为HTTPS监听(443是HTTPS默认端口,也可保留12355并添加ssl标识) # 两种写法可选: # 写法1:使用HTTPS默认端口443(推荐,浏览器可直接通过https://域名访问,无需输入端口) listen 443 ssl; 阅读全文
posted @ 2026-01-19 14:17 show-code 阅读(94) 评论(0) 推荐(0)
摘要: 一、Nginx下载安装(Ubuntu系统) 1.nginx下载 sudo apt-get install nginx 2.nginx启动 启动命令 sudo nginx 重新编译(每次更改完nginx配置文件后运行): sudo nginx -s reload 3.测试nginx是否启动成功打开浏览 阅读全文
posted @ 2025-12-29 16:16 show-code 阅读(11) 评论(0) 推荐(0)
摘要: 在Systemd的service文件中,字段主要分为几个区块,每个区块都有其特定的用途和内容。以下是一些常见的字段及其描述: Unit区块: Description:给出当前服务的简单描述。 Documentation:给出文档位置。 After:表示该服务需要在哪些服务启动之后再启动,主要关注启动 阅读全文
posted @ 2025-12-15 13:19 show-code 阅读(49) 评论(0) 推荐(0)
摘要: cd /etc/systemd/system vi start-xxx.service Description=start-xxx After=syslog.target network.target remote-fs.target nss-lookup.target redis.service 阅读全文
posted @ 2025-12-08 16:51 show-code 阅读(30) 评论(0) 推荐(0)
摘要: #解压文件夹 tar -xvf jdk1.8.0_202.tar #修改环境变量vim /etc/profile #java environment#export JAVA_HOME=/home/szzc/jdk/jdk1.8.0_202#export JRE_HOME=${JAVA_HOME}/j 阅读全文
posted @ 2025-12-08 16:46 show-code 阅读(187) 评论(0) 推荐(0)
摘要: 解压压缩包 tar -zxvf redis-7.4.5.tar.gz cd redis-7.4.5 make make PREFIX=/xxx/redis-7.4.5 install 执行完后会生成bin文件夹 cd bin ./redis-server 启动后看到如上欢迎页面,但此窗口不能关闭,窗 阅读全文
posted @ 2025-12-06 21:18 show-code 阅读(77) 评论(0) 推荐(0)