惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

大猫的无限游戏
大猫的无限游戏
Webroot Blog
Webroot Blog
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
T
Threat Research - Cisco Blogs
V2EX - 技术
V2EX - 技术
L
LINUX DO - 热门话题
Google DeepMind News
Google DeepMind News
Recorded Future
Recorded Future
S
Schneier on Security
I
InfoQ
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
cs.CV updates on arXiv.org
cs.CV updates on arXiv.org
The GitHub Blog
The GitHub Blog
S
Security @ Cisco Blogs
O
OpenAI News
W
WeLiveSecurity
Vercel News
Vercel News
阮一峰的网络日志
阮一峰的网络日志
Simon Willison's Weblog
Simon Willison's Weblog
人人都是产品经理
人人都是产品经理
Cloudbric
Cloudbric
The Last Watchdog
The Last Watchdog
The Hacker News
The Hacker News
Google Online Security Blog
Google Online Security Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
GbyAI
GbyAI
NISL@THU
NISL@THU
T
Tailwind CSS Blog
V
Visual Studio Blog
PCI Perspectives
PCI Perspectives
K
KPMG report finds enterprise disconnect between AI and its ROI | CIO
Jina AI
Jina AI
D
DataBreaches.Net
B
Blog RSS Feed
N
News and Events Feed by Topic
N
News and Events Feed by Topic
H
Heimdal Security Blog
cs.CL updates on arXiv.org
cs.CL updates on arXiv.org
腾讯CDC
Latest news
Latest news
V
Vulnerabilities – Threatpost
Hacker News: Ask HN
Hacker News: Ask HN
WordPress大学
WordPress大学
V
V2EX
aimingoo的专栏
aimingoo的专栏
博客园 - 司徒正美
Apple Machine Learning Research
Apple Machine Learning Research
D
Darknet – Hacking Tools, Hacker News & Cyber Security
The Register - Security
The Register - Security
Help Net Security
Help Net Security

博客园 - 林枫山

五、审核的服务插件踩坑记录 2025年教我学英语 - 常用句子 2025年教我学英语 - 其他 2025年教我学英语 - 动植物 2025年教我学英语 - 玩 2025年教我学英语 - 学 2025年教我学英语 - 出行 2025年教我学英语 - 穿、衣 2025年教我学英语 - 美食 2026年计划执行 辞旧迎新,迎接2026 coze手册 泛微E9手册 我这些年走过的大弯路 2025年教我自己说英语 - 住和用 二、代码模板:多条件判断跳转自定义异常且回滚 2025年新年总结 01、奇瑞鸟ERP手册 用最笨的方法去发展 云星空实施手册
一、AI常用开发提示词
林枫山 · 2025-07-21 · via 博客园 - 林枫山

1、把JSON字符串快速替换为JSON对象格式

以下代码的符号只保留原有的{}:[],这些符号,逗号也要保留, 其他符号全部去除,请不要添加擅自额外的字符串和符号,
遇到注释行不做任何处理,并保留原有的排版格式:

2、给JSON对象加上JSON.stringify()

  假设以下这段代码是原代码,改成这个JSON.stringify(原代码)的格式,只保留更新后代码,代码如下:

3、按上文提示词

  按上文提示词:

4、忽略上文提示词

  忽略上文提示词。

5、提示词模板

# 角色
程序员
# 任务
帮我把我提供的SqlServer代码排版整理,请使用专业代码工具整理
# 要求
不要改变原代码的语法
# 示例

---

6、提示词模板

# 角色
24点游戏专家
# 游戏规则
目标是通过加、减、乘、除四则运算,使四个数字的结果等于24
# 输出示例
Q:[9,8,8,3]
A:(9-(8/8))*3=24
# 其他要求
请一步一步推理并展示计算过程

---

7、建表语句转换为插入t_sys_field语句

# 角色
程序员
# 任务
帮我把SqlServer建表语句转换为插入t_sys_field的语句
# 要求
请忽略注释语句冒号及冒号之后的内容
转换后请合并提供一个文件下载
# 示例
# 转换前:
create table t_SCM_SaleContract
(
FID int identity(1,1) primary key,
FBillNo nvarchar(100),--订单编号
FBillTypeID int,--单据类型
FBillData datetime default(getdate()) not null--制单日期
)
# 转换后:
insert into t_sys_field(FTableID,FBillObjectID,FieldName,FieldNameCN,FExtend,FDataType,FLength,FDefault,FSecurityCode)
select (select fid from t_sys_table where FTableName='t_SCM_SaleContract'),
(select fbillobjectid from t_sys_table where FTableName='t_SCM_SaleContract'),
'FID',N'内码',0,'int',null,null,LOWER(REPLACE(LTRIM(NEWID()),'-',''))
union all
select (select fid from t_sys_table where FTableName='t_SCM_SaleContract'),
(select fbillobjectid from t_sys_table where FTableName='t_SCM_SaleContract'),
'FBillNo',N'订单编号',0,'nvarchar',100,null,LOWER(REPLACE(LTRIM(NEWID()),'-',''))
union all
select (select fid from t_sys_table where FTableName='t_SCM_SaleContract'),
(select fbillobjectid from t_sys_table where FTableName='t_SCM_SaleContract'),
'FBillTypeID',N'单据类型',0,'int',null,null,LOWER(REPLACE(LTRIM(NEWID()),'-',''))
union all
select (select fid from t_sys_table where FTableName='t_SCM_SaleContract'),
(select fbillobjectid from t_sys_table where FTableName='t_SCM_SaleContract'),
'FBillData',N'制单日期',0,'datetime ',null,getdate(),LOWER(REPLACE(LTRIM(NEWID()),'-',''))
---
请帮我转换以下文件:

8、文生图提示词

# 角色

图片处理专家

# 任务

1. 请帮我保留图中背景,去除图中宝石;

2. 请帮我修复成高清图片,图片规格为140*140;

3. 如果有多张图,请保留第1张图整体布局不变;

4. 如果有多张图,请输出第1张图。

# 角色

图片处理专家

# 任务

1. 采用第1张图的宝石,和第2张图的背景,合成1张新图。

2. 请完全采用第1张图和第2张图的布局元素,不要修改新图的布局;

3. 请输出新图