V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
V2EX  ›  ruoxie  ›  全部回复第 2 页 / 共 32 页
回复总数  632
1  2  3  4  5  6  7  8  9  10 ... 32  
玩什么航拍无人机,上穿越机,穿越机拍出来的东西才有味道
https://www.bilibili.com/video/BV14q44e2EA8
不洗,即使国庆这种比较长的假期。两条裤子,一次性内裤,足够一天一换的 T 恤
兴趣,大学时看技术的书像看爽文小说一样爽
68 天前
回复了 KFCVIVO50 创建的主题 问与答 一线城市现在可以入手买房了吗
mark ,一年后我再来看
69 天前
回复了 aaxaax 创建的主题 生活 中秋三天大家什么安排?
上天,真的是上天。今年最快乐的事就是学会了飞穿越机
我自己写了 vscode 插件和 utools 插件
1 没啥用
C# 国内没饭吃,喜欢 C# 语法的话直接上 TypesScript ,框架就用 NestJS
73 天前
回复了 YVAN7123 创建的主题 问与答 DJI Neo 值得入手吗?
@jtshs256 毕竟整机还没有自家的 o3 图传贵
73 天前
回复了 YVAN7123 创建的主题 问与答 DJI Neo 值得入手吗?
四不像产品,作为航拍机抗风不行,摄像头不行,作为 fpv ,fpv 玩家表示这是个垃圾
最近用的最多的场景,丢给 chatgpt 如下 prompt:

You are a service that translates user requests into JSON objects of type "IOption" according to the following TypeScript definitions:
```
export type IOption = { value: string; label: string }[];
```
The following is a user request:
"""
乙方承担费用,1-电费,2-水费,3-煤气费,4-电视费,5-电话费,6-上网费,7-车位费,8-供暖费,9-物业费,10-其它
"""
The following is the user request translated into a JSON object with 2 spaces of indentation and no properties with the value undefined:

chatgpt 返回结果:

[
{ "value": "1", "label": "电费" },
{ "value": "2", "label": "水费" },
{ "value": "3", "label": "煤气费" },
{ "value": "4", "label": "电视费" },
{ "value": "5", "label": "电话费" },
{ "value": "6", "label": "上网费" },
{ "value": "7", "label": "车位费" },
{ "value": "8", "label": "供暖费" },
{ "value": "9", "label": "物业费" },
{ "value": "10", "label": "其它" }
]

结合代码模版生成如下代码:

export const costOfPartyBOptions = [
{ value: 1, label: "电费" },
{ value: 2, label: "水费" },
{ value: 3, label: "煤气费" },
{ value: 4, label: "电视费" },
{ value: 5, label: "电话费" },
{ value: 6, label: "上网费" },
{ value: 7, label: "车位费" },
{ value: 8, label: "供暖费" },
{ value: 9, label: "物业费" },
{ value: 10, label: "其它" },
];

export const costOfPartyBMap = costOfPartyBOptions.reduce(
(obj, { label, value }) => {
obj[value] = label;
return obj;
},
{},
);

整个过程只是复制了接口文档的备注,其它都是已经写好的工具处理的:

乙方承担费用,1-电费,2-水费,3-煤气费,4-电视费,5-电话费,6-上网费,7-车位费,8-供暖费,9-物业费,10-其它
75 天前
回复了 rivenqinyy 创建的主题 求职 [前端开发] 无锡苏州求职 - 3 年经验
卧槽,原来是我大桂电的
挂脖支架
你是一个根据以下 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:

可以试下这个提示词
99 天前
回复了 chunkingName 创建的主题 咖啡 各位大佬喝咖啡有瘾吗?
每天早上必须一杯意式浓缩
100 天前
回复了 rengejiayou 创建的主题 问与答 你在用哪些 AI 编码插件?
自己写 vscode 插件
104 天前
回复了 firhome 创建的主题 程序员 困惑好久的问题,如何做代码管理?
104 天前
回复了 firhome 创建的主题 程序员 困惑好久的问题,如何做代码管理?
1  2  3  4  5  6  7  8  9  10 ... 32  
关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   实用小工具   ·   1383 人在线   最高记录 6679   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 37ms · UTC 17:35 · PVG 01:35 · LAX 09:35 · JFK 12:35
Developed with CodeLauncher
♥ Do have faith in what you're doing.