首页  >>  来自播客: All-In Podcast 更新   反馈

🚨Travis Kalanick: Consumer software CEOs are freaking out about what to do when AI agents take over

发布时间 2025-07-12 04:15:20    来源
As you guys know, I've been spending my time on real estate and construction and robotics. And so I've been out of this kind of consumer software game for a long time. But super interesting over the last six months, there have been a number of consumer software CEOs. When I hang out them or whatever they're like, how are we going to keep doing what we do when the agents take over?
正如你们所知,我一直在从事房地产、建筑和机器人领域的工作。所以,我已经很久没有涉足消费者软件行业了。但在过去六个月中,我发现了一件很有意思的事情,就是有很多消费者软件公司的CEO。当我和他们聚会或者交流的时候,他们都会说,当人工智能主导行业时,我们该如何继续做我们现在的工作呢?

Yeah. The paradigm shift is so profound that the idea that you would visit a web page goes away and you're just in a chat dialog. Every consumer software CEO that has an app in the App Store is tripping. They're tripping right now. And I mean, big boys, I mean, guys with real stuff and sometimes I'm doing almost like therapy sessions with them and like, it's going to be fine.
是的。这个范式转变如此深刻,以至于访问网页的概念都消失了,你仅仅是在一个聊天对话中。每个在应用商店有应用程序的消费软件公司的CEO都感到焦虑。他们现在都很担心。我的意思是,那些大公司、拥有重要产品的CEO们,有时候我几乎像是在给他们做心理咨询,告诉他们,一切都会好起来的。

Yeah, it's going to be okay. You actually have stuff. You have a note. You have real stuff that's a value. They can't replace it with an agent. So you're lying to them. You're doing hospice care and you're telling them everything's going to be okay. There's certain things that are protected and there's certain things that aren't. That's all.
好的,一切都会好起来的。其实你是有东西的,你有笔记,有真正有价值的东西。他们无法用代理人来替代它。所以你只是在对他们撒谎,你正在像临终关怀一样安慰他们,说一切都会好起来。有些东西是受保护的,而有些不是。就是这样。



function setTranscriptHeight() { const transcriptDiv = document.querySelector('.transcript'); const rect = transcriptDiv.getBoundingClientRect(); const tranHeight = window.innerHeight - rect.top - 10; transcriptDiv.style.height = tranHeight + 'px'; if (false) { console.log('window.innerHeight', window.innerHeight); console.log('rect.top', rect.top); console.log('tranHeight', tranHeight); console.log('.transcript', document.querySelector('.transcript').getBoundingClientRect()) //console.log('.video', document.querySelector('.video').getBoundingClientRect()) console.log('.container', document.querySelector('.container').getBoundingClientRect()) } if (isMobileDevice()) { const videoDiv = document.querySelector('.video'); const videoRect = videoDiv.getBoundingClientRect(); videoDiv.style.position = 'fixed'; transcriptDiv.style.paddingTop = videoRect.bottom+'px'; } const videoDiv = document.querySelector('.video'); videoDiv.style.height = parseInt(videoDiv.getBoundingClientRect().width*390/640)+'px'; console.log('videoDiv', videoDiv.getBoundingClientRect()); console.log('videoDiv.style.height', videoDiv.style.height); } window.onload = function() { setTranscriptHeight(); }; if (!isMobileDevice()){ window.addEventListener('resize', setTranscriptHeight); }