Uber CEO Dara Khosrowshahi
Uber CEO Dara Khosrowshahi dropped by the Acquired studio for an Eats delivery, so we broke out the cameras and asked him to hang out for a wide-ranging conversation. :) We talk about his 20 years working with Barry Diller, starting his career at Allen & Company, how the Uber CEO search process ACTUALLY went down… and oh yeah, the massive transformation that’s happened at Uber over the past few years. When Dara took over the company it was bleeding huge sums of cash, losing share to competitors and embroiled in one of the biggest corporate controversies in recent memory. Fast forward to today and it’s turned cashflow positive while also having tripled revenue to over $30B (on $120B in GMV) and solidified its rideshare dominance in the US. And in perhaps the biggest change, it’s done it all
Could not retrieve the full article text.
Read on Acquired Podcast →Sign in to highlight and annotate this article

Conversation starters
Daily AI Digest
Get the top 5 AI stories delivered to your inbox every morning.
More about
claudeupdatecompany
I Analyzed 500 AI Coding Mistakes and Built an ESLint Plugin to Catch Them
Here's a pattern you've probably seen: const results = items . map ( async ( item ) => { return await fetchItem ( item ); }); Looks fine, right? Your AI assistant wrote it. Tests pass. Code review approves it. Then production hits, and results is an array of Promises — not the values you expected. The await on line 2 does nothing. You needed Promise.all(items.map(...)) or a for...of loop. This isn't a TypeScript bug. It's a common LLM coding mistake — one of hundreds I found when I started researching AI-generated code quality. The Problem: AI Writes Code That Works, Not Code That's Right LLMs are excellent at writing code that passes tests. They're terrible at writing code that handles edge cases, maintains consistency, and follows best practices under the hood. After reviewing several em
Knowledge Map
Connected Articles — Knowledge Graph
This article is connected to other articles through shared AI topics and tags.



Discussion
Sign in to join the discussion
No comments yet — be the first to share your thoughts!