Continue reading...
These aren't niche tools used by tech enthusiasts. They're mainstream applications that everyday people now use for research, planning, learning, and decision-making. When someone searches for "best productivity apps for small teams," they're increasingly likely to ask an AI rather than Google. When a business owner needs to understand a technical topic, they're prompting Claude instead of reading blog posts. When students research topics for papers, they're querying Perplexity instead of clicking through search results.
。业内人士推荐WPS官方版本下载作为进阶阅读
Claude Code worked for 20 or 30 minutes in total, and produced a Z80 emulator that was able to pass ZEXDOC and ZEXALL, in 1200 lines of very readable and well commented C code (1800 lines with comments and blank spaces). The agent was prompted zero times during the implementation, it acted absolutely alone. It never accessed the internet, and the process it used to implement the emulator was of continuous testing, interacting with the CP/M binaries implementing the ZEXDOC and ZEXALL, writing just the CP/M syscalls needed to produce the output on the screen. Multiple times it also used the Spectrum ROM and other binaries that were available, or binaries it created from scratch to see if the emulator was working correctly. In short: the implementation was performed in a very similar way to how a human programmer would do it, and not outputting a complete implementation from scratch “uncompressing” it from the weights. Instead, different classes of instructions were implemented incrementally, and there were bugs that were fixed via integration tests, debugging sessions, dumps, printf calls, and so forth.
Even this relatively clean version requires: a TransformStream, manual TextEncoder and TextDecoder, and explicit lock release.