Workflow
Backend Development
icon
Search documents
趣图:Java 毁了我的女儿
程序员的那些事· 2025-09-14 11:04
Core Viewpoint - The article presents humorous illustrations related to programming, highlighting the challenges and quirks faced by developers in their daily tasks. Group 1 - The first illustration depicts the humorous consequences of interns modifying legacy code, emphasizing the risks associated with inexperienced developers handling critical systems [2] - The second illustration showcases six different approaches programmers take to fix bugs, reflecting the diverse problem-solving strategies within the software development community [3] - The third illustration contrasts backend and frontend development, illustrating the different skill sets and challenges faced by developers in these two areas [4]
X @Balaji
Balaji· 2025-07-16 07:29
AI = AN INTERNPrompting an AI agent and then reviewing the code can be slower than just coding it yourself.But when? Do we have simple heuristics for when to use an agent vs code it yourself?Use an agent when it's frontend code (which you can instantly inspect for correctness), or interaction with some API (where you know what to do but not the specific incantations for executing the API calls), or a data analysis, or a prototype.Do it yourself when it's a domain you know very well, or it's highly contextua ...