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

推荐订阅源

博客园 - 叶小钗
MyScale Blog
MyScale Blog
博客园 - 【当耐特】
I
InfoQ
腾讯CDC
aimingoo的专栏
aimingoo的专栏
L
LangChain Blog
人人都是产品经理
人人都是产品经理
D
DataBreaches.Net
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Engineering at Meta
Engineering at Meta
A
About on SuperTechFans
Google DeepMind News
Google DeepMind News
Vercel News
Vercel News
C
Check Point Blog
B
Blog RSS Feed
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
美团技术团队
Stack Overflow Blog
Stack Overflow Blog
Y
Y Combinator Blog
D
Docker
MongoDB | Blog
MongoDB | Blog
量子位
博客园_首页

OpenAI

只有我这么感觉吗? codex 5.5 比 cc 4.7 速度慢了 7-10 倍。。 求助: chatGPT 网络配置问题 切换 ChatGPT 从美区到土耳其有无风险? 大家现在都是用什么办法订阅 gpt pro 的? 准备买正价的 openapi pro 5x, apple 美国店 准备 100 刀的礼品卡 够不够? 或者 120 刀? Codex 5x 5 小时额度大概能用多少 Token 呢?想对比一下中转站和官方订阅 Codex 每个会话里的 Context 满了,自动压缩总是过不去 你们 Codex 弹电话验证了吗 我最近發現 chatgpt 可以綁 apple 年付的,我也是才知道 5.5 codex 模型是不是更耗流量了...... Codex 登录需要验证手机号了 chatgpt 代充这是常规操作 还是我被坑了 GPT pro 模型(5x plan)一周大约可以用几次? 哪个国家 appstore 订阅 openai pro 5x 价格最低? plus 怎么感觉越来越不经蹬了 强如 Codex GPT 5.5 竟也会犯如此低级错误 纯免费 GPT-Image-2 AI 生图服务:限时 无需任何登录 在不考虑封号风险的情况下, GPT-5.5 vs Opus 4.7 使用体验上哪个更好? chatgpt 充值求助 现在有什么稳定订阅 Chatgpt 的方法吗 慢讯 Free 计划用户继可以用 image-2 后,今天开始可以在 codex 内调用 GPT-5.5 Codex (APP) 保姆级全攻略,海量实战教程, 一文精通 关于 xiaomi MiMo Token Plan 的套路我一一说下 Codex 额度锁死 100%,这正常吗? 我做了一个 AI 电商生图工具: 13 场景预设 + 数据全在浏览器(1 毛 6 一张) Codex 最近的更新速度搭上火箭了吗? 有没有靠谱的 GPT Pro 代充站 我的 GPT 是猫,你呢 😄 Codex 额度又重置了 ? 有没有类似 ChatGPT 这种 Agent 能力的 API
你们是怎么解决 CodeX 写代码过于难看的问题的
Pig930 · 2026-05-17 · via OpenAI

RT ,最近主力切换到 CodeX 之后发现 CodeX 会写无穷无尽的胶水代码、兜底代码和一些根本不存在的转换/try-catch 等等,哪怕在 prompt 里详细写清楚需要做的事情,或者用 Opus 4.7 写 plan 再执行也不会有很大改善。仿佛这种倾向刻进 CodeX 骨子里了。今天让它写一个简单的训练脚本,100 行的脚本里有一半是对一个命令行参数是否正确输入的判断,彻底晕了。 之前自己在网上找了一些方法写进 AGENTS.md 里,

## Coding Standard
1. Simplicity First.
2. Failfast instead of over-design, over-engineering, over-error-handling and over-fallbacks
   - Only make changes that are directly requested or clearly necessary. Keep solutions simple and focused.
   - A simple feature doesn't need extra configurability.
   - Don't add error handling, fallbacks, or validation for scenarios that can't happen. Trust internal code andframework guarantees. Only validate at system boundaries (user input, external APIs).Don't use feature flagsor backwards-compatibility shims when you can just change the code.
   - Don't create helpers, utilities, or abstractions for one-time operations.Don't design for hypotheticalfuture requirements. The right amount of complexity is the minimum needed for the current task-three similarlines of code is better than a premature abstraction
   - Avoid backwards-compatibility hacks like renaming unused _vars, re-exporting types, adding // removedcomments for removed code, etc. If you are certain that something is unused, you can delete it completely

And also the coding-rules and other guidelines/skills

也装了 andrej-kaparthy-guidelines, superpowers 之类的 skill ,实在是限制不了。大家有什么建议/经验吗,或者还是说回到 Claude 是更好的选择😭