Category

Computing

Articles filed under Computing.

Latest

216 posts · since 2012

  1. 11

    AI如何导致和修复了我的失眠问题

    作为一个重度AI用户,我在经历长期严重失眠后没有走常规的"排除变量"路线,而是用AI写了一个iOS app导出HealthKit数据,做多变量回归分析找到了真正的原因——晚上使用AI高强度思考。这篇文章分享了AI如何在全链条上提供执行力支持,也反思了人的judgment和认知上的成本结构,在AI时代如何重塑我们的决策路径。

    EN · 中
  2. 12

    How AI Caused and Fixed My Insomnia

    After weeks of severe insomnia, I used AI to build an iOS app that exported HealthKit data and ran multivariate regression to find the root cause—late-night AI-assisted intense multitasking. This post explores how AI provided end-to-end execution support and why certain things still require human judgment.

    EN · 中
  3. 13

    一行代码的事,Web 为什么做了三十年还没做到

    在iOS上查询排版结果只需一行代码,Web上需要触发整个页面的重新布局。这不是因为浏览器工程师蠢,而是CSS在1994年做了一个声明式的架构选择。这个选择的天花板更高,但代价是中间状态不可查询。Facebook在2012年因为不理解这个trade-off付出了数亿美元的代价。SwiftUI和Jetpack Compose证明了声明式和可观测可以共存,关键在于分层。这个教训适用于所有系统设计:好的抽象让你选择在哪一层工作,坏的抽象把所有层粘在一起让你没得选。

    EN · 中
  4. 14

    One Line of Code on Every Other Platform. Why Can't the Web Do It After 30 Years?

    Querying layout results takes one line of code on iOS, Android, Qt, and Flutter. On the web, it requires triggering a full-page reflow. This isn't because browser engineers are incompetent. CSS made a deliberate architectural choice in 1994 toward declarative layout, which has a higher ceiling but hides intermediate state. Facebook paid hundreds of millions of dollars in 2012 for not understanding this trade-off. SwiftUI and Jetpack Compose prove that declarative and observable can coexist through proper layering. The lesson applies to all system design: good abstractions let you choose which layer to work at; bad abstractions glue all layers together and leave you no choice.

    EN · 中
  5. 15
  6. 16
  7. 17

    用好AI的第一步:停止和AI聊天

    会用AI和用好AI之间差的是10倍。这个差距的根源在于工作方式,而非模型。本文通过一个完整的工作流例子和上中下三策的框架,解释为什么应该从ChatGPT切换到Cursor这类Agentic工具。

    EN · 中
  8. 18

    Step One to Using AI Well: Stop Chatting with AI

    The gap between using AI and using AI well is 10x. That gap comes from how you work, not which model you use. This post walks through a complete workflow example and a Three Tiers framework to explain why you should switch from ChatGPT to agentic tools like Cursor.

    EN · 中
  9. 19
  10. 20

    Key Decisions for Agentic Workflows: A Simple Case Study

    A real-world case study of directing AI to add SEO summaries to 300 articles in two minutes, breaking down five key decisions: choosing the right execution environment, building tests before work, letting agents handle corner cases, divide and conquer, and outcome-oriented prompt writing.

    EN · 中