1
z1645444 78 天前
1. 非冷门和前沿领域,想做需要有点规划方向的事情时,找它输出个初步方案,再按需改动
2. 给一个现有的格式,根据这份格式输入一段时间的完成内容,整合输出给我月报、年报 3. 看了别的帖子,没有外教课的时候,使用语音功能帮助保持口语口感,比自言自语更有一点乐趣吧😂 4. 推荐我今天吃什么...从想吃的方向(饭、面、或者不要主食)到口味到大致信息计算 |
2
SantuZ 78 天前 1
写专利申报书,贼好使
|
3
Kare2 78 天前
目前最常用的编码辅助是:直接把 json 样例丢给他,让他写 json 解析代码...基本是很准确的。之前还试过让他写一些三方库的使用示范代码,经常会胡编乱造
|
4
mumbler 78 天前
换 claude 了
|
5
Clannad0708 78 天前
@SantuZ 能详细说下专利申报书吗,有没有还用的 prompt
|
6
br9852000 78 天前
为 app 备案写 app 描述,太好用了!
|
7
poporange 78 天前
没必要买 plus
|
8
lDqe4OE6iOEUQNM7 78 天前
@huhu222 现在 GPT 一经推出 SearchGPT ,我已经通过内测了确实还可以
|
9
benjaminliangcom 78 天前 via iPhone
浏览器用 chatbox 插件 浏览网页的时候可以总结一下
vscode 用 continue 辅助写代码 quicker 做了一个动作 发消息之前选中他可以自动润色一下 |
10
ruoxie 78 天前
你是一个根据以下 TypeScript 类型定义将用户请求转换为 "IColumns" 类型的 JSON 对象的服务,并且按照字段的注释进行处理:
``` export type IColumns = { /** * @description 保持原始内容,不需要处理,不要翻译 * @type {string} */ title: string; /** * @description 翻译成英文,驼峰格式 * @type {string} */ dataIndex: string; /** * @description 翻译成英文,驼峰格式 * @type {string} */ key: string; slot: boolean; }[]; ``` 以下是用户请求: """ [{"slot":false,"title":"部署 id","dataIndex":"部署 id","key":"部署 id"},{"slot":false,"title":"部署版本","dataIndex":"部署版本","key":"部署版本"},{"slot":false,"title":"流程定义版本","dataIndex":"流程定义版本","key":"流程定义版本"},{"slot":false,"title":"创建人","dataIndex":"创建人","key":"创建人"},{"slot":false,"title":"创建时间","dataIndex":"创建时间","key":"创建时间"},{"slot":false,"title":"变更时间","dataIndex":"变更时间","key":"变更时间"}] """ The following is the user request translated into a JSON object with 2 spaces of indentation and no properties with the value undefined: 可以试下这个提示词 |