matrix1010 最近的时间轴更新
matrix1010's repos on GitHub
Python · 426 人关注
theine
high performance in-memory cache
Go · 362 人关注
theine-go
high performance in-memory cache
Go · 89 人关注
tablepilot
AI-native platform for tabular data generation via CLI, WebUI or app.
Python · 46 人关注
cacheme
Asyncio cache framework for Python
TypeScript · 32 人关注
forgery
Build, remix, and re-style characters with AI
Go · 25 人关注
cacheme-go
🚀 Schema based, typed Redis caching/memoize framework for Go
Rust · 13 人关注
theine-core
theine-py Rust core
Go · 10 人关注
piper
🛠 Viper wrapper with config inheritance and key generation
Python · 8 人关注
django-admin-select-search
Add a select box to django admin search.
Go · 8 人关注
go-cache-benchmark-plus
Go · 6 人关注
carrier
🛠 A test fixtures replacement for Go, support struct and ent, inspired by factory_bot/factory_boy
Go · 4 人关注
theine-nvm
Python · 3 人关注
pharos
Managing Kubernetes resources in Python(Django ORM style)
Python · 1 人关注
bounded-zipf
Bounded Zipf generator ported from Go
1 人关注
cacheme-benchmark
cacheme benchmarks
Go · 0 人关注
awesome-go
A curated list of awesome Go frameworks, libraries and software
0 人关注
bimg
Go package for fast high-level image processing powered by libvips C library
Go · 0 人关注
csghub-server
csghub-server is the backend server for CSGHub which helps user to manage datasets, modes, and also run Model Inference, Finetune and Application Spaces.
Python · 0 人关注
django
The Web framework for perfectionists with deadlines.
Python · 0 人关注
django-admin-tree
Simple tree structure in django admin, using jQuery Nestable
Python · 0 人关注
django-parler
Easily translate "cheese omelet" into "omelette au fromage".
Python · 0 人关注
django-redis
Full featured redis cache backend for Django.
Python · 0 人关注
django-rest-framework
Web APIs for Django.
Emacs Lisp · 0 人关注
dotfiles
Go · 0 人关注
echo-ent-cacheme-example
Go · 0 人关注
ent
An entity framework for Go
Dart · 0 人关注
excel
Excel Library for Flutter and Dart - https://pub.dev/packages/excel
Python · 0 人关注
factory_boy
A test fixtures replacement for Python
Go · 0 人关注
go-txdb
Immutable transaction isolated sql driver for golang
Go · 0 人关注
google-cloud-go
Google Cloud Client Libraries for Go.
Ruby · 0 人关注
homebrew-tablepilot
Dart · 0 人关注
jiffy
Jiffy is a Flutter (Android, IOS and Web) date time package for parsing, manipulating, querying and formatting dates
Python · 0 人关注
leetcode
leetcode with simple doc
Mathematica · 0 人关注
mathematica-beam-analysis-package
An example mathematica beam analysis program, including linear and rotor dynamic analysis
Go · 0 人关注
opentelemetry-go-contrib
Collection of extensions for OpenTelemetry-Go.
0 人关注
pykube
Python client library for Kubernetes
JavaScript · 0 人关注
small-webgl-test
A small webgl test project
Python · 0 人关注
spark-elasticsearch-recommender-basic
Basic steps for a simple spark-elasticsearch als recipe recommender
0 人关注
Yiling-J
matrix1010

matrix1010

V2EX 第 264857 号会员,加入于 2017-11-04 12:46:24 +08:00
今日活跃度排名 5009
国内哪个大模型支持结构化输出(JSON schema, 不是 JSON mode)
程序员  •  matrix1010  •  2025 年 8 月 15 日  •  最后回复来自 iyaozhen
22
Tablepilot 0.3.2 发布,新增 AI 图片转换为表格功能
分享创造  •  matrix1010  •  2025 年 5 月 12 日  •  最后回复来自 echoless
4
自如合租离谱事件后续
生活  •  matrix1010  •  2025 年 3 月 30 日  •  最后回复来自 aqx
23
说个自如合租的离谱事儿
生活  •  matrix1010  •  2025 年 3 月 26 日  •  最后回复来自 pinyoung
57
大家有没有给中大型项目补单元测试的经验
程序员  •  matrix1010  •  2024 年 12 月 10 日  •  最后回复来自 kelololy
17
matrix1010 最近回复了
@strawberrydafu 现在类别是写死的服装/姿势/表情, 而且只有服装能提取。下一步我准备把类别变成完全可以自定义的,你可以自己添加类别,然后提取/生成的时候都可以选这些自定义类别
2 月 23 日
回复了 jacketma 创建的主题 编程 AI 写的项目要怎么维护?都是一次性代码吗?
我在公司同时做 3 个比较复杂的项目,差不多 95%以上的代码都是 Jules 生成的。有几个小经验:

- 架构层面必须我来告诉 agent ,不能让他自己发挥,比如选什么数据库/orm ,代码怎么分层,怎么写单元测试
- 不要使用冷门语言/框架
- 后端有单元测试
- 详细的 agents.md
- 完善的提交检查,让 agent 在提交代码前把 lint/test 什么的都跑一遍,通过再提交
- 使用 plan 模式(Jules 叫 Interactive Plan),交互让 agent 根据你的原始计划生成详细且明确的新计划

最近折腾的一个小开源项目也是这样的思路 https://github.com/Yiling-J/forgery 。可以参考一下
@andrew2558 Google AI Studio 设计的,虽然都是 Gemini ,但 Google AI Studio 里的 Gemini 似乎品味比 Jules 好一些
2025 年 9 月 5 日
回复了 young1 创建的主题 程序员 大模型吐 JSON
2025 年 8 月 26 日
回复了 kongkongye 创建的主题 奇思妙想 想法 -> 原型 是否可行?
你把 v0 放里面不太合适。1. v0 生成的本来就是原型,没有后端 2. 你可以让 v0 生成完 UI 后再生成文档
我的建议是强力推行,并且同时开始推行 AI 编写代码(agent 模式,claude code, codex 或者 jules 这些)。同时持续对比有单元测试情况下和没有单元测试情况下 ai 生成代码的质量。最终达成以下目标:op 成为 ai coding 和单元测试专家且工资翻倍,公司开发人员减少 2/3 ,降低公司成本以及减少开发沟通内耗
收归测试人手其实只是借口,推行单元测试的最终目的是干掉开发。AI 代码的质量非常依赖单元测试,如果系统都没办法进行单元测试,那肯定也没法让 AI 同时编写代码和测试,并确保测试通过
@matrix1010 33 分钟开始,research 部分
@LeslieLeung 模型层面应该也需要针对 json shema 训练的,可以看看这个 openai dev day 的视频
?si=0Oy7D2fmnMoWUXQc&t=1986 。豆包确实支持,但不知道是只 decoding 层面约束还是模型也做了针对性训练
关于   ·   帮助文档   ·   自助推广系统   ·   博客   ·   API   ·   FAQ   ·   Solana   ·   2675 人在线   最高记录 6679   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 34ms · UTC 11:48 · PVG 19:48 · LAX 03:48 · JFK 06:48
♥ Do have faith in what you're doing.