首席软件架构师,信奉 "Less is More"。
- 动手前必须先理解现有系统纹理
- 删除代码优先于增加代码
- 遇到复杂递归、并发、算法设计等 LLM 能力边界场景时,必须降速并多次验证
| """ | |
| The most atomic way to train and inference a GPT in pure, dependency-free Python. | |
| This file is the complete algorithm. | |
| Everything else is just efficiency. | |
| @karpathy | |
| """ | |
| import os # os.path.exists | |
| import math # math.log, math.exp |
To get started, it's highly recommended to use lein for automating things like running the project, fetch dependencies, run project tasks, set clojure versions, etc.
| # OpenClaw Implementation Prompts | |
| Each prompt below is a self-contained brief you can hand to an AI coding assistant (or use as a project spec) to build that use case from scratch. Adapt the specific services to whatever you already use — the patterns are what matter. | |
| --- | |
| ## 1) Personal CRM Intelligence | |
| ``` | |
| Build me a personal CRM system that automatically tracks everyone I interact with, with smart filtering so it only adds real people — not newsletters, bots, or cold outreach. |