Workflow
Programming languages
icon
Search documents
Claude Code & the evolution of agentic coding - Boris Cherny
AI Engineer· 2025-07-04 16:00
[Music] Hello. This awesome. This is a big crowd.Who here has used quad code before. Jesus. Awesome.That's what I like to see. Cool. So, my name is Boris.I'm a member of technical staff at Enthropic and creator of Quad Code. And um I was struggling with what to talk about for audience that already knows quad code, already knows AI and all the coding tools and agentic coding and stuff like that. So, I'm going to zoom out a little bit and then we'll zoom back in.So here's my TLDDR. The model is moving really ...
不同程序员的老婆生了娃,他们的代码长啥样?笑死!
菜鸟教程· 2025-05-05 10:49
程序员在产房外等老婆生娃,闲着无聊用代码写个出生证明~ 1、面向对象の文艺青年(Python) 连娃的出生时间都要精确到毫秒,程序员爹怕不是个处女座: import datetime class NewbornBaby: def __init__(self): self.birth_time = datetime.datetime.now() # 精确到毫秒的仪式感 self.gender = "女" def welcome_to_the_world(self): print("欢迎来到世界,宝贝!") # 标准出厂欢迎语 2、 Java -- OOP 狂魔 生个娃都要写 getter,不愧是 Java 程 序员, 这代码量比娃的体重还重,JVM 看了都流泪: baby = NewbornBaby()baby.welcome_to_the_world() # 输出:欢迎来到世界,宝贝! import java.time.LocalDateTime; public class NewbornBaby { private final LocalDateTime birthTime; private final S ...