
Coze Studio 一键安装工具,马上开始你的AI工作流
1.clone项目,一键安装 git clone https://github.com/hst-Sunday/oneclick-coze.git cd oneclick-coze chmod +x coze-studio.sh ./coze-studio.sh 这个安装命令也支持windows11的
解决vscode上python代码无法解析导入
1.已经生成了虚拟环境了,如以下结构 ⏺ your-project/ ├── .gitignore ├── api/ │ └── index.py ├── requirements.txt └── .venv/ └── (虚拟环境文件) 2.vscode上显示如下

给 Claude Code 装个“铃声” - Ring Ring Claude提醒你继续vibe coding 🔔
1.背景介绍 你是不是也遇到过这种情况? 终端里敲下 claude -m "帮我重构这段复杂的代码",回车,一切看起来都挺顺利。你切回浏览器,刷刷技术文章、回个 Slack 消息,刷刷论坛,摸摸鱼,准备等 Claude 给出结果。 十分钟后回来看,结果终端早早就停住了,提示: > Execute t
nextjs使用three.js写一个3D模型的查看器Viewer
直接上代码 // components/GLBViewer.js "use client"; import { useEffect, useRef, useState } from "react"; import * as THREE from "three"; import { OrbitCon
nextjs15使用better-sqlite3的连接报错问题
1.出现如下错误 ⨯ Error: Could not locate the bindings file. Tried: 解决方法 我是使用pnpm包管理器,执行以下操作 首先安装node-gyp pnpm i node-gyp -D 然后执行 pnpm approve-builds 执行后会
nextjs + clerk + supabase + realtime 实时监听数据库更改
1.开启realtime.messages策略 在supabase的SQL Editor执行以下命令 create policy "Enable all access for authenticated users" on "public"."messages" as PERMISSIVE for
解决nextjs15使用useLocalStorage报错的问题
已经在组件中使用"use client"声明了,还是报错,错误如下: Unhandled Runtime Error Error: useLocalStorage is a client-only hook 1.解决方案1-使用 dynamic 导入 import dynamic from 'nex
mac上使用nodejs appium控制chrome浏览器
1.先安装相关依赖 npm i appium -g npm i appium-chromium-driver webdriverio appium-chromedriver -D 去https://googlechromelabs.github.io/chrome-for-testing/下载chr
2024年终总结
又到年底了,今年还是一如既往,还是屡败屡战啊😞,以下是今年折腾的一些项目: 1.卡路里记录小程序——(已废弃),主要是没啥人用,然后就不维护了 2.类chatgpt的聊天项目——(已废弃),主要是这类项目太卷了,卷不过人家 3.一个关注大佬动态的网站——(已暂停维护,但还在线上),主要还是没啥人用
解决Windows无法安装到这个磁盘 选中的磁盘具有MBR分区表
1.在Windows安装界面,按下 Shift + F10 组合键,打开命令提示符。 2.执行以下命令 diskpart list disk select disk 0 clean convert gpt #转换成功继续执行 exit #退出diskpart 可以关掉窗口了