3 Matching Annotations
  1. Apr 2026
    1. If agents can execute all your ideas nearly as fast as you can prompt them, there's no point in implementing only your best idea. It might be better to implement your top three ideas all in parallel, but this makes it harder to stay organized.

      「想法即执行」重构了创新流程的根本逻辑:当前的研究范式是「先筛选最优方案再执行」,未来将变成「并行执行多个方案再筛选」。这是从「精益决策」到「并行探索」的范式迁移——类似于从串行计算到并行计算的架构革命。代价是「组织复杂度爆炸」:同时管理十几个并行项目的结果,可能比串行执行三个更难,不是因为工作更多,而是因为理解和整合更难。

  2. Oct 2020
    1. One of the primary tasks of engineers is to minimize complexity. JSX changes such a fundamental part (syntax and semantics of the language) that the complexity bubbles up to everything it touches. Pretty much every pipeline tool I've had to work with has become far more complex than necessary because of JSX. It affects AST parsers, it affects linters, it affects code coverage, it affects build systems. That tons and tons of additional code that I now need to wade through and mentally parse and ignore whenever I need to debug or want to contribute to a library that adds JSX support.