在项目开发中创建AI同事 引言 近年来,AI模型(特别是大语言模型)的能力显著提升,使得"AI同事"不再是科幻概念,而是可以在实际项目中落地的生产工具。与其 … read more There are comments.
CentOS7安装node18+ 从 https://unofficial-builds.nodejs.org/download/release/ 选择版本下载 解压 tar -zxvf node-v18.19.1-linux-x86.tar.xz 执行 export PATH="node-v18.19.1-linux-x86/bin:$PATH" node -v read more There are comments.
sed 命令中文速查手册 基础语法 sed [选项] '命令' 文件名 sed [选项] -f 脚本文件 文件名 常用选项 选项 说明 -n 安静模式,仅显示经过sed处理的行 -e 执行多个sed命令 -f 从 … read more There are comments.
使用docker部署superset git clone https://github.com/apache/superset.git cd superset docker compose up docker compose -f docker-compose-non-dev.yml pull docker compose -f docker-compose-non-dev.yml up open http://localhost:8088 如何添加superset_config.py文件 https://github.com/apache/superset/tree/master/docker#readme docker cp superset_config.py superset_app:/app … read more There are comments.
搭建邮件服务 环境 Ubuntu 22.04 server 64bit nginx+php sqlite3 FQDN 怎样使修改的静态主机名永久生效? # 更新 apt-get update echo > /etc/hostname mail.example.com # 注释 - update_hostname vim /etc/cloud/cloud.cfg # 重启 reboot 安装nginx … read more There are comments.
linux一些命令 linux文件权限 -rw------- (600) 只有所有者才有读和写的权限 -rw-r--r-- (644) 只有所有者才有读和写的权限,组群和其他人只有读的权限 -rwx------ (700) 只有所有者 … read more There are comments.
xx已损坏,打不开。您应该将它已到废纸篓 打开终端 输入 sudo spctl --master-disable 输入系统密码(终端不会显示输入的密码),输入完成直接回车 打开系统偏好设置-安全性与隐私-任何 … read more There are comments.
redmine关联gitlab 1. 安装redmine_gitlab_hook 下载:https://github.com/phlegx/redmine_gitlab_hook/releases 解压后文件夹名字修改为redmine_gitlab_hook 放到redmine安装目录的plugins文件夹下 重启redmine 2. 插件设置 打开redmine的管理 - 配置 - 版本库 选择SCM - git 勾选自 … read more There are comments.
redmine3.x升级至4.x 下载最新版 https://www.redmine.org/releases/redmine-4.2.3.tar.gz 解压 tar zxvf redmine-4.2.3.tar.gz 复制3.x的files至redmine-4.2.3 3.x数据库备份 https://www.redmine.org/projects/redmine/wiki/RedmineBackupRestore 新建数据库 redmine4 恢复3.x的数据至数据库redmine4 … read more There are comments.