<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0" xmlns:media="http://search.yahoo.com/mrss/"><channel><title><![CDATA[The Pragmatic Engineer]]></title><description><![CDATA[Observations across the software engineering industry.]]></description><link>https://blog.pragmaticengineer.com/</link><image><url>https://blog.pragmaticengineer.com/favicon.png</url><title>The Pragmatic Engineer</title><link>https://blog.pragmaticengineer.com/</link></image><generator>Ghost 6.61</generator><lastBuildDate>Mon, 31 Aug 2026 10:23:58 GMT</lastBuildDate><atom:link href="https://blog.pragmaticengineer.com/rss/" rel="self" type="application/rss+xml"/><ttl>60</ttl><item><title><![CDATA[The Pulse: We need to talk about migrations with AI]]></title><description><![CDATA[Asana migrated off testing framework Enzyme in two weeks: without AI, this work would surely have been kicked down the road. Airbnb and Uber share similar stories and AI seems excellent at migrations.]]></description><link>https://blog.pragmaticengineer.com/the-pulse-we-need-to-talk-about-migrations-with-ai/</link><guid isPermaLink="false">6a900f61f1788f0001c466a3</guid><dc:creator><![CDATA[Ivan Klaric]]></dc:creator><pubDate>Thu, 27 Aug 2026 18:04:54 GMT</pubDate><content:encoded><![CDATA[<p><em>Hi, this is Gergely with a bonus, free issue of the Pragmatic Engineer Newsletter. In every issue, I cover Big Tech and startups through the lens of senior engineers and engineering leaders. Today, we cover one out of four topics from </em><a href="https://pragmaticengineer.substack.com/p/the-pulse-we-need-to-talk-about-migrations" rel="noopener noreferrer nofollow"><em>last week&#x2019;s The Pulse</em></a><em> issue. Full subscribers received the article below seven days ago. If you&#x2019;ve been forwarded this email, you can </em><a href="https://newsletter.pragmaticengineer.com/about?ref=blog.pragmaticengineer.com" rel="noopener noreferrer nofollow"><em>subscribe here</em></a><em>.</em></p><p>OpenAI put an impressive-sounding case study about how they helped Asana save $5.9M with a single migration. From <a href="https://openai.com/index/asana/?ref=blog.pragmaticengineer.com" rel="noopener noreferrer nofollow">OpenAI</a> (emphasis mine.)</p><blockquote><strong>&#x201C;Asana cleared 5 years of engineering work in 2 weeks with Codex</strong>. Using OpenAI Codex, Asana replaced an outdated testing system in two weeks for about $12K.<br><br>For this project, Codex helped Asana&#x2019;s engineers remove Enzyme, an outdated testing system that had made the company&#x2019;s code harder to upgrade. Model and infrastructure costs came to about $12,000, compared with Asana&#x2019;s roughly $6 million estimate for the previous staffing plan.<br><br>After 1.5 weeks of engineering effort spread across two calendar weeks, Enzyme was fully removed. Model and infrastructure costs totaled about $12K. For comparison: the previous plan was expected to take at least five years and estimated to cost roughly $6M. The experience changed which long-running software projects the company believes are practical to take on.&#x201D;</blockquote><p>For context, Asana migrated from Enzyme to React Testing Library, which indeed would not be a simple migration. However, their estimate of four engineers (each on circa $300K/year, according to OpenAI&#x2019;s arithmetic), spending five years on the project, had me like:</p><figure class="kg-card kg-image-card"><img src="https://substackcdn.com/image/fetch/$s_!qxa1!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F798d1525-1097-40a9-b68e-8ae5dbb6598f_970x666.png" class="kg-image" alt loading="lazy" width="970" height="666"></figure><p>But thinking about this for longer raised the question: what does a migration from Enzyme to React Testing Library even look like?</p><h3 id="enzyme-to-react-testing-library-migration"><strong>Enzyme to React Testing Library migration</strong></h3><p>Let&#x2019;s take a simple test and see how it looks in various testing libraries.</p><p>For our test, we want to verify that a button increments a counter. Here&#x2019;s our button in React:</p><figure class="kg-card kg-image-card kg-card-hascaption"><img src="https://substackcdn.com/image/fetch/$s_!h51u!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ff06b0181-683a-4d84-9202-07f934ddd24e_1096x718.png" class="kg-image" alt loading="lazy" width="1096" height="718"><figcaption><span style="white-space: pre-wrap;">Our button that increments its counter</span></figcaption></figure><p>Now, the test to verify this, in Enzyme:</p><figure class="kg-card kg-image-card kg-card-hascaption"><img src="https://substackcdn.com/image/fetch/$s_!l6Y2!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F06ccd8ac-1d7c-40de-9a69-ba767cd39c1a_1166x1038.png" class="kg-image" alt loading="lazy" width="1166" height="1038"><figcaption><span style="white-space: pre-wrap;">The unit test in Enzyme</span></figcaption></figure><p>And let&#x2019;s rewrite this test in React Testing Library:</p><figure class="kg-card kg-image-card kg-card-hascaption"><img src="https://substackcdn.com/image/fetch/$s_!ELJG!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F552f03c4-627e-452b-95a9-7d118904e12b_1240x990.png" class="kg-image" alt loading="lazy" width="1240" height="990"><figcaption><span style="white-space: pre-wrap;">The unit test in React Testing Library</span></figcaption></figure><p>The two tests do the same, but they have <em>completely</em> different syntax! Let&#x2019;s see just how different they are, with a side-by-side comparison:</p><figure class="kg-card kg-image-card kg-card-hascaption"><img src="https://substackcdn.com/image/fetch/$s_!F2AP!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F99ee548b-3558-4123-8d6b-c8524cedd121_1696x1022.png" class="kg-image" alt loading="lazy" width="1456" height="877"><figcaption><span style="white-space: pre-wrap;">Two very different files: the only code in common is the imports</span></figcaption></figure><p>The main reason for this difference is that the two frameworks use a fundamentally different approach to testing. Whereas Enzyme is oriented towards component testing (notice how the test operates on a component instance), the React Testing Library operates on the rendered <a href="https://en.wikipedia.org/wiki/Document_Object_Model?ref=blog.pragmaticengineer.com" rel="noopener noreferrer nofollow">Document Object Model</a> (a data structure representing the HTML shipped to the client) so the test sees the whole rendered page, not just the component its written for. That&#x2019;s why the testing approach will differ radically between the two frameworks, especially when testing complex user journeys. You can learn more <a href="https://kentcdodds.com/blog/introducing-the-react-testing-library?ref=blog.pragmaticengineer.com" rel="noopener noreferrer nofollow">here</a> on the tradeoffs between the two approaches from the React Testing Library author.</p><h3 id="it-took-airbnb-6-weeks-to-migrate-3500-tests-with-ai"><strong>It took Airbnb 6 weeks to migrate 3,500 tests with AI</strong></h3><p>Last year, Airbnb <a href="https://medium.com/airbnb-engineering/accelerating-large-scale-test-migration-with-llms-9565c208023b?ref=blog.pragmaticengineer.com" rel="noopener noreferrer nofollow">revealed </a>how they migrated their Enzyme test suite of 3,500 component test files within six weeks with LLMs. The estimate of doing this by hand was 1.5 engineering years. Airbnb did the LLM-aided migration in a multi-phase process:</p><figure class="kg-card kg-image-card kg-card-hascaption"><img src="https://substackcdn.com/image/fetch/$s_!lMyB!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F368903d9-6c04-4b96-8670-8c8acfb9626f_587x369.png" class="kg-image" alt loading="lazy" width="587" height="369"><figcaption><i><em class="italic" style="white-space: pre-wrap;">Five phases of the migration, for each file. Source: </em></i><a href="https://medium.com/airbnb-engineering/accelerating-large-scale-test-migration-with-llms-9565c208023b?ref=blog.pragmaticengineer.com" target="_blank" rel="noopener noreferrer nofollow"><i><em class="italic" style="white-space: pre-wrap;">Airbnb</em></i></a></figcaption></figure><p>Airbnb&#x2019;s team had to build loops to keep retrying migrations; once they did, 75% of files were migrated in just four hours, and the migrations were straightforward. They then built a more sophisticated refactor pipeline for the remaining 25% of tests; after building the pipeline, the new loop migrated most of the remaining tests (97%) in total, after running over 4 days. The remaining 3% was done with LLM input, with engineers finishing it in a week.</p><p>This was in March 2025, when the frontier coding model was Claude 3.7 Sonnet. Today, models are a lot more capable, such as the likes of GPT-5.6 Sol and Claude Fable 5.</p><h3 id="ai-makes-impractical-migrations-doable"><strong>AI makes impractical migrations doable</strong></h3><p>On the basis that it took Airbnb six weeks, I find it credible that it took Asana two weeks to migrate what is probably a similarly complex test infrastructure from Enzyme to RTL, a year later.</p><p><strong>The time and $6M cost as quoted by OpenAI feels inflated. </strong>I assume the numbers were based on an estimate that a fulltime engineer could do a maximum of X tests migrated per day, where X was between 5 and 10. Then, calculate the number of engineering years this takes (perhaps 20 engineering years), and multiply by the cost of an engineer. You estimate a project like this when it&#x2019;s an undesirable project you <em>really</em> don&#x2019;t want to do as an engineer!</p><p>So, looking at it from this point of view: does it matter if the estimate was 1.5 years (Airbnb) or half a decade (Asana, hypothetically)? Or if the estimated cost was $1M or $5M? It would still be an <em>impractical</em> migration and a foolish endeavor: too long and distracting, at least, in the &#x201C;traditional&#x201D; way!</p><p><strong>Pre-AI, years-long migrations were rare. </strong>In 2021, Sentry took 1.5 years to convert their frontend codebase from JavaScript to TypeScript. That was a migration of 1,100 files and 95,000 lines of code! Around 10 engineers worked on the migration, so if we assume a $300K-per-engineer cost, that&#x2019;s a $2&#x2013;4M cost for circa 95,000 lines of code.</p><p><strong>Indeed, Asana&#x2019;s reported $12,000 migration cost could actually cost even less if there was ruthless focus on cost optimization. </strong>What about using a model that&#x2019;s 10x cheaper than OpenAI, like an open model running on inference providers? After all, why use the most expensive model, especially if a company already owns GPUs, running models, making inference practically free (except for power costs, that is.) For a first run, $12,000 would be affordable for a company paying $300K for engineers. But for subsequent runs, I&#x2019;d wager it&#x2019;s worth spending time optimizing the cost, and saving $10K per migration (or more!)</p><h3 id="a-few-more-details-from-inside-asana">A few more details from inside Asana</h3><p>I managed to catch up with <a href="https://www.linkedin.com/in/dan-ubilla/?ref=blog.pragmaticengineer.com"><u>Dan Ubilla</u></a> at Asana, who leads the Developer Productivity group at the company. He helpfully clarified a few things about the <a href="https://asana.com/inside-asana/migrating-off-enzyme-2-weeks?ref=blog.pragmaticengineer.com"><u>Enzyme migration post</u></a> on the Asana site:</p><ul><li><strong>Asana started the Enzyme migration in 2024. </strong>The team had 4,000+ Enzyme files to migrate, and they took a first stab at the migration with LLMs, at the time. Beyond migrating existing tests, much of this phase focused on getting the codebase into a state where future tests could be written more idiomatically. This included improving mocking, data set up, and coverage instrumentation. They finished migrating about 25% of the files to RTL, choosing the tests that had the highest return on investment: meaning easiest to migrate, or most frequently updated ones.</li><li><strong>The remainder of the migration became low priority. </strong>Asana prioritized migrations as critical (&#x201C;must do soon&#x201D;), important (&#x201C;important to do soon&#x201D;), and opportunistic (&#x201C;nice to have&#x201D;). The company has a good number of critical and important migrations, and the remainder of the Enzyme migration sat as one of the many opportunistic.</li><li><strong>Five years was about when the migration was <em>projected</em> to finish. </strong>The effort was not about &#x201C;a team working for five years, nonstop on the project&#x201D; &#x2013; not at all! It was about the timeframe that the opportunistic Enzyme migration would have been completed, given its priority, and done, realistically. Given this migration was going on for two years, the five-year estimate was a rational one.</li><li><strong>The team wanted to prove that LLMs drastically speed up migrations, and demonstrated it with an opportunistic , low-priority one. </strong>The Enzyme migration was not all that important to do quickly, and would have sat around for years. So it was the perfect candidate to prove that with LLMs, long migrations can be sped up!</li></ul><p>And finally, one addition from my end:</p><p><strong>The $6M cost was a back-of-the envelope estimation. </strong>I asked Dan how this estimate of the migration costing $6M came together. Dan confirmed that the estimation was done the same way as most of us do these estimations:</p><ul><li>Estimate how long it takes an engineer to manually migrate a single Enzyme file (including rewrite + validation). Be generous with this estimation</li><li>Multiply it by the outstanding files to migrate (the 3,000+ ones)</li><li>Add in the time to remove any traces of the framework, monitoring, static analysis tools</li><li>Multiply by the hourly rate of a typical engineer</li><li>&#x2026; and the number came out to $6M</li></ul><p>This estimation does not take into account that migrating even ten files by hand takes less than ten times more than it takes to migrate one file (you become more efficient), nor does it assume LLM usage. It&#x2019;s a baseline to get a sense of how the work would have been done, pre-AI, if distributed across all Asan engineers to pick up, and migrate few files, whenever they have time. <em>My take is that this number is probably an overestimation, but the point is less about the number, and more to convey that this is a lot of work!</em></p><p>Internally, Asana&#x2019;s team and leadership are now convinced about the usefulness of LLMs for migrations, and they&#x2019;ll be using them for other, long-running, otherwise soul-sucking migrations.</p><h3 id="expect-long-avoided-migrations-to-finally-happen"><strong>Expect long-avoided migrations to finally happen</strong></h3><p>A few months ago, Uber <a href="https://www.uber.com/gb/en/blog/junit-migration/?ref=blog.pragmaticengineer.com" rel="noopener noreferrer nofollow">shared</a> that they executed a massive JUnit migration in four months with two engineers and AI: moving 600,000 unit tests spanning 15 million lines of code (!!) by moving from the unsupported JUnit 4 to JUnit 5. During the migration, 1.25M lines of code were modified. This type of migration used to be impractical; with AI tools, it took eight engineering months of effort, plus AI costs.</p><p>And there&#x2019;s the <a href="https://newsletter.pragmaticengineer.com/p/the-pulse-what-can-we-learn-from?ref=blog.pragmaticengineer.com" rel="noopener noreferrer nofollow">Bun migration</a> (530,000 lines of code from Zig to Rust in two weeks for a $165K API cost) as another example of drastically faster migrations with AI.</p><p><strong>The best part about rapid, AI-assisted migrations is not needing to worry about supporting &#x201C;old&#x201D; libraries. </strong>One of the main reasons library migrations have been such a pain was the need to keep supporting the old library or technology during the migration. Shortening this window could well be worth the additional cost, at least until we figure out how to drastically reduce the time and cost of these migrations, as well.</p><p>The shared characteristic of all of the above migrations is that engineers needed to plan for it, design verification loops, and be involved throughout. I always dreaded migrations, so I see it as good news that we have a new tool to use for &#x201C;grunt work&#x201D; like this.</p><hr><p>Read the full issue of <a href="https://pragmaticengineer.substack.com/p/the-pulse-we-need-to-talk-about-migrations" rel="noopener noreferrer nofollow"><strong>last week&#x2019;s The Pulse</strong></a><strong>,</strong> or check out <a href="https://newsletter.pragmaticengineer.com/p/the-pulse-meta-wanted-to-reduce-teams?ref=blog.pragmaticengineer.com" rel="noreferrer"><strong>this week&#x2019;s The Pulse</strong></a>. This week&#x2019;s issue covers:</p><ol><li><strong>Did Meta really decide to reduce team sizes by 60% because of AI?&#xA0;</strong>An in-depth report by Reuters details how Meta&#x2019;s leadership decided to slash team sizes by 60%, hatching plans in January to execute the social media giant&#x2019;s largest-ever layoffs. But Mark Zuckerberg changed his mind at the last second, and now the company is stuck with all-time low morale, a wave of resignations, and its prized culture turning mercenary. Analysis.</li><li><strong>More thoughts on Ramp&#x2019;s in-house AI infra.&#xA0;</strong>Building AI tools in-house is akin to an &#x201C;internal bootcamp&#x201D; for AI engineering, which probably justifies the exercise at most tech companies.</li><li><strong>Industry Pulse.&#xA0;</strong>GitHub&#x2019;s load increase is speeding up, Stripe acquires OpenRouter, Ramp launches Ramp Router in public, a career &#x201C;double boomerang&#x201D;, App Store revenue drops for the first time ever at Apple &#x2013; and what is a bug?</li></ol>]]></content:encoded></item><item><title><![CDATA[Why you're not getting a response to your podcast pitch from me (or others)]]></title><description><![CDATA[<p><em>This email is a response to the 50+ podcast pitches that arrived in my inbox just last month, and keep arriving in growing numbers, from PR agencies and marketing teams at various companies. It&apos;s also a message to tech founders building stuff for developers: focus on building something</em></p>]]></description><link>https://blog.pragmaticengineer.com/why-youre-not-getting-a-response-to-your-podcast-pitch-from-me-or-others/</link><guid isPermaLink="false">6a900187f1788f0001c465cd</guid><dc:creator><![CDATA[Gergely Orosz]]></dc:creator><pubDate>Thu, 27 Aug 2026 09:59:13 GMT</pubDate><content:encoded><![CDATA[<p><em>This email is a response to the 50+ podcast pitches that arrived in my inbox just last month, and keep arriving in growing numbers, from PR agencies and marketing teams at various companies. It&apos;s also a message to tech founders building stuff for developers: focus on building something that devs love, or find epic, and not hiring marketing/PR folks who then mass-email podcast hosts with AI-generated podcast pitches.</em></p><p>I host <a href="https://pragmaticpodcast.com/?ref=blog.pragmaticengineer.com" rel="noreferrer">The Pragmatic Engineer Podcast</a>. Thanks to so many of you tuning in, the podcast is widely listened to &#x2013; it&apos;s one of the <a href="https://podcasts.apple.com/us/charts?genre=1318&amp;ref=blog.pragmaticengineer.com" rel="noreferrer">top-ranked</a> software engineering podcasts, and episodes <a href="https://blog.pragmaticengineer.com/podcast-sponsorship/" rel="noreferrer">typically reach</a> 500K+ people. <em>If you&apos;re listening to the podcast, or reading the newsletter: thank you!</em></p><p>The podcast only has guests who, as as a software engineer, I&apos;m excited to talk to and learn from. These folks typically fall into one of these categories:</p><ul><li><strong>Built/builds epic pieces of technology.</strong> Examples include <a href="https://newsletter.pragmaticengineer.com/p/from-swift-to-mojo-and-high-performance?ref=blog.pragmaticengineer.com" rel="noreferrer">Chris Lattner</a> (built LLVM, Swift, Mojo), <a href="https://newsletter.pragmaticengineer.com/p/typescript-c-and-turbo-pascal-with?ref=blog.pragmaticengineer.com" rel="noreferrer">Anders Heljsberg</a> (created C#, TypeScript, TurboPascal), <a href="https://newsletter.pragmaticengineer.com/p/the-programming-language-after-kotlin?ref=blog.pragmaticengineer.com" rel="noreferrer">Andrey Breslav</a> (created Kotlin), <a href="https://newsletter.pragmaticengineer.com/p/how-linux-is-built-with-greg-kroah?ref=blog.pragmaticengineer.com" rel="noreferrer">Greg KH</a> (longtime Linux maintainer), <a href="https://newsletter.pragmaticengineer.com/p/how-kubernetes-is-built-with-kat?ref=blog.pragmaticengineer.com" rel="noreferrer">Kat Cosgrove</a> (longtime Kubernetes release lead), <a href="https://newsletter.pragmaticengineer.com/p/mitchell-hashimoto?ref=blog.pragmaticengineer.com" rel="noreferrer">Mitchell Hashimoto</a> (Terraform, Ghostty).</li><li><strong>Works at a company I find very interesting and relevant. </strong>Examples include <a href="https://newsletter.pragmaticengineer.com/p/building-claude-code-with-boris-cherny?ref=blog.pragmaticengineer.com" rel="noreferrer">Boris Cherny</a> at Anthropic (created Claude Code), <a href="https://newsletter.pragmaticengineer.com/p/netflix?ref=blog.pragmaticengineer.com" rel="noreferrer">Elizabeth Stone</a> (CTO at Netflix: a company whose engineering culture I&apos;ve been fascinated with), or <a href="https://newsletter.pragmaticengineer.com/p/how-aws-s3-is-built?ref=blog.pragmaticengineer.com" rel="noreferrer">Mai-Lan Tomsen Bukovec</a> (leads S3 at AWS)</li><li><strong>Is a deep domain expert </strong>- typically with a decade+ of experience.<strong> </strong>For example, <a href="https://newsletter.pragmaticengineer.com/p/developer-productivity-with-dr-nicole?ref=blog.pragmaticengineer.com" rel="noreferrer">Nicole Forsgren</a> (developer productivity, DORA, SPACE), <a href="https://newsletter.pragmaticengineer.com/p/measuring-the-impact-of-ai-on-software?ref=blog.pragmaticengineer.com" rel="noreferrer">Laura Tacho</a> (DX),  <a href="https://newsletter.pragmaticengineer.com/p/why-rust-is-different-with-alice?ref=blog.pragmaticengineer.com" rel="noreferrer">Alice Ryhl</a> (Rust), <a href="https://newsletter.pragmaticengineer.com/p/cicd-with-robert-erez?ref=blog.pragmaticengineer.com" rel="noreferrer">Robert Erez</a> (CI/CD)</li><li><strong>Deep thinkers with a decade+ of experience. </strong>For example, <a href="https://newsletter.pragmaticengineer.com/p/kubernetes-and-retiring-at-the-top?ref=blog.pragmaticengineer.com" rel="noreferrer">Kelsey Hightower</a>, <a href="https://newsletter.pragmaticengineer.com/p/software-architecture-with-grady-booch?ref=blog.pragmaticengineer.com" rel="noreferrer">Grady Booch</a>, or <a href="https://newsletter.pragmaticengineer.com/p/stop-being-skeptical-about-ai-for?ref=blog.pragmaticengineer.com" rel="noreferrer">Charity Majors</a>.</li></ul><p>As the podcast has become more popular, I am getting overloaded with pitches from PR people, Comms people, and Marketing people, though. The typical pitch is usually AI-written, and goes something like this:</p><blockquote>From &lt;CommsPerson@Startup.com&gt;<br><br>Hi Gergely,<br><br>I have a potential guest and topic that feels unusually aligned with The Pragmatic Engineer&#x2019;s audience.<br><br>X is the co-founder and CEO of Startup, which now serves ## million developers and ## thousand companies. The platform processes {large number of business metrics} every day, giving CEO a large-scale view into how engineering ability and team expectations are changing as AI-generated code becomes standard.<br><br>The useful conversation would not be a Startup product story. It would examine questions engineering leaders are actively dealing with:<br><br>- AI-generated topic #1 assumed to be a fit for the podcast<br>- AI-generated topic #2<br>- AI-generated topic #3 <br><br>CEO has built Startup from its earliest days in Location all the way to global enterprise scale. He/she can bring both operating experience and concrete data instead of generic AI predictions.<br><br>Would this be worth exploring for the podcast?<br><br>Best,<br><br>MarketingPerson<br>Startup</blockquote><p>I get 10-20 of these pitches, per week, in my inbox. Until now, I&apos;ve been ignoring them, but then MarketingPerson sends two more follow-ups. I now have an AI agent monitoring my inbox, and I decided to at least send an AI reply to explain why I&apos;m not sending a response to these pitches. </p><p>If you look at how my podcast works, it should be obvious to why such guest requests are not a good fit - and why having founders wanting to talk about their own startup would be a bore of a topic, and, frankly, a waste of time for 99% of listeners &#x2013; possibly more.</p><p>But to spell it out to the marketing folks:</p><p><strong>A) Send out AI emails: expect nothing back.</strong> Don&apos;t expect a response to an AI-written email, or a templated email. I get it, you <em>think</em> it&apos;s a numbers game: send a tweaked email out to 100 podcasts, and hope that at least one replies. In reality, by playing the same game as everyone else does, you are assisting to the noise, and end up drowning yourself in it as well.</p><p>And this goes not only to you, as a marketing person, but also to a founder/CEO who thinks they can put in zero effort in A Thing and get great results: you&apos;re kidding yourself. <em>To those founders who have set themselves the goal of being invited onto a specific podcast: I&apos;d challenge you, ask a former guest, how they got invited? I can already tell you that it sure wasn&apos;t an AI-generated email sent out by a marketing person they hired!</em></p><p><strong>B) My podcast doesn&apos;t take self-pitches. </strong>The only type of pitch I listen to is a software engineer telling me &quot;wow it could be great to have this and this person on the podcast, because of this thing they built/thing they did.&quot; In these cases, I check out that thing they built or thing they did. When a lot of people tell me the same thing, I might listen more.</p><p>But a CEO recommending themselves as a podcast guest? Or their marketing or PR team recommending the same? <em>Ignore</em>. </p><p>But to leave these marketing folks with some advice:</p><p><strong>If your CEO/founder has so much to say about a topic: say it and write it! </strong>Ironically, every time I look up what the founder has written about the topic they (or their marketing team) are pitching, there&apos;s nothing! Nada.</p><p>If the pitch is sincere, then write down your thoughts! Post it on your company blog or personal blog.</p><p>But if you&apos;re just looking for &quot;distribution&quot;, &quot;free publicity&quot;, mass emailing podcasts is not how to go about it. Everyone is doing it, and it&apos;s not working for anyone.</p><p>The only founders you see on podcasts who are worth listening to? They built some epic stuff, are often hands-on, and they did not mass-email dozens or hundreds of podcasts with an AI-generated, generic agenda to talk about.</p><p></p>]]></content:encoded></item><item><title><![CDATA[The Pulse: Meta’s self-inflicted resignation-wave]]></title><description><![CDATA[In what was predictable: Meta’s layoffs and forced reassignments pushed engineers not impacted by either to look for a new job. Meta is now offering large equity retainers, and it doesn’t seem working]]></description><link>https://blog.pragmaticengineer.com/the-pulse-metas-self-inflicted-resignation-wave/</link><guid isPermaLink="false">6a87427404189e00018c442c</guid><dc:creator><![CDATA[Gergely Orosz]]></dc:creator><pubDate>Thu, 20 Aug 2026 18:08:45 GMT</pubDate><content:encoded><![CDATA[<p><em>Hi, this is Gergely with a bonus, free issue of the Pragmatic Engineer Newsletter. In every issue, I cover Big Tech and startups through the lens of senior engineers and engineering leaders. Today, we cover one out of four topics from </em><a href="https://newsletter.pragmaticengineer.com/p/the-pulse-metas-self-inflicted-resignation?ref=blog.pragmaticengineer.com" rel="noopener noreferrer nofollow"><em>last week&#x2019;s The Pulse</em></a><em> issue. Full subscribers received the article below seven days ago. If you&#x2019;ve been forwarded this email, you can</em><a href="https://newsletter.pragmaticengineer.com/about?ref=blog.pragmaticengineer.com" rel="noopener noreferrer nofollow"><em> subscribe here</em></a><em>.</em></p><p>Two months ago, I <a href="https://newsletter.pragmaticengineer.com/p/why-is-meta-destroying-its-engineering?ref=blog.pragmaticengineer.com" rel="noopener noreferrer nofollow">covered</a> how Meta seemingly deliberately started destroying its once-standout engineering organization. The company did 10% layoffs at a time when revenue and profits hit an all-time high, and reassigned about 20-30% of software engineers to data labeling with basically no notice.</p><p>The result was that a good chunk of software engineers at Meta &#x2013; even those not reassigned &#x2013; were starting to interview elsewhere:</p><figure class="kg-card kg-image-card kg-card-hascaption"><img src="https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/2026/08/image-6.png" class="kg-image" alt loading="lazy" width="1456" height="983" srcset="https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/size/w600/2026/08/image-6.png 600w, https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/size/w1000/2026/08/image-6.png 1000w, https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/2026/08/image-6.png 1456w" sizes="(min-width: 720px) 720px"><figcaption><i><em class="italic" style="white-space: pre-wrap;">Why so many engineers at Meta are looking for a way out, visualized. Source: </em></i><a href="https://newsletter.pragmaticengineer.com/p/why-is-meta-destroying-its-engineering?ref=blog.pragmaticengineer.com" target="_blank" rel="noopener noreferrer nofollow"><i><em class="italic" style="white-space: pre-wrap;">Why is Meta destroying its engineering organization?</em></i></a></figcaption></figure><p>I said &#x2013; and still maintain &#x2013; that the layoffs were an unforced, self-inflicted error on Meta&#x2019;s part. Coupled with forced reassignment, they struck disaster. And I&#x2019;ve now gathered new details that confirm that Meta is bleeding top engineering and product management talent:</p><h3 id="some-layoffs-reversed-in-the-11th-hour">Some layoffs reversed, in the 11th hour</h3><p>In the UK, mass layoffs require a notification to those <em>potentially</em> affected, before the cuts can happen. A few weeks after this notification, a good chunk of folks were &#x201C;un-notified,&#x201D; I confirmed. But those on notice had already started to look for jobs, obviously.</p><h3 id="retainer-equity-grants-offered-to-ic6-engineers-resigning">Retainer equity grants offered to IC6+ engineers resigning</h3><p>Meta started to offer large retainer equity grants to those resigning and leaving for Google, Anthropic, and OpenAI: a practice not done before. Talking with long-time Meta engineers, Meta simply didn&#x2019;t make counteroffers or negotiate when an engineer handed in their resignation. But this practice has been abandoned. Here&#x2019;s a story of a senior, long-tenured engineer I confirmed to have happened:</p><ul><li>This dev was force-reassigned to one of the AI data labeling teams</li><li>They thought &#x201C;oh no, this is not what I want to do&#x201D; and started to interview</li><li>Got a Google offer, but compensation was below their current one. Google basically lowballed them.</li><li>Decided to leave anyway. Told their new manager they were resigning.</li><li>New manager asked for some time, then presented a large, one-off, retainer equity grant, vesting over 3 years</li><li>The engineer went back to Google, telling the company, unfortunately, they are a key engineer and showed them the retainer amount Meta is paying for them to stay</li><li>Google upped their offer, out-bidding Meta&#x2019;s retainer offer</li><li>The engineer who was desperate to leave &#x2013; even for lower compensation! &#x2013; was thrilled, and happily left for Google.</li></ul><p><strong>Retainer equity seems to be offered for most IC6 engineers who resigned in the last few weeks. </strong>I talked with seven such people, who were all IC6 (staff-level engineer) and IC7 (principal-level engineers), who shared more details. They are not aware of IC4 (mid-level engineer) or IC5 (senior-level engineers) getting such offers.</p><p><strong>Retainer equity offered is $400K to $1M+</strong>, and vests over 3 years, for the folks who got these offers. The $1M+ offers were all for engineers with Anthropic or OpenAI offers, and I confirmed a $400K and a $600K grant for engineers with an offer for other, smaller AI startups.</p><p>A current Meta engineer who is interviewing asked me if these folks needed to present their offer letter to get a counteroffer. I asked two of these folks with counteroffers, and neither had to do so, but they both indicated they were handing in their resignation. Upon receiving this notification, their director, together with HR, offered a discretionary retainer equity, should they stay.</p><h3 id="anthropic-and-openai-on-a-hiring-spree-from-meta">Anthropic and OpenAI on a hiring spree from Meta</h3><p>Anthropic and OpenAI seem to be on a hiring spree, signing Meta engineers that Meta wants to retain now that it is too late! I have confirmed that three engineers who received an offer from Anthropic were also offered large, $1M+ equity grants (vesting over 4 years) as counter-offers to stay. Two out of the three rejected it and joined Anthropic, and the third one initially accepted the offer and then still left for Anthropic a month later, forfeiting this grant.</p><p>OpenAI is having similar success, and the two AI labs seem to be the main destination for now ex-Meta engineers to bounce to. It makes sense: these companies can match Meta&#x2019;s total compensation, and although neither OpenAI nor Anthropic is publicly traded, both companies organize secondary equity sales, and their respective IPOs are likely to happen in 3-12 months&#x2019; time.</p><h3 id="ai-startups-also-successful-in-hiring-infra-experts-from-meta">AI startups also successful in hiring infra experts from Meta</h3><p>I had an in-depth discussion with another long-tenured AI infra engineer at Meta, who was considering whether to stay, or to go. This person wrote up their situation, and shared it with me, writing:</p><blockquote>&#x201C;With the current situation at Meta (layoffs, forced drafting to do AI work, general sense of disruption at work, low moarale, and almost zero productivity across teams, plus multiple reorgs) I started to look around, on the market, a few weeks before the 20 May layoffs. I figured I have a 50% chance of being let go.<br><br>I did not get laid off, but I got offers from startups, and one from a high-growth AI startup I like, and also an offer from Google.<br><br>Now, the pros to staying a Meta:Context, relationshipsScale that few others haveBig Tech perks, relatively &#x201C;chill&#x201D; WLB in terms of oncallHigh TC<br><br>The cons:Terrible morale, hard to &#x201C;move&#x201D; work through mostly unmotivated teams all around meRe-orgs continue, I have very low confidence in middle management (Directors, VPs) to navigate this churnFurther layoffs are likely: it&#x2019;s clear that there&#x2019;s more bloat, surely Zuck will do another round in 2027. And no one is safe during a layoff<strong>A &#x2018;doom loop&#x2019; for anyone who stays</strong>: low morale &#x2192; unmoitivated bith highly compensated engineers &#x2192; a bloated organization that moves slow&#x201D;</blockquote><p>After a new reorg, this engineer got a supportive manager, who made it clear they would help them thrive inside of Meta. So the engineer rejected both the AI startup&#x2019;s offer and that of Google, deciding to stay&#x2026; but only for a month!</p><p>The AI startup&#x2019;s founder spent more time with this engineer, increased the equity in the package significantly, and convinced this engineer that at the startup they <em>matter </em>as a person, while at Meta they would be doing soulless work, worrying about the next layoff, probably early 2027.</p><p>So this engineer also handed in their resignation. And it all started with the layoffs: the engineer assumed there was a 50% chance of being let go and wanted more career stability!</p><h3 id="those-deciding-to-not-resign-stay-for-the-money">Those deciding to not resign: stay for the money?</h3><p>There are engineers staying &#x2013; at least until the end of the year, to wait for the stock refershers &#x2014; which we&#x2019;ll talk about in just a moment.</p><p>Another engineer I talked to decided to quit Meta with morale so low, and start his own thing. Management convinced him to stay until the end of the year, hinting at large equity refreshers being handed out around January, which could be in the $1M+ range for this specific engineer.</p><h3 id="the-2022-stock-price-causing-a-tc-decrease-for-many">The 2022 stock price causing a TC decrease for many?</h3><p>One reason there&#x2019;s speculation about large equity refreshers being handed out at the end of the year is that Meta&#x2019;s stock price was very low in 2022 and 2023, when equity refreshers and new hire grants were handed out. In both March 2022 and March 2023, the stock price was around $200 - which is about a third of this year&#x2019;s stock price (which has been fluctuating between $520- 680, currently sitting at $540.) By March 2024, the stock price rose to $500, and then to $580 in March 2025.</p><p>Because of this, those who joined Meta in 2022 have seen their equity grants nearly triple, and the 2023 equity is worth nearly 3x as well. But for these lucky folks, total compensation is set to drop by the end of this year, and their equity refresher would need to be higher than in past years to avoid a compensation drop.</p><p>Inside of Meta, engineers who I talked to are split between expecting further attrition (those leaving whose total compensation drops steeply) and those who think that there will be more attrition unless there are higher-than-usual equity refreshers.</p><h3 id="a-%E2%80%9Cmercenary%E2%80%9D-culture-at-meta">A &#x201C;mercenary&#x201D; culture at Meta?</h3><p>I wonder if Meta made a massive mistake by treating engineers as &#x201C;commodities&#x201D; and turning their culture into a &#x201C;mercenary&#x201D; one. Between March and June, Meta treated engineers as replaceable commodities that could be thrown out or moved between teams, while stripping them of any autonomy. The reassignments to AI labeling were not explained, nor were managers or individuals asked about preferences: from above, someone said that <em>Alice</em> and <em>Bob</em>, starting on Monday, are no longer with the team, but are training up Meta AI. Never mind that these were the two most experienced engineers on the team, or that <em>Bob</em> was the team&#x2019;s infra expert, and <em>Alice</em> the &#x201C;fixer&#x201D; engineer on the team.</p><p>And all this damage was done, for what? It was to allow Meta to restart its AI coding model development efforts, and release <a href="https://ai.meta.com/blog/introducing-muse-spark-msl/?ref=blog.pragmaticengineer.com" rel="noopener noreferrer nofollow">Meta Muse Spark</a>: an AI model that is currently the <a href="https://artificialanalysis.ai/articles/muse-spark-1-2?ref=blog.pragmaticengineer.com" rel="noopener noreferrer nofollow">7th most capable</a> AI model as per Artificial Intelligence Analysis, tied with Grok 4.5. Credit where it&#x2019;s due: with this model, Meta is now well ahead of Google&#x2019;s Gemini in capability.</p><p>With the damage done, there is little motivation for anyone to stay at Meta &#x2013; unless they are on a visa, or if it&#x2019;s about the money. You can have an OK engineering culture with a team who is mostly interested in making more money than what they would elsewhere: but this is more of a mercenary culture, and companies run by mercenaries are more easily out-executed by teams where people believe in the mission of the company.</p><p><strong>If you work at a company that would love to hire from Meta: now is (still) your opening!</strong> So go for it.</p><p>And if you&#x2019;re at Meta: you are <em>so</em> in-demand, outside of the company, at places where engineering is still treated as a profit center. As Ryan Nystrom, currently building AI at Notion, <a href="https://x.com/ryannystrom/status/2087877824615010811?s=20&amp;ref=blog.pragmaticengineer.com" rel="noopener noreferrer nofollow">put it:</a></p><blockquote>&#x201C;Meta friends: the industry is exhilarating right now. Get out. Go build something. The handcuffs are an illusion.<br><br>I&#x2019;m having the time of my life at Notion. Come, and have fun again.&#x201D;</blockquote><p>Read the full issue of <a href="https://newsletter.pragmaticengineer.com/p/the-pulse-metas-self-inflicted-resignation?ref=blog.pragmaticengineer.com" rel="noopener noreferrer nofollow"><strong>last week&#x2019;s The Pulse</strong></a><strong>,</strong> or check out <a href="https://newsletter.pragmaticengineer.com/p/the-pulse-we-need-to-talk-about-migrations?ref=blog.pragmaticengineer.com" rel="noopener noreferrer nofollow"><strong>this week&#x2019;s The Pulse</strong></a>. This week&#x2019;s issue covers:</p><ol><li><strong>More on the &#x201C;great engineering leader career break.&#x201D; </strong>The industry is changing fast, and the VPE and CTO roles also need to adapt. And don&#x2019;t forget that these are the roles from which you can drive change that reorganizes engineering in ways that work better.</li><li><strong>We need to talk about migrations with AI. </strong>Asana needed to migrate off testing framework Enzyme, but it meant doing a massive rewrite of test cases. With AI, the project was completed in two weeks: without AI, this work would surely have been kicked down the road. Airbnb and Uber share similar stories, and AI seems like a superb fit for framework migrations.</li><li><strong>Are AI startups making the Gartner Magic Quadrant irrelevant?</strong> Gartner ranked AWS, Microsoft and IBM above Anthropic, Cursor and OpenAI in their &#x201C;AI code modernization tools&#x201D; ranking. This is most likely because the first three pay large sums of money to Gartner, but AI labs and vendors refuse to pay this &#x201C;Gartner tax.&#x201D;</li><li><strong>Industry Pulse.</strong> Another hours-long GitHub outage, GitHub alternatives are here and fighting for market share, Slack launches Slack Code, text generated by Claude to be watermarked, and Uber open sources SubmitQueue.</li></ol><p><a href="https://newsletter.pragmaticengineer.com/p/the-pulse-we-need-to-talk-about-migrations?ref=blog.pragmaticengineer.com" rel="noopener noreferrer nofollow">Read the full The Pulse.</a></p>]]></content:encoded></item><item><title><![CDATA[The Pulse: Grok’s CLI caught uploading all your local files to the cloud]]></title><description><![CDATA[Devs discover that Grok CLI pushed all local files, .env files and git history have been pushed to a GCP bucket, unencrypted. SpaceX’s initial reaction? Blame the devs]]></description><link>https://blog.pragmaticengineer.com/grolk-cli-uploaded-all-your-files-to-the-cloud/</link><guid isPermaLink="false">6a85ba5c1b8a5e00015742b1</guid><dc:creator><![CDATA[Gergely Orosz]]></dc:creator><pubDate>Wed, 19 Aug 2026 14:21:33 GMT</pubDate><media:content url="https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/2026/08/aa1de119-a4fd-4a85-b20a-bdc73c9db948_1182x842.webp" medium="image"/><content:encoded><![CDATA[<img src="https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/2026/08/aa1de119-a4fd-4a85-b20a-bdc73c9db948_1182x842.webp" alt="The Pulse: Grok&#x2019;s CLI caught uploading all your local files to the cloud"><p><em>Hi, this is Gergely with a bonus, free issue of the Pragmatic Engineer Newsletter. In every issue, I cover Big Tech and startups through the lens of senior engineers and engineering leaders. Today, we cover one out of four topics from </em><a href="https://newsletter.pragmaticengineer.com/p/the-pulse-groks-cli-caught-uploading?ref=blog.pragmaticengineer.com" rel="noreferrer"><em><u>a previous The Pulse</u></em></a><em> issue. Full subscribers received the article below four weeks ago. If you&#x2019;ve been forwarded this email, you can</em><a href="https://newsletter.pragmaticengineer.com/about?ref=blog.pragmaticengineer.com"><em> <u>subscribe here</u></em></a><em>.</em></p><p>Last week, xAI (Elon Musk&#x2019;s AI company, now part of SpaceX) released the Grok 4.5 model, built by Cursor (an acquisition), trained on SpaceX GPUs, and branded &#x201C;Grok.&#x201D; It&#x2019;s a pretty good model; benchmarking as close in coding capability to Opus 4.8 and GPT 5.5 &#x2013; while being 60-70% lower cost.</p><p>Grok 4.5 can be used via API, but is easiest used via the Grok Build coding CLI. So, that&#x2019;s what many devs did. Some of them have noticed something&#xA0;<em>really</em>&#xA0;weird: the CLI is uploading all their local files in their working directories! Here&#x2019;s an independent AI safety researcher known as &#x2018;Cerblab&#x2019;&#xA0;<a href="https://gist.github.com/cereblab/dc9a40bc26120f4540e4e09b75ffb547?ref=blog.pragmaticengineer.com"><u>documenting what is happening</u></a>&#xA0;(emphasis mine):</p><blockquote>&#x201C;xAI&#x2019;s official Grok Build coding CLI (grok), on a normal consumer login, does three things worth documenting precisely:<strong>It transmits the contents of files it reads &#x2014; including a .env secrets file &#x2014; to xAI, verbatim and unredacted</strong>. The secret appears in two channels: the live model turn (POST /v1/responses) and a session_state archive uploaded and accepted (HTTP 200) via POST /v1/storage &#x2014; the endpoint the binary routes to the grok-code-session-traces GCS bucket (see section 5).<strong>It uploads the whole repository &#x2014; every tracked file&#x2019;s content plus git history &#x2014; independent of what the agent reads.&#xA0;</strong>Grok packages the workspace and uploads it via POST /v1/storage. Proven directly: on a real codebase, with the prompt &#x201C;reply OK, do not read any files&#x201D;, Grok uploaded the entire repo as a git bundle (POST /v1/storage &#x2192; 200); git cloning the captured bundle recovers a file the agent was told not to open &#x2014; src/_probe/never_read_canary.txt &#x2014; with its unique marker verbatim, plus the full git history (appendix uploaded_repo.bundle). And it scales: on a 12 GB repo of never-read random files, /v1/storage moved 5.10 GiB, all HTTP 200 (truncated mid-stream), while the model-turn channel moved just 192 KB &#x2014; a ~27,800&#xD7; ratio that pins the upload to the codebase, not to what was read. No storage upload failed; the only non-200s were a model-usage quota (402/429) on /v1/responses and one unrelated 404 &#x2014; not a storage size cap.<strong>The storage destination is a Google Cloud Storage bucket, grok-code-session-traces</strong>&#xA0;(not AWS S3) &#x2014; named verbatim in the binary and in a captured metadata.json (gs://grok-code-session-traces/&#x2026;). I did not find this mechanism surfaced in the CLI&#x2019;s install/quickstart materials (not an exhaustive docs audit &#x2014; &#xA7;7), it is active by default, and disabling &#x201C;Improve the model&#x201D; does not turn it off (/v1/settings still returned trace_upload_enabled: true; &#xA7;6).<br><br>None of this proves xAI trains on the data &#x2014; that is a policy question addressed in [section] 6. What is proven is transmission, acceptance, and storage.&#x201D;</blockquote><p>There&#x2019;s so much wrong with this approach! To name a few:</p><ul><li><strong>Sending your codebase over the context window is not normal.&#xA0;</strong>All AI agents send over their context window to the server that runs the LLM. That&#x2019;s where tokenization happens and the context is appended to the session. This means that other AI agents send over some part of the code that they read in their context window.</li><li><strong>No need to send over the source code to index it.&#xA0;</strong>Indexing the codebase is important for efficient code lookup, and we&#xA0;<a href="https://newsletter.pragmaticengineer.com/p/cursor?ref=blog.pragmaticengineer.com"><u>covered how Cursor does this in a privacy-conscious way</u></a>&#xA0;by indexing a user&#x2019;s codebase locally, creating embeddings, and sending those embeddings to the server. Cursor&#x2019;s server does not store any of the user&#x2019;s codebase though. Except that Grok CLI transferred all users&#x2019; codebases to a cloud bucket!&#xA0;<em>Given Cursor and Grok are now combined as part of SpaceX, it&#x2019;s a real head scratcher why the Grok CLI isn&#x2019;t doing what Cursor always has.</em></li><li><strong>Sending over unencrypted .env files is reckless.&#xA0;</strong>Local .env files store secrets, database access tokens, service access tokens, and more. These are sensitive pieces of information that need to be handled with care. If transmitted, they should be encrypted at the very least. Grok / SpaceX storing them on the GCP storage bucket &#x2013; likely unencrypted &#x2013; is flat-out unacceptable and reason enough for any sensible company to ban usage of Grok CLI.</li><li><strong>No good reason to upload git history.&#xA0;</strong>Sure, seeing Git history could be helpful when training an AI model.</li><li><strong>It&#x2019;s malicious to not tell devs anything about it.&#xA0;</strong>Developers using Grok CLI haven&#x2019;t been asked to opt into this data upload, nor notified of it. Most evidently had no idea this has been happening, and are understandably furious after Cerblab&#x2019;s writeup went viral.</li></ul><h2 id="spacex-throws-devs-%E2%80%9Cunder-the-bus%E2%80%9D">SpaceX throws devs &#x201C;under the bus&#x201D;</h2><p><strong>Caught red-handed, Grok CLI disabled file uploads with a remote feature flag.&#xA0;</strong>AWS engineer Wes Eklund&#xA0;<a href="https://github.com/weklund/grok-network-monitor?ref=blog.pragmaticengineer.com"><u>started tracking</u></a>&#xA0;upload functionality with the CLI, finding that the uploads suddenly stopped due to a feature flag being flipped by the Grok team, pausing data collection.</p><p>But the code functionality to stream all local files to the server, unencrypted, remained present in the CLI, even in later updates. Read an&#xA0;<a href="https://github.com/weklund/grok-network-monitor?ref=blog.pragmaticengineer.com"><u>in-depth analysis by Wes.</u></a></p><p><strong>SpaceX&#x2019;s official response was pretty laughable,&#xA0;</strong>not explaining why .env files and .git history were uploaded, and adding that enterprise customers with zero data retention (ZDR) enabled were the only ones unaffected by underhanded, secret uploading of users&#x2019; local files:</p><figure class="kg-card kg-image-card kg-card-hascaption"><img src="https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/2026/08/image-2.png" class="kg-image" alt="The Pulse: Grok&#x2019;s CLI caught uploading all your local files to the cloud" loading="lazy" width="1184" height="732" srcset="https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/size/w600/2026/08/image-2.png 600w, https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/size/w1000/2026/08/image-2.png 1000w, https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/2026/08/image-2.png 1184w" sizes="(min-width: 720px) 720px"><figcaption><i><em class="italic" style="white-space: pre-wrap;">Translation: &#x201C;Enterprise users with ZDR turned on were not impacted. To everyone else: we didn&#x2019;t tell you about this hidden/privacy command, but it&#x2019;s your fault. Source:&#xA0;</em></i><a href="https://x.com/SpaceXAI/status/2076692402442846289?s=20&amp;ref=blog.pragmaticengineer.com"><i><em class="italic" style="white-space: pre-wrap;">SpaceX</em></i></a></figcaption></figure><p>My initial reaction is what a condescending response by SpaceX, swiftly followed by the question: does Grok CLI even have enterprise customers? It might be few, given how reckless the team evidently is by uploading unencrypted secrets! SpaceX CEO Elon Musk chimed in with a post that seemed to be almost trolling angry users. He&#xA0;<a href="https://x.com/elonmusk/status/2076737992689914215?s=20&amp;ref=blog.pragmaticengineer.com"><u>wrote</u></a>:</p><blockquote>&#x201C;SpaceX policy regarding data retention.<br><br>It is actually helpful for debugging issues if we can retain some amount of data, so allowing this would be appreciated, but your privacy settings are always respected.&#x201D;</blockquote><p>This makes it worse because SpaceX has been secretly uploading far more data than is &#x201C;useful for debugging!&#x201D; Uploading the git history and sensitive .env files is&#xA0;<em>not</em>, in any way, useful for debugging. Also, Grok/SpaceX did not upload &#x201C;some amount of data&#x201D;; it uploaded every last file it could find in your local folder.</p><p>The developer community is justifiably upset to read SpaceX and Musk pretending that Grok has only uploaded scraps of data purely for debugging purposes. This time, even fans of SpaceX and Grok are speaking out against Musk and his company&#x2019;s behavior. AWS engineer&#xA0;<a href="https://x.com/WesEklund/status/2076739552946081795?s=20&amp;ref=blog.pragmaticengineer.com"><u>Wes Eklund</u></a>:</p><blockquote>&#x201C;Elon, firstly, huge fan of everything you work on. Completely understand the need for some trace data to improve customer experiences.<br><br>From what I&#x2019;ve researched, it seems to be much more than just trace debugging issues. It seems to be entire code repos with sensitive information just collected entirely.<br><br>Your Google Cloud blob storage must have petabytes of code repos from us.<br><br>Not ideal.&#x201D;</blockquote><h2 id="sam-altman-pushes-grok-to-open-source-grok-cli">Sam Altman pushes Grok to open source Grok CLI</h2><p>OpenAI CEO, Sam Altman, also posted, using a term Musk often employs when commenting on things he disapproves of in society, and hinting at the benefits of Codex which doesn&#x2019;t upload your whole local filesystem, or mess with .env files and the git history. The Codex harness is open source, so secretive file-upload functionality would be visible in the source code:</p><figure class="kg-card kg-image-card kg-card-hascaption"><img src="https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/2026/08/image-3-1.png" class="kg-image" alt="The Pulse: Grok&#x2019;s CLI caught uploading all your local files to the cloud" loading="lazy" width="1182" height="842" srcset="https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/size/w600/2026/08/image-3-1.png 600w, https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/size/w1000/2026/08/image-3-1.png 1000w, https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/2026/08/image-3-1.png 1182w" sizes="(min-width: 720px) 720px"><figcaption><i><em class="italic" style="white-space: pre-wrap;">Altman uses Musk&#x2019;s trademark &#x201C;concerning&#x201D; remark against him. Source:&#xA0;</em></i><a href="https://x.com/sama/status/2077053226080436235?s=20&amp;ref=blog.pragmaticengineer.com"><i><em class="italic" style="white-space: pre-wrap;">Sam Altman</em></i></a></figcaption></figure><p>Musk clearly read it and responded a few hours later:</p><figure class="kg-card kg-image-card kg-card-hascaption"><img src="https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/2026/08/image-5.png" class="kg-image" alt="The Pulse: Grok&#x2019;s CLI caught uploading all your local files to the cloud" loading="lazy" width="1178" height="508" srcset="https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/size/w600/2026/08/image-5.png 600w, https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/size/w1000/2026/08/image-5.png 1000w, https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/2026/08/image-5.png 1178w" sizes="(min-width: 720px) 720px"><figcaption><span style="white-space: pre-wrap;">Musk committing to open sourcing Grok CLI. Source:&#xA0;</span><a href="https://x.com/elonmusk/status/2077361679034118271?ref=blog.pragmaticengineer.com"><span style="white-space: pre-wrap;">Elon Musk</span></a></figcaption></figure><p>A day later, (15 July), SpaceX did indeed&#xA0;<a href="https://github.com/xai-org/grok-build?ref=blog.pragmaticengineer.com"><u>open source</u></a>&#xA0;Grok CLI. Altman&#x2019;s comment seemingly hit home. Also, SpaceX has stated it is deleting data from its servers,&#xA0;<a href="https://x.com/SpaceXAI/status/2077494536788664782?s=20&amp;ref=blog.pragmaticengineer.com"><u>writing</u></a>:</p><blockquote>&#x201C;We disabled default retention for all Grok Build users starting on July 12th. Additionally, we are deleting all coding data that was previously retained, ensuring every user&#x2019;s preferences are respected. With these steps, Grok Build goes beyond other major coding products to protect user privacy.&#x201D;</blockquote><p><strong>The open sourced repo is rushed, unsurprisingly.</strong>&#xA0;Kernel engineer Elliot Arledge used the repo and reported what he&#xA0;<a href="https://x.com/elliotarledge/status/2077543457925853276?s=20&amp;ref=blog.pragmaticengineer.com"><u>found</u></a>:</p><blockquote>&#x201C;Out of the box, `cargo test --workspace` doesn&#x2019;t compile. 190+ errors, all one bug class: cross-crate test helpers hidden behind #[cfg(test)], which Bazel&#x2019;s per-target test builds tolerate but Cargo doesn&#x2019;t, because a dependency is never compiled in test mode. The default-bazel feature is declared in ~20 manifests and wired to nothing. Ungating the benign helpers and putting the signing-key test seam behind a dev-dependency-only feature gets the suite running for the first time on the published tree: 24,663 passed, 28 failed, and every one of the 28 is a pre-existing bug the broken build had been hiding (tests reading your real ~/.claude/settings.json, a tool missing from the registry, macOS /var symlink breakage, one Theme::current() race).<br><br>Questions for the team:<br><br>Did anyone try downloading this repo and running it before publishing?&#x201D;</blockquote><p>In fairness, it&#x2019;s clear from the outside that the dev team was instructed to open source the repo ASAP, and did just that. I would expect improvements to allow the developer community to compile the repo and run tests will come later.</p><p>On a side note, I wonder what the mood within Grok is. A mandate to open source the product &#x2013; that was not built to be open sourced! &#x2013; and doing it in a couple of hours hints what it&#x2019;s like to work there. Some folks doubtless would find it thrilling and a big challenge, while others likely find it pretty stressful having the &#x201C;Eye of Sauron&#x201D; (the CEO) upon them!</p><h2 id="can-companies-trust-grok-now">Can companies trust Grok now?</h2><p>To hand it to Grok/SpaceX, the last 24 hours of this incident saw some impressive execution. In contrast, everything that took place beforehand screams &#x201C;amateur hour&#x201D;:</p><ul><li>Did no one in teams that wrote the functionality to upload the complete local codebase raise concerns that this would be unacceptable to devs?</li><li>How did uploading secrets without encryption not raise alarm bells?</li><li>Why greenlight any of it without opt-in and do it in a secretive manner?</li></ul><p>For sensible companies generating revenue with software, vendors who are allowed to access their codebase are limited to those that can be trusted. Grok has demonstrated it is unprepared to handle codebases with security fundamentals in mind.</p><p>There&#x2019;s now frantic backpedaling and rapid open sourcing, but my impression is that this is simply because Grok/SpaceX was caught red-handed, and understands the risk of losing enterprise contracts caused by this flagrant breach of trust. This is why SpaceX&#x2019;s communication mentioned that enterprise customers with zero data retention have not been impacted!</p><p><strong>Trust is earned in drops and lost in buckets; SpaceX/Grok will likely learn this.&#xA0;</strong>By secretly uploading codebases and secrets, Grok CLI revealed itself as an untrustworthy coding agent that&#x2019;s a risk to use. Meanwhile, all the major competitors &#x2013; Claude Code, Codex, OpenCode, Gemini CLI &#x2013; have never violated user trust this way.</p><p>Grok CLI can rebuild trust, but it&#x2019;ll likely take years of no security-related incidents to prove they are an open source-first product (that they were not, just a day ago!), and also demonstrate that they care about &#x201C;normal&#x201D; developers, and not just enterprise clients with ZDR turned on.</p><p><strong>This incident is a good reminder of why planning and process can slow shipping speed, but increase revenue generation.&#xA0;</strong>I would wager that the Grok team has shrunk SpaceX&#x2019;s enterprise subscription prospects for the foreseeable, in the name of saving a few hours on security reviews, learning what other coding harnesses do with codebase uploads, or even just asking the Cursor team!</p><p>I predict Grok/SpaceX will have to offer very high usage limits inside the Grok CLI to convince devs to take a risk on running this software on their system. And they will have to undercut OpenAI and Anthropic API pricing massively for any security team to greenlight use of a CLI that just last week was sending .env secrets unencrypted to their GCP buckets.</p><p>Of course, SpaceX/Grok will be just fine as it has the capital to fix things. It will now just be a lot more expensive and time-consuming to fix something that was likely caused by a few engineers wanting to make debugging easier!</p><p><em>Read the </em><a href="https://newsletter.pragmaticengineer.com/p/the-pulse-groks-cli-caught-uploading?ref=blog.pragmaticengineer.com" rel="noreferrer"><em>full <u>The Pulse issue</u></em></a><em>, or check out </em><a href="https://newsletter.pragmaticengineer.com/s/the-pulse?ref=blog.pragmaticengineer.com" rel="noreferrer"><em><u>this week&#x2019;s The Pulse</u></em></a><em>. The full issue additionally covers:</em></p><ol><li><strong>New trend: concern about massive increase in code review load.&#xA0;</strong>Top of mind for engineering leaders: what to do about the ever-growing code review load, and how devs are starting to review code less thoroughly than before? Many questions, but few proven solutions.&#xA0;<em>Send comments about what you see working.</em></li><li><strong>Are more devs at enterprises upset about enterprise pricing by AI labs &#x2013; and does it matter?&#xA0;</strong>I got a message from a reader baffled to learn their company pays 20-30x the price for tokens than their own $20/month Claude Code / Codex subscription. It may show how valuable AI coding tools are.</li><li><strong>Linux creator: AI &#x201C;clearly useful.&#x201D;&#xA0;</strong>Inside the Linux kernel maintainers group, the discussion veered onto whether Linux should consider banning AI contributions, similar to how some FOSS projects have done so. Linus Torvalds weighed in and made it clear that AI is useful, everyone should decide whether to use it, but no one is allowed to tell others what tools to use. Given AI is an increasingly capable tool, it would be foolish to not use it as such.</li></ol><p><a href="https://newsletter.pragmaticengineer.com/p/the-pulse-groks-cli-caught-uploading?ref=blog.pragmaticengineer.com" rel="noreferrer">Read the full The Pulse</a></p>]]></content:encoded></item><item><title><![CDATA[The Pulse: Bending Spoons' Acquisition Strategy]]></title><description><![CDATA[In only 5 years, Hopin went from zero to a $7.7B valuation, and back to zero again. Also: Bending Spoons’ startup acquisition model.]]></description><link>https://blog.pragmaticengineer.com/the-pulse-bending-spoons-acquisition-strategy/</link><guid isPermaLink="false">6a72f95dd1f60900010e34a7</guid><dc:creator><![CDATA[Gergely Orosz]]></dc:creator><pubDate>Wed, 05 Aug 2026 11:45:13 GMT</pubDate><content:encoded><![CDATA[<p>Bending Spoons has <a href="https://investors.bendingspoons.com/newsroom/bending-spoons-agrees-to-acquire-airtable?ref=blog.pragmaticengineer.com" rel="noreferrer">announced</a> buying Airtable for $1.285B in cash this week - which is less than the $1.4B in total funding Airtable has raised in the past, and well below the $11B valuation it had during its last fundraise in December 2021.</p><p>Selling to Bending Spoons is a company admitting defeat, and its inability or unwillingness to turn its business around, and wanting to get the highest possible cash for the business. Because this is what Bending Spoons is excellent at: they pay the highest cash value for a struggling business with a well-known brand, then take over operations, and operate the product with a fraction of the staff. They often let go most or all of the original team as they move over product operations to their in-house engineering team based in Italy and Europe.</p><h3 id="evernote-what-happens-when-a-new-team-takes-over-a-legacy-application">Evernote: what happens when a new team takes over a legacy application</h3><p>And having talked with Bending Spoons&apos; engineering team <a href="https://newsletter.pragmaticengineer.com/p/twisting-the-rules-of-building-software?ref=blog.pragmaticengineer.com" rel="noreferrer">on the podcast</a>: they have done impressive engineering work after a takeover, in the past! For example, upon acquiring Evernote, the Bending Spoons engineering team discovered that the note-taking service was running as a Java 11 monolith (!!), with user data sharded across 750 <em>manually</em> provisioned virtual machines (!!!) on top of Google Cloud - in 2023! At a time when running cloud-native setups (managed databases, microservices) was common knowledge for years.</p><p>Evernote&apos;s existing setup was weirdly inefficient and operationally very heavy, with manual interventions needed to keep the service running. Needless to say, performance was poor because some VMs were regularly overloaded. Also, oncall was brutal! </p><p>The Bending Spoons engineering team rationalized the architecture:</p><ul><li>Migrated user data sharded from the 750 manually provisioned VMs to a managed database</li><li>Split up the Java 11 monolith to microservices</li><li>Did all of the above without disrupting user experience</li><li>Improved performance of the backend by a wide margin</li><li>Reduced oncall load after finishing the migration to a cloud-native setup vs the previous manual provisioning setup</li><li>Did all the above in about 6 months.</li></ul><p>It&apos;s a fair question: would long would have the original Evernote engineering team have taken to do the same changes that made the service more reliable, more performant, and cheaper to operate? I would guess it would have taken them many years: in fact, if they did not make this change until 2023, who knows if they would have ever made these pretty rational changes? And so the &quot;shock therapy&quot; of Bending Spoons starting with a blank page, and a new team taking over operating the full product, with a laser focus on efficiency: well, this approach can be pretty efficient, as the Evernote example shows.</p><p><em>You can listen to the full podcast episode I did with the Bending Spoons team: </em><a href="https://newsletter.pragmaticengineer.com/p/twisting-the-rules-of-building-software?ref=blog.pragmaticengineer.com" rel="noreferrer"><em>Twisting the rules of building software: Bending Spoons</em></a><em>.</em></p><h3 id="price-increases-and-the-existing-team-let-go-the-two-most-typical-complaints">Price increases and the existing team let go: the two most typical complaints</h3><p>Bending Spoons taking over an existing product has two major criticisms:</p><ol><li><strong>Price increases. </strong>Evernote was the biggest example of price hikes: after Bending Spoons took over operating the product - and improving its performance - price hikes followed. Being Spoons kept investing in Evernote, adding new features (including AI ones), but customers paying $37/year for the Pro plan pre-2023 were charged $250/year <a href="https://www.zdnet.com/article/why-i-left-evernote-for-notion/?ref=blog.pragmaticengineer.com" rel="noreferrer">by 2026</a>. My take is that this is what happens when a product starts working a business maximizing profits: lots of customers will leave for competition, while others will pay more, valuing a more reliable service that gets more investment than before. Bending Spoons <a href="https://evernote.com/release-notes?ref=blog.pragmaticengineer.com" rel="noreferrer">keeps improving</a> Evernote since the acquisition, alongside the price increases. Clearly, the company is optimizing for maximizing revenue, not maximizing the number of customers, though.</li><li><strong>Layoffs</strong>. Bending Spoons let go most/all of the Evernote team in the US, briging operations in-house. This is part of the &quot;usual&quot; playbook of Bending Spoons: they buy products to operate them as efficiently as possible. The re-architecting example shows benefits of starting from scratch, and not needing to deal with internal resistance for changes that result in more efficient operations. Knowing that with a Bending Spoons acquisition, letting go of all the existing team is on the table is something that comes with selling to this company.</li></ol><p>With this, let me share my analysis of a past Bending Spoons acquisition: when they bought SteamYard from Hopin.</p><hr><p><em>Below is the now un-paywalled excerpt from </em><a href="https://newsletter.pragmaticengineer.com/p/the-pulse-89?ref=blog.pragmaticengineer.com" rel="noreferrer"><strong><em>The Pulse #89: The end of Hopin</em></strong></a><em><strong>,</strong> from April 2024, sent to paid The Pragmatic Engineer subscribers. If you&apos;d like to get analysis like this in your inbox, weekly, </em><a href="https://newsletter.pragmaticengineer.com/about?ref=blog.pragmaticengineer.com" rel="noreferrer"><em>subscribe to The Pragmatic Engineer</em></a><em>.</em></p><h3 id="the-end-of-hopin">The End of Hopin</h3><p>It&#x2019;s been a real rollercoaster ride for the virtual events provider:</p><ul><li><strong>2019</strong>: founded with a mission to provide a solution for hosting virtual events.</li><li><strong>2020-2021:</strong>&#xA0;raised a total of $1B in funding during a seed round in Feb 2020, Series A in June, Series B in November, and then a Series C in March-June 2021. The company was valued at $7.75B and acquired several startups, the biggest of which was video streaming platform, StreamYard, for $250M.</li><li><strong>2022</strong>: layoffs in&#xA0;<a href="https://newsletter.pragmaticengineer.com/p/the-scoop-3?s=w&amp;ref=blog.pragmaticengineer.com">February</a>, when Hopin was one of the early scaleups to do large cuts (12%), followed by more&#xA0;<a href="https://newsletter.pragmaticengineer.com/p/the-scoop-18?ref=blog.pragmaticengineer.com">in July</a>&#xA0;(29%), and&#xA0;<a href="https://www.conference-news.co.uk/uncategorized/hopin-announces-new-layoffs-and-transformation-new-product-launches/?ref=blog.pragmaticengineer.com">November</a>&#xA0;(17%)</li><li><strong>2023</strong>: Hopin&#xA0;<a href="https://newsletter.pragmaticengineer.com/i/135691414/events-tech-hopin-selling-its-events-tech-business?ref=blog.pragmaticengineer.com">sold</a>&#xA0;its core event tech business to RingCentral for $50M. We&#xA0;<a href="https://newsletter.pragmaticengineer.com/i/135691414/events-tech-hopin-selling-its-events-tech-business?ref=blog.pragmaticengineer.com">analyzed this at the time.</a></li><li><strong>2024:&#xA0;</strong>Last month, Hopin&#x2019;s UK entity entered liquidation. Insiders told me it was merely a restructure, with Hopin UK employees joining StreamYard. Basically, Hopin became the business it had purchased back in 2021.</li></ul><p>This week, Italian mobile app developer Bending Spoons&#xA0;<a href="https://www.businesswire.com/news/home/20240409133596/en/Bending-Spoons-to-Acquire-StreamYard-Leader-in-Live-Streaming-and-Video-Recording-Solutions?ref=blog.pragmaticengineer.com">acquired</a>&#xA0;the remains of Hopin, which is basically the StreamYard product. All Hopin staff will soon be laid off.</p><h3 id="the-bending-spoons-acquisitions-strategy">The Bending Spoons acquisitions strategy</h3><p>Bending Spoons has previously acquired apps such as the notes app Evernote in 2022, events app Meetup in 2024, and video-recording app FiLMiC in 2022. Their approach to these acquisitions was the same each time:</p><ol><li>Take over operating the product</li><li>Fire most staff immediately</li><li>Have some remaining staff hand over services, then fire them as well</li><li>Operate the app with a much smaller team and raise prices.</li><li>Profit!</li></ol><p>I talked with current Hopin employees for details on what will happen next, and if this model will be followed again. Unfortunately, it will.</p><p><strong>All existing Hopin staff will be let go, eventually.</strong>&#xA0;This affects around 80 staff working on StreamYard, and another 70 on other Hopin products, Streamable (video sharing) and Superwave (community platform.) I&#x2019;m told severance packages are generous enough, at around 3-4 months&#x2019; salary.</p><p>As with other Bending Spoon acquisitions, a subset of the team was requested by Bending Spoons to help with the transition (and then be let go afterwards.) Understandably, morale is very low for this reason, and the certainty that everyone will lose their jobs.</p><h3 id="how-much-did-streamyard-sell-for">How much did StreamYard sell for?</h3><p>From talking with current employees, I gather that circa 95% of Hopin&#x2019;s revenue comes from StreamYard, and not more than 5% from Streamable and Superwave. So the only valuable asset that this acquisition priced in is StreamYard.</p><p>In 2021, Hopin paid $250M for it. Back then, the video streaming service generated about $40M in annual revenue. This has risen to about $70M per year and keeps growing in an increasingly crowded market. StreamYard was at around break even and can be easily made profitable, I&#x2019;m told.</p><p>A good question is whether Bending Spoons paid $250M or more for this asset. In 2023, RingCentral paid $50M for the &#x201C;core&#x201D; virtual events offering which was making $20M in annual recurring revenue (ARR) at the time, I&#x2019;ve confirmed with insiders. However, ARR was falling steeply, and was forecast to hit $10-15M within a year. So RingCentral paid a 2.5x multiple for an asset losing revenue.</p><p>StreamYard brings in $70M per year, and this is increasing. I&#x2019;d assume the purchase price would be at least the same 2.5x multiplier, if not more. So there&#x2019;s a fair chance this sale&#x2019;s value is close to $200M.</p><h3 id="why-did-hopin-sell-to-a-buyer-which-wants-to-lay-off-everyone">Why did Hopin sell to a buyer which wants to lay off everyone?</h3><p>I have exclusively learned that StreamYard&#x2019;s founders actually offered to Hopin&#x2019;s board of directors to buy the company back, and operate independently, as before. This would&#x2019;ve been a better outcome for employees, most of whom would surely have kept their jobs. Some of StreamYard&#x2019;s staff knew of this plan and naturally supported it. The Bending Spoons sale has taken everyone by surprise.</p><p>But why would Hopin choose a buyer that is guaranteed to sack existing staff? Well, the board might have had no real choice, due to Hopin having raised&#xA0;<em>too much</em>&#xA0;money.</p><p>Hopin raised $1B in funding, during which it almost certainly offered board seats to investors including a16z, General Catalyst, Coatue, Northzone, Salesforce Ventures, Tiger Global, Accel, and others. It&#x2019;s safe to assume investors control the board, and as Hopin will never live up to its $7.75B valuation, the board-level rationale has evidently been to maximize the amount of money clawed back.</p><p>Of that $1B, here&#x2019;s what&#x2019;s left:</p><ul><li>$50M from selling Hopin&#x2019;s core business</li><li>Whatever StreamYard sells for</li><li>Residual cash left over from the fundraising</li></ul><p>The board serving investors&#x2019; interests&#xA0;<em>had</em>&#xA0;to shop around for the highest bidder, and minimize losses. I have to assume the decision on whether StreamYard&#x2019;s founders could buy back their own company came down to whether or not someone else was offering more money for it. Unfortunately for Hopin&#x2019;s staff (and fortunately for investors,) Bending Spoons probably offered more.</p><h3 id="the-risk-of-raising-too-much-venture-capital">The risk of raising too much venture capital</h3><p>Hopin is a reminder that raising too much venture capital can have unexpected, seemingly irrational, outcomes.<strong>&#xA0;</strong>Firing all staff from a company making $70M/year while being break-even or profitable sounds irrational from the company&#x2019;s perspective. But it is rational for investors and a buyer:</p><ul><li>Hopin&#x2019;s investors realized the company is a &#x201C;failed bet.&#x201D; They want to cash out their losses: get back whatever money they can &#x2013; which is still in the hundreds of millions of dollars! &#x2013; and use this capital to make new bets.</li><li>Hopin&#x2019;s buyer &#x2013; Bending Spoons &#x2013; wants to maximize their return. They pay $X for the company, and the goal is to generate $Y over the next several years in profit from it, where $Y &gt; $X. So, the acquisition pays for itself. Bending Spoons has a working model that involves firing all existing staff, and operating the product more efficiently.</li></ul><p>The biggest losers in this story are:</p><ul><li>Some investors. Collectively, investors poured $1B into Hopin. In October 2023, Hopin&#xA0;<a href="https://find-and-update.company-information.service.gov.uk/company/12035150/filing-history?page=1&amp;ref=blog.pragmaticengineer.com">returned</a>&#xA0;$581M of capital to investors (so 58% of all amount raised). It is unclear if the StreamYard purchase that could be another $200-300M, will be returned to them. It is safe to assume that investors will lose about 20-42% of the amount they invested, depending on how much proceedings of the StreamYard purchase they get paid.&#xA0;<em>This is much better than in the case of&#xA0;</em><a href="https://newsletter.pragmaticengineer.com/p/the-scoop-fast?ref=blog.pragmaticengineer.com"><em>one-click checkout startup Fast going bankrupt</em></a><em>&#xA0;a year after raising $100M in funding, where investors most likely lost all their investment! In the case of Hopin: it&#x2019;s still a loss, but it&#x2019;s far from a 100% loss like with Fast.</em></li><li>Employees who expected a better outcome. Shares issued to staff by Hopin are now officially worthless. At the same time, Hopin did pay above-the-market base salaries, and offered generous severance during redundancies. Unfortunately, a reality of fast-growing startups is that they can grow fast, but also go down fast.</li></ul><p>Winners of this sale are:</p><ul><li>The original founders of StreamYard who sold the company for $250M cash. Even though these founders are also departing, they netted a healthy return in 2021.</li><li>Bending Spoons, which has acquired a market-leading streaming product generating $70M per year and growing. StreamYard would normally not be available to buy, but the need of the Hopin board to &#x201C;cash in&#x201D; the company&#x2019;s remaining assets made this sale possible.</li></ul><p>I assume the biggest winner of the Hopin story stands to be Hopin&#x2019;s founder and former CEO, Johnny Boufarhat. He sold more than &#xA3;100M ($127M) of his shares&#xA0;<a href="https://www.ft.com/content/3472e2db-717f-4c7a-9d65-c1c461c79870?ref=blog.pragmaticengineer.com">in 2021 as secondaries</a>. He probably netted more money than Hopin &#x2013; excluding StreamYard &#x2013; generated in its lifetime! Selling a good chunk of his shares in 2021, at the peak of hype for virtual events is a good reminder that when everyone is buying, it can be a profitable strategy to sell!</p><h3 id="what-happened-to-other-fast-growing-startups-in-europe">What happened to other fast-growing startups in Europe?</h3><p>In 2020, Hopin was known as the fastest-ever growing startup in Europe by valuation. This visualization by Sifted went viral, and was widely shared by Hopin staff on social media:</p><figure class="kg-card kg-image-card kg-card-hascaption"><img src="https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/2026/08/image.png" class="kg-image" alt loading="lazy" width="1456" height="801" srcset="https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/size/w600/2026/08/image.png 600w, https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/size/w1000/2026/08/image.png 1000w, https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/2026/08/image.png 1456w" sizes="(min-width: 720px) 720px"><figcaption><i><em class="italic" style="white-space: pre-wrap;">Graph showing Hopin&#x2019;s growth to $7.75B in under 2 years. Source:&#xA0;</em></i><a href="https://sifted.eu/articles/hopin-fastest-growing-startup?ref=blog.pragmaticengineer.com"><i><em class="italic" style="white-space: pre-wrap;">Sifted</em></i></a><i><em class="italic" style="white-space: pre-wrap;">.</em></i></figcaption></figure><p>Hopin&#x2019;s current value is now zero, having sold its valuable assets. But how have other, formerly fastest-growing startups in Europe performed? I visualized this:</p><figure class="kg-card kg-image-card kg-card-hascaption"><img src="https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/2026/08/image-1.png" class="kg-image" alt loading="lazy" width="1600" height="1025" srcset="https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/size/w600/2026/08/image-1.png 600w, https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/size/w1000/2026/08/image-1.png 1000w, https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/2026/08/image-1.png 1600w" sizes="(min-width: 720px) 720px"><figcaption><span style="white-space: pre-wrap;">How the group of fastest-growing startups in Europe in 2020 are doing today. Wolt and Revolut were the only two to remain on a &#x201C;hockey stick-growth,&#x201D; valuation-wise.</span></figcaption></figure><p>Excluding Hopin, the car sale website Cazoo did worst; it&#x2019;s currently close to bankruptcy, valued at about $60M. The companies that managed to grow above than their 2020 valuations are:</p><ul><li>Food delivery service Wolt was acquired by DoorDash for &#x20AC;7B ($8.1B) in 2022</li><li>Ride-hailing app Bolt was last valued at $8.5B, and is supposedly&#xA0;<a href="https://www.reuters.com/business/autos-transportation/uber-rival-bolt-names-new-cfo-preparation-ipo-2023-07-06/?ref=blog.pragmaticengineer.com">preparing</a>&#xA0;for an IPO in 2025</li><li>Neobank, Revolut, was valued at $33B, even though some investors&#xA0;<a href="https://www.ft.com/content/5adbb200-02bf-40d6-815c-c13a4a30b5c4?ref=blog.pragmaticengineer.com">cut their valuation</a>&#xA0;of the company to around $20B in the summer of 2023</li><li>Spotify&#x2019;s current market cap is nearly $60B, and the company is trading close to its 2021 all-time-high</li></ul><p>This chart confirms what we already know: 2020-2022 was a time when startup and scaleup valuations hit all-time highs, fueled by zero interest rates, and widespread changes in consumer spending caused by the Covid-19 pandemic.&#xA0;<em>We have covered&#xA0;</em><a href="https://newsletter.pragmaticengineer.com/p/zirp?ref=blog.pragmaticengineer.com"><em>what the end of rock bottom rates could mean for the tech industry.</em></a></p>]]></content:encoded></item><item><title><![CDATA[The Pulse: Quitting Spotify Podcasts over reliability]]></title><description><![CDATA[Spotify’s podcast platform has become chronically unreliable since the company’s leadership started boasting about AI adoption. Competitors haven’t had similar issues, so I offboarded from Spotify.]]></description><link>https://blog.pragmaticengineer.com/the-pulse-quitting-spotify-podcasts-over-reliability/</link><guid isPermaLink="false">6a6b68cb5afb0c00015a3f23</guid><dc:creator><![CDATA[Ivan Klaric]]></dc:creator><pubDate>Thu, 30 Jul 2026 15:51:38 GMT</pubDate><content:encoded><![CDATA[<p><em>Hi, this is Gergely with a bonus, free issue of the Pragmatic Engineer Newsletter. In every issue, I cover Big Tech and startups through the lens of senior engineers and engineering leaders. Today, we cover one out of four topics of </em><a href="https://newsletter.pragmaticengineer.com/p/the-pulse-quitting-spotify-podcasts?ref=blog.pragmaticengineer.com" rel="noreferrer"><em>last week&apos;s The Pulse issue</em></a><em>. Full subscribers received the article below seven days ago. If you&#x2019;ve been forwarded this email, you can </em><a href="https://newsletter.pragmaticengineer.com/about?ref=blog.pragmaticengineer.com" rel="noopener noreferrer nofollow"><em>subscribe here</em></a><em>.</em></p><p>You can no longer watch The Pragmatic Engineer Podcast as <em>video</em> in the Spotify app (only as audio) because I have quit publishing video on that streaming platform. This comes after I decided that reliability takes a back seat within that team &#x2013; and across much of Spotify. Unlike on other platforms such as YouTube, Apple Podcasts, and Substack, I&#x2019;ve recently encountered a series of reliability issues around Spotify being unable to process video episodes. Even though I enjoyed a direct link with the Podcasts team there, things haven&#x2019;t improved.</p><p>So from now, I will no longer be publishing video episodes on Spotify. You can find videos of my in-depth chats with guests only <a href="https://www.youtube.com/@pragmaticengineer?ref=blog.pragmaticengineer.com" rel="noopener noreferrer nofollow">on YouTube</a>. <em>Apologies for any inconvenience this change causes! </em>Audio episodes of the podcast can still be found <a href="https://open.spotify.com/show/2Bho9xCbOQMWMJ7UKmqCzD?ref=blog.pragmaticengineer.com" rel="noopener noreferrer nofollow">on Spotify</a> via the RSS podcast feed hosted <a href="https://pragmaticpodcast.com/?ref=blog.pragmaticengineer.com" rel="noopener noreferrer nofollow">on Substack</a>.</p><p>Honestly, the decision to quit the streaming giant wasn&#x2019;t hard, and I reckon there&#x2019;s a point here about the risk of deprioritizing reliable operations at major companies in order to push on things like AI adoption, as Spotify seems to be doing.</p><p>Some context: for the first two years of The Pragmatic Engineer Podcast, it was published on three podcast platforms:</p><ol><li><strong>Substack&#x2019;s podcast platform (audio)</strong>: this is where the <a href="https://api.substack.com/feed/podcast/458709.rss" rel="noopener noreferrer nofollow">&#x201C;master&#x201D; RSS feed</a> is served to the likes of Apple Podcasts, the web, Overcast, Pocket Casts, etc</li><li><strong>YouTube (video):</strong> video episodes uploaded individually</li><li><strong>Spotify (video + audio): </strong>every video episode<em> was </em>uploaded individually and then served as video or audio episodes from the platform.</li></ol><p>As someone hosting a podcast, there are good reasons to bother doing three separate uploads:</p><ul><li><strong>Most podcast platforms don&#x2019;t support video.</strong> There will always be a need for a platform that serves the master RSS feed for audio versions while the video ones are elsewhere.</li><li><strong>YouTube doesn&#x2019;t integrate with anything. </strong>YouTube is the leader in video podcast distribution, and uploading there directly makes sense.</li><li><strong>I had a direct line to the Spotify team, which was a big plus. </strong>Starting out the podcast, I had the unusual privilege of contact with the podcasts team, thanks to the newsletter gaining a decently-size audience. I was persuaded to take the plunge with them.</li></ul><p>For eighteen months, nothing <em>major</em> went wrong. The admin portal for podcast publishers (called &#x2018;Spotify Creators&#x2019;) was pretty wonky; it gave intermittent errors, and was unable to remember me when I signed in, so, each Wednesday, I&#x2019;d have to sign in with a code sent to my email to publish an episode.</p><p>But overall, things worked, until it all went suddenly downhill&#x2026;</p><h3 id="unable-to-publish-spotify-podcast-episodes-3-out-of-5-weeks"><strong>Unable to publish Spotify podcast episodes 3 out of 5 weeks</strong></h3><p>From late May, I did not include links to Spotify on new episode announcements because their podcasts product or platform seemingly had outages every time one published on Wednesdays at around 9am PST / 12pm EST / 6pm EU time.</p><p><strong>Outage #1 (20 May): podcast publishing broke</strong>, my episode would not process on Spotify for 2+ hours. When uploading a video file to Spotify, there&#x2019;s a processing pipeline that runs to create chunks of the podcast in different video and audio formats. This pipeline appeared to stop running, meaning new episodes were not published.</p><p>It was not just the publishing that broke: the Creator portal looked absurd, with NaN% values everywhere, during the outage:</p><figure class="kg-card kg-image-card kg-card-hascaption"><img src="https://substackcdn.com/image/fetch/$s_!dFJF!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F8041085f-fc43-4b61-9e99-47d7e11e5a84_1752x1058.png" class="kg-image" alt loading="lazy" width="1456" height="879"><figcaption><i><em class="italic" style="white-space: pre-wrap;">During outage #1</em></i></figcaption></figure><p>I emailed the Spotify team to alert them about the outage and also <a href="https://x.com/GergelyOrosz/status/2057127878517526860?s=20&amp;ref=blog.pragmaticengineer.com" rel="noopener noreferrer nofollow">complained online</a>. I got a response, confirming the outage and pledging to do better:</p><blockquote>&#x201C;The issue was in one of our podcast publishing metadata pipelines. A small subset of episodes completed normal media processing but then missed a downstream publish update because a newly introduced validation signal was not correctly wired into the logic that wakes up the publishing path. In simpler terms: the episode could become eligible to publish, but the final propagation step was not reliably triggered for that class of episodes.<br><br>We identified the root cause, deployed a fix, and reprocessed the affected episodes with all-clear called early this morning. We&#x2019;re also tightening the system so that fields used for publishing eligibility cannot be added without also triggering the relevant downstream updates.<br><br>Separately, we&#x2019;re reviewing how partial creator-impacting publishing delays are surfaced, because even when this is not a broad platform outage, it is still a bad experience for publishers like yourself.<br><br>Apologies again that you hit this. It was a real bug, not a wide outage, but it hit some of our most relevant creators.&#x201D;</blockquote><p><strong>Outage #2 (17 June): Spotify down. </strong>Four weeks later, when attempting to publish a video episode, all of Spotify went down for many users, <a href="https://x.com/GergelyOrosz/status/2067285989710582271?s=20&amp;ref=blog.pragmaticengineer.com" rel="noopener noreferrer nofollow">including myself.</a></p><figure class="kg-card kg-image-card kg-card-hascaption"><img src="https://substackcdn.com/image/fetch/$s_!nelU!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fece389ea-6dd6-45c8-b269-718ee5fc0098_1100x620.png" class="kg-image" alt loading="lazy" width="1100" height="620"><figcaption><span style="white-space: pre-wrap;">Spotify&#x2019;s web player on 17 June</span></figcaption></figure><p>Spotify does not maintain a status page, so it&#x2019;s impossible to tell how widespread the outage was. I didn&#x2019;t include a Spotify link in that week&#x2019;s announcement either.</p><p><strong>Outage #3 (24 June): podcast publishing broke &#x2013; again. </strong>Outage #3 in five weeks; <em>deja vu</em>. This time, it was episode publishing not working, yet again. After waiting two hours for the episode to publish on Spotify, I yet again sent out the announcement with no Spotify link.</p><p>I also emailed the Spotify Podcasts team, who confirmed the outage. I said I was considering stopping publishing video episodes, and to switch to audio-only publishing (which means pointing Spotify to my master RSS feed.) I said that an apology was appreciated but it wasn&#x2019;t enough to make it worth publishing video episodes there.</p><p><strong>I also asked for the incident review because I had the feeling that reliability was not all that important on this podcast product. </strong>For the first outage I got a vague description of what happened, and promises of improvements that were never done &#x2013; e.g. during this second outage, there was no improved communications to creators, which I was told would happen, after outage #1.</p><p>Internally, Spotify&#x2019;s team surely conducted an incident review as per usual, so I figured I&#x2019;d hear back in about two weeks&#x2019; time, and assumed a reply would be forthcoming because I&#x2019;d made clear I was ready to leave Spotify Podcasts if reliability didn&#x2019;t improve.</p><h3 id="no-incident-review-three-weeks-later-so-i-quit-spotify"><strong>No incident review three weeks later, so I quit Spotify</strong></h3><p>The incident review had never arrived as promised by three weeks later, even though there had been time for it to be completed. It was yet another sign of a platform that has become unreliable. Also, the creator portal occasionally threw up this error:</p><figure class="kg-card kg-image-card kg-card-hascaption"><img src="https://substackcdn.com/image/fetch/$s_!Y77E!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F0e90510f-31f3-4ea4-a0d5-b84827c929a0_868x470.png" class="kg-image" alt loading="lazy" width="868" height="470"><figcaption><i><em class="italic" style="white-space: pre-wrap;">Spotify&#x2019;s creator portal on 16 July</em></i></figcaption></figure><p>I checked my Spotify stats: stream plays had been trending downwards unsurprisingly, given the ongoing outages, while the other podcast platforms didn&#x2019;t show the decline.<strong> </strong>It made me decide &#x201C;enough is enough&#x201D; and to move off Spotify.</p><p>Staying on their platform depended on seeing an incident review, but they didn&#x2019;t prioritize transparency, still had no status page, and nobody had built a feature for episode-processing status like YouTube has had for years. So, I pulled the plug and left:</p><figure class="kg-card kg-image-card kg-card-hascaption"><img src="https://substackcdn.com/image/fetch/$s_!fWEQ!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F4477d3a8-1d2b-4434-80d8-f8eb7165562a_1358x930.png" class="kg-image" alt loading="lazy" width="1358" height="930"><figcaption><span style="white-space: pre-wrap;">Offboarding from Spotify&#x2019;s (video) podcasts product</span></figcaption></figure><p>After I made the switch away from Spotify, the platform&#x2019;s creators portal became buggier than ever, as in these examples:</p><figure class="kg-card kg-image-card kg-card-hascaption"><img src="https://substackcdn.com/image/fetch/$s_!cc6F!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ffd0e0887-73fe-4c4b-9ca0-76460aecca8f_2048x1150.png" class="kg-image" alt loading="lazy" width="1456" height="818"><figcaption><span style="white-space: pre-wrap;">My Creators page after I changed the source of my podcasts to the master RSS feed</span></figcaption></figure><p>Comments disappeared:</p><figure class="kg-card kg-image-card kg-card-hascaption"><img src="https://substackcdn.com/image/fetch/$s_!Kclv!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F182ad478-188d-4f67-ab5b-962fa3196d3b_2048x1546.png" class="kg-image" alt loading="lazy" width="1456" height="1099"><figcaption><i><em class="italic" style="white-space: pre-wrap;">My show had no comments, suddenly</em></i></figcaption></figure><p>&#x2026; even though other parts of the UI showed dozens of comments:</p><figure class="kg-card kg-image-card kg-card-hascaption"><img src="https://substackcdn.com/image/fetch/$s_!ks8o!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F4ef9802b-f2d7-466d-8c4d-b59c1972be91_2048x1190.png" class="kg-image" alt loading="lazy" width="1456" height="846"><figcaption><i><em class="italic" style="white-space: pre-wrap;">Zero comments, yet episodes with comments</em></i></figcaption></figure><p>Episode links directed to 404 pages:</p><figure class="kg-card kg-image-card kg-card-hascaption"><img src="https://substackcdn.com/image/fetch/$s_!Keep!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F8c237ccb-e0cb-4bac-903d-83da831ea9e9_2048x1309.png" class="kg-image" alt loading="lazy" width="1456" height="931"><figcaption><span style="white-space: pre-wrap;">404 pages inside the Creator portal, when clicking links</span></figcaption></figure><p>A day or two later, these issues disappeared: I assume no one had tested the flow of moving away from Spotify Podcasts to an RSS feed, and it&#x2019;s why the experience was so poor.</p><h3 id="incident-review-finally-published-but-with-a-wrong-timeline"><strong>Incident review finally published, but with a wrong timeline</strong></h3><p>A few days after offboarding from Spotify, their team <a href="https://engineering.atspotify.com/2026/7/content-ingestion-and-podcast-video-incident-report?ref=blog.pragmaticengineer.com" rel="noopener noreferrer nofollow">published the incident report</a> for outage #3. Reading through it, something did not add up in the timeline:</p><figure class="kg-card kg-image-card kg-card-hascaption"><img src="https://substackcdn.com/image/fetch/$s_!5ROX!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fb0bb70a5-df4c-444c-a9a9-9642c084f7c1_1662x866.png" class="kg-image" alt loading="lazy" width="1456" height="759"><figcaption><span style="white-space: pre-wrap;">The original timeline published for the 24 June incident</span></figcaption></figure><p>My email account confirmed that I mailed the Spotify team at around 17:30 about the outage. So, after weeks of creating this report, why did the incident report downplay the fact that customers alerted the team before their own automated alerts fired?I complained to the Podcasts team, and to their credit, the incident report was updated:</p><figure class="kg-card kg-image-card kg-card-hascaption"><img src="https://substackcdn.com/image/fetch/$s_!a8Ln!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F36fa0a3a-ba07-453f-b1dd-0269b80a7552_2048x932.png" class="kg-image" alt loading="lazy" width="1456" height="663"><figcaption><i><em class="italic" style="white-space: pre-wrap;">The updated incident timeline</em></i></figcaption></figure><p>I didn&#x2019;t like how high-level <a href="https://engineering.atspotify.com/2026/7/content-ingestion-and-podcast-video-incident-report?ref=blog.pragmaticengineer.com" rel="noopener noreferrer nofollow">the report is</a>, and how vague the promised improvements were. Specifically, this one:</p><blockquote>&#x201C;During this incident, many creators learned something was wrong from their audiences before they heard anything from us. We are improving our processes and technical capabilities so creators get notified as soon as possible when things aren&#x2019;t working.&#x201D;</blockquote><p>Overall, I don&#x2019;t regret the choice to leave, particularly when the focus of Spotify&#x2019;s leadership is on AI, not reliability.</p><h3 id="does-spotify-have-%E2%80%9Cai-psychosis%E2%80%9D"><strong>Does Spotify have &#x201C;AI psychosis?&#x201D;</strong></h3><p>Previously, I used the term &#x201C;AI psychosis&#x201D; differently from the usual way of describing when someone starts believing everything an AI model tells them, however outlandish. I <a href="https://newsletter.pragmaticengineer.com/i/202307236/7-is-ai-psychosis-just-a-meta-issue?ref=blog.pragmaticengineer.com" rel="noopener noreferrer nofollow">applied it</a> to Meta&#x2019;s rush to develop its own AI model at the cost of the reliability of its profitable business activities. This was based on Instagram&#x2019;s most embarrassing-ever account takeover incident, which <a href="https://newsletter.pragmaticengineer.com/i/202307236/7-is-ai-psychosis-just-a-meta-issue?ref=blog.pragmaticengineer.com" rel="noopener noreferrer nofollow">occurred</a> when the team responsible for Instagram&#x2019;s Trust &amp; Safety was slashed. Soon after, AI-generated, AI-reviewed code caused the hacking of a former US president&#x2019;s account.</p><p>At Spotify, it should have gone the other way. In March, I had the opportunity to meet its Head of Technology &amp; Platforms, Tyson Singer, who said the company puts reliability far ahead of AI adoption, and doesn&#x2019;t adopt AI for its own sake. So, it was somewhat surprising to read the summary below of a podcast Spotify did <a href="https://x.com/ClaudeDevs/status/2071671418245492926?s=20&amp;ref=blog.pragmaticengineer.com" rel="noopener noreferrer nofollow">with Anthropic</a>:</p><blockquote>&#x201C;Spotify now ships 4,500 production deploys a day, and 73% of PRs are now AI-assisted.<br><br>Niklas Gustavsson (VP of Engineering at Spotify) keeps 5 to 10 Claude sessions running in tmux, one per git worktree, agents working in the background. All of it inside a 20M+ line monorepo. He expected agents to struggle at that size, but it&#x2019;s worked well.<br><br>Spotify&#x2019;s migration codemods grew into thousands of lines of edge cases. Code has too much API surface for static rewrites. Early LLMs barely did better. Adding a judge took PR success from ~25% to 80%.<br><br>All of this leans on verification, the single most important thing when agents are used and the place most companies underinvest<br><br>Spotify rebuilt their test automation around it so engineers can confidently guide and supervise agents, rather than manually execute repetitive tasks.&#x201D;</blockquote><p>It seems to me that all the talk is about <em>usage</em> of AI, and none about <em>reliability</em>, all while Spotify&#x2019;s platform becomes less reliable than ever, at the same time as the streamer is going all-in on AI; with AI judges and devs running 5-10 parallel Claude sessions.</p><p>All things considered, it&#x2019;s worth asking if Spotify has the corporate variant of &#x201C;AI psychosis&#x201D;, whereby the reliability of a successful operation gets torched in the chase for the next big thing by executives. I don&#x2019;t even think Spotify is all that different from Meta and other companies in this!</p><p>Things look bad, based on the quality and reliability degradation of products. Annoyingly, in many cases, customers don&#x2019;t really have the choice of going elsewhere. My podcast is an exception, as video podcasts on Spotify never truly took off, so quitting the platform wasn&#x2019;t a big deal. Even so, I&#x2019;m particularly disappointed that Spotify has prioritized AI usage over reliability. I know some executives there pushed against this, but I feel safe in assuming that they lost that battle.</p><h3 id="value-of-staying-reliable-%E2%80%9Csucking-less%E2%80%9D"><strong>Value of staying reliable &amp; &#x201C;sucking less&#x201D;</strong></h3><p>Max Kanat-Alexander, distinguished engineer at Capital One, has <a href="https://www.codesimplicity.com/post/suck-less/?ref=blog.pragmaticengineer.com" rel="noopener noreferrer nofollow">written about</a> how a software project can become wildly successful just by &#x201C;sucking less&#x201D; in his reflections upon the success of the Bugzilla project, (2004-2009):</p><blockquote>&#x201C;All you have to do to succeed in software is to consistently suck less with every release.<br><br>Nobody would say that Bugzilla 2.18 was awesome, but everybody would say that it sucked less than Bugzilla 2.16 did. Bugzilla 2.20 wasn&#x2019;t perfect, but without a doubt, it sucked less than Bugzilla 2.18. And then Bugzilla 3.0 fixed a whole lot of sucking in Bugzilla, and it got a whole lot more downloads.<br><br>Why is it that this worked?<br><br>As long as you consistently suck less with every release, you will retain most of your users. You&#x2019;re fixing the things that bother them, so there&#x2019;s no reason for them to switch away. Even if you didn&#x2019;t fix everything in this release, if you sucked less, your users will have faith that eventually, the things that bother them will be fixed. New users will find your software, and they&#x2019;ll stick with it too. And in this way, your user count will increase steadily over time.<br><br><strong>But what happens if you release frequently, but instead of fixing the things in your software that suck, you just add new features that don&#x2019;t fix the sucking?</strong> Well, eventually the patience of the individual user is going to run out. They&#x2019;re not going to wait forever for your software to stop sucking.&#x201D;</blockquote><p>Personally, I got tired of Spotify&#x2019;s Podcasts product continually going in the wrong direction on Max&#x2019;s scale: the poor reliability, frequent errors on the Creators site, and the sense that they don&#x2019;t really care about improving <em>existing</em> things.</p><hr><p>Read the full issue of <a href="https://pragmaticengineer.substack.com/p/the-pulse-quitting-spotify-podcasts" rel="noopener noreferrer nofollow">last week&apos;s The Pulse</a>. The full The Pulse additionally covers:</p><ol><li><strong>Will Kimi K3 trigger US push for closed-source AI models?&#xA0;</strong>Moonshot AI&#x2019;s latest open model, Kimi K3, is on par with Anthropic&#x2019;s Fable 5. Could it lead to the US government regulating or banning Chinese open models to protect US labs?</li><li><strong>AWS laughs off &#x201C;heart attack&#x201D; billing error.&#xA0;</strong>AWS customers were billed trillions more than they should have been, due to what was likely a conversion error. But instead of sharing an incident report, AWS saw the funny side.</li><li><strong>Industry pulse.&#xA0;</strong>OpenAI&#x2019;s unreleased model tried to hack HuggingFace to improve its test scores, X took more than a year to develop its new Android app, Google&#x2019;s new AI model flops, and more.</li></ol><p><a href="https://pragmaticengineer.substack.com/p/the-pulse-quitting-spotify-podcasts" rel="noreferrer">Read the full The Pulse.</a></p>]]></content:encoded></item><item><title><![CDATA[The Pulse: New trend - concern about massive increase in code review load]]></title><description><![CDATA[Top of mind for engineering leaders: what to do about the growing code review load, and how devs are starting to review code less thoroughly than before? Many questions, but few proven solutions.]]></description><link>https://blog.pragmaticengineer.com/the-pulse-new-trend-concern-about-massive-increase-in-code-review-load/</link><guid isPermaLink="false">6a61e422435ae800016524b9</guid><dc:creator><![CDATA[Ivan Klaric]]></dc:creator><pubDate>Thu, 23 Jul 2026 16:55:29 GMT</pubDate><content:encoded><![CDATA[<p><em>Hi, this is Gergely with a bonus, free issue of the Pragmatic Engineer Newsletter. In every issue, I cover Big Tech and startups through the lens of senior engineers and engineering leaders. Today, we cover one out of four topics of </em><a href="https://newsletter.pragmaticengineer.com/p/the-pulse-groks-cli-caught-uploading?ref=blog.pragmaticengineer.com" rel="noreferrer"><em>last week&apos;s The Pulse issue</em></a><em>. Full subscribers received the article below seven days ago. If you&#x2019;ve been forwarded this email, you can </em><a href="https://newsletter.pragmaticengineer.com/about?ref=blog.pragmaticengineer.com" rel="noopener noreferrer nofollow"><em>subscribe here</em></a><em>.</em></p><p>One thing I am hearing that&#x2019;s top of mind for many engineering leaders is what is being done to deal with&#xA0;the&#xA0;continuous increase in code review load. It&#x2019;s been a topic for a while, and more such conversations seem to be taking place.</p><p>For me, it began in January, when Opus 4.5 and GPT 5.4 started to write more and better code at most companies. Around then, Director-level folks started talking about the bottleneck of building software moving from coding to the review phase.</p><p><strong>There&#x2019;s been a boom in AI code review tools to deal with the increase in load since February</strong>, and an explosion of experimentation with and adoption of dedicated AI code review tools like&#xA0;<a href="https://www.coderabbit.ai/?ref=blog.pragmaticengineer.com"><u>CodeRabbit</u></a>,&#xA0;<a href="https://www.greptile.com/?ref=blog.pragmaticengineer.com"><u>Greptile</u></a>,&#xA0;<a href="https://www.qodo.ai/?ref=blog.pragmaticengineer.com"><u>Qodo</u></a>,&#xA0;<a href="https://www.sonarsource.com/products/sonarqube/?ref=blog.pragmaticengineer.com"><u>SonarQube</u></a>&#xA0;(now also&#xA0;<a href="https://gitar.ai/?ref=blog.pragmaticengineer.com"><u>Gitar</u></a>). There&#x2019;s also tools offered by coding harnesses themselves like Claude Code review, Cursor review, GitHub Copilot review. And then tools previously not involved in code reviews &#x2013; but which have context on the codebase &#x2013; are also adding this, like&#xA0;<a href="https://sentry.io/product/seer/ai-code-review/?ref=blog.pragmaticengineer.com"><u>Sentry&#x2019;s Seer AI reviews</u></a>,&#xA0;<a href="https://linear.app/diffs?ref=blog.pragmaticengineer.com"><u>Linear code reviews</u></a>.</p><p><strong>Larger companies are building in-house tools to improve the code review experience.&#xA0;</strong>Uber&#x2019;s Code Inbox is one case:</p><figure class="kg-card kg-image-card kg-card-hascaption"><img src="https://substackcdn.com/image/fetch/$s_!4ppW!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F3a171592-37ca-4c2a-b1b8-0086fe9c88fe_1456x901.png" class="kg-image" alt loading="lazy" width="1456" height="901"><figcaption><i><em class="italic" style="white-space: pre-wrap;">Uber&#x2019;s Code Inbox. From </em></i><a href="https://newsletter.pragmaticengineer.com/p/how-uber-uses-ai-for-development?ref=blog.pragmaticengineer.com"><i><em class="italic" style="white-space: pre-wrap;">How Uber uses AI for software development</em></i></a></figcaption></figure><p>Smart assignments are a feature inside Code Inbox for having reviews progress:</p><figure class="kg-card kg-image-card kg-card-hascaption"><img src="https://substackcdn.com/image/fetch/$s_!-zWf!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F20aa60fe-9b8b-4772-b971-1c6737adcf93_956x692.png" class="kg-image" alt loading="lazy" width="956" height="692"><figcaption><i><em class="italic" style="white-space: pre-wrap;">Smart assignment settings for Code Inbox</em></i></figcaption></figure><p>Then there&#x2019;s Risk Profiles which estimate the impact of a change, and encourage devs to pay extra attention to risky ones:</p><figure class="kg-card kg-image-card kg-card-hascaption"><img src="https://substackcdn.com/image/fetch/$s_!cvl3!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F30e886bc-2fd9-4626-a79a-eb988a8b7647_996x812.png" class="kg-image" alt loading="lazy" width="996" height="812"><figcaption><i><em class="italic" style="white-space: pre-wrap;">Code Inbox tries to estimate the risk of a code change, and bring attention to it</em></i></figcaption></figure><p>We covered&#xA0;<a href="https://newsletter.pragmaticengineer.com/p/how-uber-uses-ai-for-development?ref=blog.pragmaticengineer.com"><u>how Uber uses AI for software development</u></a>, and it&#x2019;s not just Uber: companies like Cloudflare (<a href="https://blog.cloudflare.com/ai-code-review/?ref=blog.pragmaticengineer.com"><u>AI Code Reviewer</u></a>), Faire (<a href="https://craft.faire.com/agent-fairey-agentic-development-with-custom-mcp-servers-71784c9bc5bd?gi=8a98cd2b8d91&amp;ref=blog.pragmaticengineer.com"><u>Fairey</u></a>), and HubSpot (<a href="https://product.hubspot.com/blog/automated-code-review-the-6-month-evolution?ref=blog.pragmaticengineer.com"><u>Sidekick</u></a>) and many others have also built tools to make their code review flows more fluid, after finding that an in-house implementation worked better than integrating a vendor.</p><p><strong>Another approach is thinking about how to verify code, instead of reviewing.</strong>&#xA0;This is easier said than done; in theory, thorough testing should be able to verify that code works as expected. But how much testing is &#x2018;thorough&#x2019;? What type of tests are we talking about? Integration and end-to-end as well? What about fuzz testing? Or formal methods? What about verifying that new tests exercise the functionality as expected? And how do we connect all of this with observability?</p><p><strong>Too much thorough code review is burning out engineers, and resulting in sub-par code reviews.&#xA0;</strong>I hear a lot anecdotally that devs see others as no longer able to review code with intent, whereby, if the AI code review has no real comments, they just approve it. Meanwhile, those devs who put the same effort and energy into code review as before feel overloaded by AI slop PRs sent their way.</p><p>The problems exist, and the solutions feel more like experiments.</p><p>What are you seeing inside your company, and how are you dealing with the increase in code reviews? Share your ideas for practical, workable &#x201C;replacements&#x201D;?</p><hr><p>Read the full issue of <a href="https://newsletter.pragmaticengineer.com/p/the-pulse-groks-cli-caught-uploading?ref=blog.pragmaticengineer.com" rel="noreferrer"><strong>The Pulse this excerpt is from</strong></a>, or check out <a href="https://newsletter.pragmaticengineer.com/s/the-pulse?ref=blog.pragmaticengineer.com" rel="noopener noreferrer nofollow"><strong>the latest The Pulse</strong></a> from today. <a href="https://pragmaticengineer.substack.com/p/the-pulse-quitting-spotify-podcasts" rel="noreferrer">Today&#x2019;s issue</a> covers:</p><ol><li>Moving video podcasts off Spotify due to constant reliability issues</li><li>&#x201C;Kimi K3&#x201D; moment &amp; a US lobby for closed-source AI models</li><li>AWS laughs off huge billing error</li><li>Industry Pulse</li></ol><p><a href="https://pragmaticengineer.substack.com/p/the-pulse-quitting-spotify-podcasts" rel="noreferrer"><em>Read the full issue here</em></a></p>]]></content:encoded></item><item><title><![CDATA[The Pulse: What can we learn from Bun’s rapid Rust rewrite with AI?]]></title><description><![CDATA[To a sceptic, spending $165K to migrate Bun from Zig to Rust sounds very expensive. But to a realist, shortening a 1-2 year migration down to 11 days opens amazing new opportunities for devs. However, a thoroughly-tested project is required to pull it off.]]></description><link>https://blog.pragmaticengineer.com/the-pulse-what-can-we-learn-from-buns-rapid-rust-rewrite-with-ai/</link><guid isPermaLink="false">6a58cdde676a90000149edb3</guid><dc:creator><![CDATA[Ivan Klaric]]></dc:creator><pubDate>Thu, 16 Jul 2026 16:50:20 GMT</pubDate><content:encoded><![CDATA[<p><em>Hi, this is Gergely with a bonus, free issue of the Pragmatic Engineer Newsletter. In every issue, I cover Big Tech and startups through the lens of senior engineers and engineering leaders. Today, we cover one out of four topics of </em><a href="https://newsletter.pragmaticengineer.com/p/the-pulse-what-can-we-learn-from?ref=blog.pragmaticengineer.com" rel="noopener noreferrer nofollow"><em>last week&apos;s The Pulse issue</em></a><em>. Full subscribers received the article below seven days ago. If you&#x2019;ve been forwarded this email, you can </em><a href="https://newsletter.pragmaticengineer.com/about?ref=blog.pragmaticengineer.com" rel="noopener noreferrer nofollow"><em>subscribe here</em></a><em>.</em></p><p>Last week in San Francisco, I met Jarred Sumner, creator of JavaScript runtime, Bun, and was keen to learn more about the rewrite of Bun from Zig to Rust. But at the time, Jarred didn&#x2019;t want to say too much, as the tool used for the migration, Fable, was out of action due to the US government imposing export controls.&#xA0;</p><figure class="kg-card kg-image-card"><img src="https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/2026/07/data-src-image-e6450cb0-ef41-4b2a-9217-6bcdd2c7a816.png" class="kg-image" alt loading="lazy" width="2000" height="1347" srcset="https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/size/w600/2026/07/data-src-image-e6450cb0-ef41-4b2a-9217-6bcdd2c7a816.png 600w, https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/size/w1000/2026/07/data-src-image-e6450cb0-ef41-4b2a-9217-6bcdd2c7a816.png 1000w, https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/size/w1600/2026/07/data-src-image-e6450cb0-ef41-4b2a-9217-6bcdd2c7a816.png 1600w, https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/2026/07/data-src-image-e6450cb0-ef41-4b2a-9217-6bcdd2c7a816.png 2048w" sizes="(min-width: 720px) 720px"></figure><p><em>Jarred and I at Anthropic&#x2019;s HQ, last week</em></p><p>Fortunately, the situation is now resolved and Fable is available globally, and Jarred has published a detailed <a href="https://bun.com/blog/bun-in-rust?ref=blog.pragmaticengineer.com"><u>post about the project.</u></a> Before we get into the migration, some context:</p><p><strong>Bun is a complex project, with lots of production software depending on it. </strong>Bun itself does many things:</p><ul><li>JavaScript, TypeScript and CSS <a href="https://stackoverflow.com/questions/44931479/compiling-vs-transpiling?ref=blog.pragmaticengineer.com"><u>transpiling</u></a>, <a href="https://en.wikipedia.org/wiki/Minification_(programming)?ref=blog.pragmaticengineer.com"><u>minifying</u></a> and bundling</li><li>A test runner</li><li>A package manager (npm-compatible)</li><li>Other things: module resolution, a WebSocket client, Node.js implementations and many modules</li></ul><p>Today, Bun has 22 million monthly downloads, and software like Claude Code and OpenCode depend on it, while hosting providers like Vercel, Railway and DigitalOcean do first-party support for Bun.</p><h3 id="why-a-rewrite">Why a rewrite?&#xA0;</h3><p>Zig is not a memory safe language, and memory-related bugs occurred continuously.<strong> </strong>Jarred <a href="https://bun.com/blog/bun-in-rust?ref=blog.pragmaticengineer.com"><u>lists</u></a> memory-related bugs in the latest version of Bun: memory leaks, crashes due to memory issues, heap-out-of-bounds writes, and so on. This was after the Bun team patched the Zig compiler to reduce memory-related issues, and put end-to-end memory leak tests in place. As Jarred says:</p><p>&#x201C;Our bugfix list felt bad and I was tired of going to sleep worrying about crashes in Bun. I don&apos;t blame Zig for that - other users of Zig don&apos;t have the bugs we had, and mixing GC with manually-managed memory is an uncommon enough thing for software to need that no language really designs for it. (...)</p><p>For Bun, correctly handling the lifetimes of garbage-collected values and manually-managed values has been a major source of stability issues - most often small memory leaks and occasionally crashes. Every memory allocation has to be meticulously reviewed. Where do these bytes get freed? How do we ensure it only gets freed once? Did we check for JavaScript exceptions properly? Is this garbage-collected pointer visible to the conservative stack scanner? Is this garbage collected memory or manually managed memory?&#x201D;</p><p>Moving to a memory-safe, yet performant language could eliminate such errors, and Rust is one such language that fitted the bill. Jarred:</p><p>&#x201C;A large percentage of bugs from that list are use-after-free, double-free, and &quot;forgot to free&quot; in an error path. In safe Rust, these are compiler errors and RAII-like automatic cleanup with Drop. Compiler errors are a better feedback loop than a style guide.&#x201D;</p><p>However, doing a <em>full</em> rewrite on Rust has always been a terrible idea. Or at least, it used to be, because of how unbearably long it would have taken:</p><p><strong>There are two problems with rewrites: they take too long, and they take waaaay too long. </strong>A dev who has done rewrites probably knows how things tend to go:</p><ol><li>Make an educated guess about how long it will take; say, nine months.</li><li>Nine months later, there&#x2019;s still another ~6 months to go because new functionality is added to the <em>original</em> codebase, and now that new functionality needs to be added in!</li><li>By 15 months in, there&#x2019;s still months left to go for the same reason!</li><li>In the end, you manage to mandate a &#x201C;feature freeze&#x201D; for two months and finish the rewrite in ~18 months, if lucky. The original nine-month estimate can end up taking 2+ years.</li></ol><p>Jarred likened rewriting Bun in Zig to this:</p><p>&#x201C;Historically, rewrites are a terrible idea. Excluding comments, Bun is 535,496 lines of Zig.&#xA0;</p><p><strong>A rewrite in another language would take a small team of engineers a full year.</strong></p><p>A year of zero user-facing impact is not a realistic option we could consider. So, enforcement through code-style to fix stability issues was our best bet, and was our plan when we added Rust-inspired smart pointers to Bun&apos;s codebase.</p><p>But honestly, I didn&apos;t want to do it. Homegrown smart pointers offer worse ergonomics than Rust, with none of the guarantees.</p><p>What if, instead, I spend a week testing if Anthropic&apos;s new model [Fable] can rewrite Bun in Rust?&#x201D;</p><h3 id="rewriting-bun-with-fable">Rewriting Bun with Fable</h3><p>Unsurprisingly, the rewrite was not as simple as typing a prompt like: &#x201C;Claude, rewrite Bun in Rust. Make zero mistakes.&#x201D; Instead, this is how Jarred did it:</p><p><strong>Step #1: Prep work.</strong> Three hours of intense prep work with Claude, explained<strong> </strong>Jarred:</p><p>&#x201C;Before writing any code, I spent about 3 hours talking to Claude about how to map patterns from our Zig codebase closely to Rust. Claude serialized this discussion into a <a href="https://github.com/oven-sh/bun/commit/46d3bc29f270fa881dd5730ef1549e88407701a5?ref=blog.pragmaticengineer.com"><u>PORTING.md</u></a> document, which ended up <a href="https://news.ycombinator.com/item?id=48016880&amp;ref=blog.pragmaticengineer.com"><u>on Hacker News</u></a> [as the Zig &#x2192; Rust porting guide]&#x201D;</p><p>This guide is a 600-line file with instructions like:</p><p>Ground rules:</p><ul><li>No <strong>tokio</strong>, <strong>rayon</strong>, <strong>hyper</strong>, <strong>async-trait</strong>, <strong>futures</strong>. No std::fs, std::net, std::process. Bun owns its event loop and syscalls. (Rust core/std slice, iter, mem, fmt, and core::ffi are fine &#x2014; only the I/O-touching modules are banned.)</li><li>No <strong>async fn</strong>. Everything is callbacks + state machines, same as the Zig.</li><li><strong>Borrow-checker reshaping is allowed.</strong> When matching Zig flow yields overlapping &amp;mut, capture the needed scalar (.len(), index) into a local, drop the borrow, then re-borrow. Do NOT reach for raw pointers just to silence borrowck; leave // PORT NOTE: reshaped for borrowck so Phase B diff readers aren&apos;t confused.</li></ul><p>It&#x2019;s a series of instructions that makes sense to someone who&#x2019;s expert in Rust.<em> If you want to learn more, we cover </em><a href="https://newsletter.pragmaticengineer.com/p/why-rust-is-different-with-alice?ref=blog.pragmaticengineer.com"><em><u>Rust basics and why Rust is different, with Alice Ryhl.</u></em></a></p><p><strong>Step #2: Trial run + adversarial review. </strong>Asking Claude to rewrite three files out of 1,448 total number of files. After the rewrite, Jarred ran two separate adversarial reviews with Claude to critique the result, in separate sessions than the one that Claude made the changes in.</p><p><strong>Step #3: split up the work across 64 AI agents. </strong>Jarred split up the job so that agents worked on files independent from one another, in parallel.</p><p><strong>Step #4: iron out issues with the run (~1 day). </strong>When Jarred attempted to run all this, agents kept getting in each other&#x2019;s way:</p><p>&#x201C;I asked Claude to loop the workflow on all 1,448 .zig files, and about 2 minutes in, one Claude ran git stash before committing. Another ran git stash pop. And then git reset HEAD --hard. They were stepping on each other! And if I put each Claude into a separate worktree, I would run out of disk space because Bun&apos;s git repository is too big and eventually the changes will need to be compiled and seen together.</p><p>So, I asked Claude to edit the workflow to instruct Claude to never run git stash or git reset or any git command that doesn&apos;t commit a specific file at once. No cargo either. No slow commands at all.</p><p>Then, Claude resumed the workflows. And it was working! Too slowly, so I split it into just 4 workflow shards each with their own worktree (4 worktrees total), each running 16 Claudes committing and pushing files.&#x201D;</p><p><strong>Step #5: have it run and wait ~2 days. </strong>The parallel agents went to work, and completed the rewrite of 535,496 lines of Zig code over the course of two days. Each commit was checked by two adversarial reviews, before being committed.</p><p><strong>Step #7: fix ~1,600 compiler errors (~12 hours).</strong> The rewrite was completed, but nothing compiled. Going crate-by-crate (&#x2018;crate&#x2019; is Rust&#x2019;s concept of a top-level compilation unit), Jarred had Claude fix compiler errors. <em>This alone would be a herculean task for an engineer, but not for Claude</em>:</p><p>&#x201C;Fixing the cyclical dependencies revealed about 16,000 compiler errors. A massive number for 1 human, but not a crazy number for 64 Claude&#x2019;s at once.</p><p>To maximize parallelism, the workflow looped over each crate.</p><ul><li>For each crate, run cargo check, group the output by file and save the errors to a file</li><li>Fix all the compiler errors within that crate</li><li>2 adversarial reviewers for the crate&apos;s changes</li><li>1 fixer applies the fixes&#x201D;</li></ul><figure class="kg-card kg-image-card"><img src="https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/2026/07/data-src-image-cd28edee-cd89-4840-b174-c33834d838df.png" class="kg-image" alt loading="lazy" width="1656" height="1200" srcset="https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/size/w600/2026/07/data-src-image-cd28edee-cd89-4840-b174-c33834d838df.png 600w, https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/size/w1000/2026/07/data-src-image-cd28edee-cd89-4840-b174-c33834d838df.png 1000w, https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/size/w1600/2026/07/data-src-image-cd28edee-cd89-4840-b174-c33834d838df.png 1600w, https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/2026/07/data-src-image-cd28edee-cd89-4840-b174-c33834d838df.png 1656w" sizes="(min-width: 720px) 720px"></figure><p><em>Visualizing fixing of errors, one by one, done by the agents. Source: </em><a href="https://bun.com/blog/bun-in-rust?ref=blog.pragmaticengineer.com"><em><u>Anthropic</u></em></a></p><p>The enjoyable thing about this phase of the migration was that the agents ran from midnight until 11:30am, fixing compiler bugs on their own &#x2013; when Jarred and the team were getting some sleep.</p><p><strong>Step #8: run tests locally (~2 days). </strong>Bun has a large test suite. The next step was to get these tests to <em>run </em>without compilation errors.&#xA0;</p><p><strong>Step #9: get the test suite to pass CI (~3 days). </strong>Once the tests were running (and failing), the next step was to fix the code, so that the tests could pass. This took two days.</p><p><strong>Step #10: Done in 11 days! </strong>After all the tests passed and Jarred verified that everything worked as expected, he merged the changes. The whole process took 11 days, from planning to the finish.</p><figure class="kg-card kg-image-card"><img src="https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/2026/07/data-src-image-15c365dd-95ef-4cf9-a4f3-0f0e6f7e6312.png" class="kg-image" alt loading="lazy" width="1746" height="1084" srcset="https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/size/w600/2026/07/data-src-image-15c365dd-95ef-4cf9-a4f3-0f0e6f7e6312.png 600w, https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/size/w1000/2026/07/data-src-image-15c365dd-95ef-4cf9-a4f3-0f0e6f7e6312.png 1000w, https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/size/w1600/2026/07/data-src-image-15c365dd-95ef-4cf9-a4f3-0f0e6f7e6312.png 1600w, https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/2026/07/data-src-image-15c365dd-95ef-4cf9-a4f3-0f0e6f7e6312.png 1746w" sizes="(min-width: 720px) 720px"></figure><p><em>The rewrite: porting ~550K lines of code, in 6,500 commits, over 11 days, with 64 agents</em></p><h3 id="how-repeatable-is-this-process">How repeatable is this process?</h3><p><strong>The rewrite cost a whopping $165,000 with API pricing. </strong>With Fable&#x2019;s API prices, the rewrite consumed 5.9 billion uncached input tokens, 690 million output tokens, and 72 billion cached input token reads. Anthropic sells API tokens at a margin as its business, so the cost of the rewrite for it was lower. It&#x2019;s a large amount: the equivalent of the annual base salary for a software engineer at a mid-tier company in the US!</p><p>But then again, could have an engineer done <em>all this work </em>in a year? Probably not, and Mitchell Hashimoto <a href="https://x.com/mitchellh/status/2075244791571611753?s=20&amp;ref=blog.pragmaticengineer.com"><u>says the same</u></a>:</p><p>&#x201C;On the cost, I think $165,000 at API pricing for Fable (didn&#x2019;t verify) is an incredible deal. There&#x2019;s absolutely no way an engineer with that salary would&#x2019;ve been able to achieve the milestones Claude did in 11 days. No way. (Even if you break it down to N engineers paid $165K total in 11 days it doesn&#x2019;t math out)</p><p>This does, however, also reconfirm my own biases which is that Fable in particular is most excellent at hard, focused tasks with clear reward functions. I&#x2019;ve been tweeting about this recently.&#x201D;</p><p><strong>What if AI enables rewrites and migrations that wouldn&#x2019;t have been considered before? </strong>The idea of rewriting Bun in Rust without AI was impractical, admits Jarred:</p><p>&#x201C;By hand, I think this would&apos;ve taken three engineers with full context on the codebase about a year, during which time we wouldn&apos;t be able to improve Node.js compatibility, fix bugs, fix security issues or implement new features. We never would&apos;ve done that. The realistic alternative was to do nothing and keep fixing the bugs at the top of this post forever.&#x201D;</p><p>A rewrite or migration taking months or years is why so many of these projects never happen. Let&#x2019;s take aside the cost for a minute and consider this question: if AI can shorten a one-year rewrite to a week: would you do it?&#xA0;</p><p>If the answer is &#x201C;hell, yes:&#x201D; a blueprint now exists in the form of the Bun migration on how to do it. There are some caveats not detailed in the post, though:</p><ol><li>You need an engineer who is <em>very</em> motivated and knows the codebase very well</li><li>You need an <em>extremely</em> robust test suite, so when the test suite passes, you know it works</li><li>You need to be willing to invest a lot in tokens, not knowing how well it all will work</li></ol><p>In fairness, #3 is the weakest point because we know LLMs are pretty good at &#x201C;mundane&#x201D; work like code migrations. With a good test suite (#2) and a motivated engineer to iron out things (#1), you&#x2019;ll more likely than not succeed.</p><p>The remaining question is how much can be spent. It will likely not be $165K: and costs can be reduced with a simpler project, or by being thoughtful about model usage. For example, do high-level planning with the most expensive model, and cheaper ones for coding and review tasks.</p><p>Migrations with AI are surely speeding up, but only when projects are well-engineered like Bun&#x2019;s has been.</p><hr><p>Read the full issue of <a href="https://newsletter.pragmaticengineer.com/p/the-pulse-what-can-we-learn-from?ref=blog.pragmaticengineer.com" rel="noopener noreferrer nofollow"><strong>The Pulse this excerpt is from</strong></a>, or check out <a href="https://newsletter.pragmaticengineer.com/s/the-pulse?ref=blog.pragmaticengineer.com" rel="noopener noreferrer nofollow"><strong>the latest The Pulse</strong></a> from today. <a href="https://newsletter.pragmaticengineer.com/p/the-pulse-groks-cli-caught-uploading?ref=blog.pragmaticengineer.com" rel="noreferrer">Today&#x2019;s issue</a> covers:</p><ol><li>Grok&#x2019;s CLI uploaded all your local files to the cloud, then got caught.</li><li>New trend: concern about massive increase in code review load.</li><li>Are more devs at enterprises upset about enterprise pricing by AI labs &#x2013; and does it matter?</li><li>Linux creator: AI &#x201C;clearly useful.&#x201D;</li></ol><p><a href="https://newsletter.pragmaticengineer.com/p/the-pulse-groks-cli-caught-uploading?ref=blog.pragmaticengineer.com" rel="noreferrer"><em>Read the full issue here</em></a></p>]]></content:encoded></item><item><title><![CDATA[The Pulse: Interesting AI coding stats from Cursor]]></title><description><![CDATA[Power users generate 10x as many lines of code vs the median, most of the AI spend is coming from input tokens not output ones, and almost half of AI changes are accepted without manual review by devs (!!)]]></description><link>https://blog.pragmaticengineer.com/the-pulse-interesting-ai-coding-stats-from-cursor/</link><guid isPermaLink="false">6a4fd7106171aa00016f1eab</guid><dc:creator><![CDATA[Gergely Orosz]]></dc:creator><pubDate>Thu, 09 Jul 2026 17:20:34 GMT</pubDate><content:encoded><![CDATA[<p><em>Hi, this is Gergely with a bonus, free issue of the Pragmatic Engineer Newsletter. In every issue, I cover Big Tech and startups through the lens of senior engineers and engineering leaders. Today, we cover one out of four topics </em><a href="https://newsletter.pragmaticengineer.com/p/the-pulse-a-trend-of-trying-to-cut?ref=blog.pragmaticengineer.com" rel="noreferrer"><em>a past <u>The Pulse issue</u></em></a><em>. Full subscribers received the article below five weeks ago. If you&#x2019;ve been forwarded this email, you can</em><a href="https://newsletter.pragmaticengineer.com/about?ref=blog.pragmaticengineer.com"><em> <u>subscribe here</u></em></a><em>.</em></p><p>Cursor has just released a new report based on two years of its aggregated usage data, and there are some interesting findings:</p><h3 id="power-users-generate-10x-as-many-lines-of-code-vs-the-median">Power users generate 10x as many lines of code vs the median</h3><figure class="kg-card kg-image-card kg-card-hascaption"><img src="https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/2026/07/image.png" class="kg-image" alt loading="lazy" width="1456" height="815" srcset="https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/size/w600/2026/07/image.png 600w, https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/size/w1000/2026/07/image.png 1000w, https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/2026/07/image.png 1456w" sizes="(min-width: 720px) 720px"><figcaption><i><em class="italic" style="white-space: pre-wrap;">Source: </em></i><a href="https://cursor.com/insights?ref=blog.pragmaticengineer.com" target="_blank" rel="noopener noreferrer nofollow"><i><em class="italic" style="white-space: pre-wrap;">Cursor</em></i></a></figcaption></figure><p>The median dev using Cursor (the p50) generates about 700 lines of code per week with it, while for the 90th percentile, it&#x2019;s closer to 9,000 lines.</p><h3 id="top-1-of-users-create-incredible-volume-of-code">Top 1% of users create incredible volume of code</h3><p>The p99 data is pretty stunning:</p><figure class="kg-card kg-image-card kg-card-hascaption"><img src="https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/2026/07/image-2.png" class="kg-image" alt loading="lazy" width="1456" height="774" srcset="https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/size/w600/2026/07/image-2.png 600w, https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/size/w1000/2026/07/image-2.png 1000w, https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/2026/07/image-2.png 1456w" sizes="(min-width: 720px) 720px"><figcaption><span style="white-space: pre-wrap;">The top 1% of Cursor users (p99) vs the top 10% (p90)</span></figcaption></figure><p>The top 1% of users generate around 30-40K lines of code <strong>per week</strong>! That&#x2019;s the equivalent of what ~45 &#x201C;median&#x201D; devs generate in the same period.</p><p>It&#x2019;s worth asking how these top 1% of users are different. Are they writing a lot more greenfield code, do they have a bias for not using libraries, are they tokenmaxxing to get to the top of leaderboards? Do they generate 45x as many bugs, and importantly: are they adding a lot of business value with the software they ship?</p><h3 id="cursor-consumes-10x-more-input-tokens-than-it-generates-in-output-tokens">Cursor consumes 10x more input tokens than it generates in output tokens</h3><p>This is surprising: 90% of Cursor&#x2019;s token usage is input tokens! This means that most of the tokens used are for reading the existing codebase and documentation. Outputting of code is a minority usage:</p><figure class="kg-card kg-image-card kg-card-hascaption"><img src="https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/2026/07/image-3.png" class="kg-image" alt loading="lazy" width="1456" height="811" srcset="https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/size/w600/2026/07/image-3.png 600w, https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/size/w1000/2026/07/image-3.png 1000w, https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/2026/07/image-3.png 1456w" sizes="(min-width: 720px) 720px"><figcaption><span style="white-space: pre-wrap;">Input tokens (Cursor reading the codebase) is the bulk of token usage</span></figcaption></figure><p>In some ways, this usage makes sense: as devs, we always spent far more time on reading the code, compared to lines of code we typed out. The &#x201C;10:1 read-to-write&#x201D; ratio is a classic. Here&#x2019;s Robert. C. Martin (aka &#x201C;uncle Bob&#x201D;) sharing this observation in 2008, in his book, Clean Code:</p><blockquote>&#x201C;<strong>Indeed, the ratio of time spent reading versus writing is well over 10 to 1.</strong> We are constantly reading old code as part of the effort to write new code&#x2026; [Therefore] making it easy to read, makes it easier to write.&#x201D;</blockquote><p>I find it amusing that we&#x2019;re now seeing this 10:1 read / write ratio for token usage with AI agents!</p><h3 id="input-tokens-become-the-main-ai-token-cost">Input tokens become the main AI token cost</h3><p>Input tokens are priced at a fraction of output tokens: for example, Opus 4.7 charges 5x more for output tokens than for input tokens ($5 per 1 million input tokens and $25 per 1 million output tokens). Still, thanks to input tokens dominating token usage, Cursor is seeing input tokens account for closer to 70% of the cost of AI coding agents:</p><figure class="kg-card kg-image-card kg-card-hascaption"><img src="https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/2026/07/image-4.png" class="kg-image" alt loading="lazy" width="1456" height="807" srcset="https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/size/w600/2026/07/image-4.png 600w, https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/size/w1000/2026/07/image-4.png 1000w, https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/2026/07/image-4.png 1456w" sizes="(min-width: 720px) 720px"><figcaption><span style="white-space: pre-wrap;">Input tokens dominate Cursor costs</span></figcaption></figure><h3 id="without-caching-context-token-cost-would-be-10x-higher">Without caching context, token cost would be 10x higher</h3><p>Cursor does smart caching of context, to avoid re-generating old context with more new input tokens. When taking cache usage into account, Cursor only spends 0.6% of tokens on output tokens. The remaining 99% is split between cache read (90%), cache write (2.5%), and input tokens (7%):</p><figure class="kg-card kg-image-card kg-card-hascaption"><img src="https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/2026/07/image-5.png" class="kg-image" alt loading="lazy" width="1456" height="793" srcset="https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/size/w600/2026/07/image-5.png 600w, https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/size/w1000/2026/07/image-5.png 1000w, https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/2026/07/image-5.png 1456w" sizes="(min-width: 720px) 720px"><figcaption><span style="white-space: pre-wrap;">Output tokens are only 0.6% of token usage when considering cache reads &amp; writes</span></figcaption></figure><p><strong>I wonder if context reuse and caching will be a key AI efficiency component in the future? </strong>AI tokens are expensive to generate, so any form of reuse will make a lot of sense, especially in workflows like coding where a lot of existing context is reused.</p><p>Of course, Cursor sharing this detail also makes sense, as they remind everyone that building an efficient AI agent harness is far from trivial. Indeed, if you roll your own agent harness, you also need to put an efficient caching layer in place to match the efficiency of tools like Cursor.</p><h3 id="opus-is-the-most-expensive-model-could-hurt-anthropic">Opus is the most expensive model &amp; could hurt Anthropic</h3><p>At the time of publishing, Opus 4.7 was still considered the most capable coding model. However, it&#x2019;s also very expensive, and Cursor&#x2019;s own data shows it&#x2019;s close to 10x more expensive than its own Composer 2.5 model:</p><figure class="kg-card kg-image-card kg-card-hascaption"><img src="https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/2026/07/image-6.png" class="kg-image" alt loading="lazy" width="1456" height="782" srcset="https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/size/w600/2026/07/image-6.png 600w, https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/size/w1000/2026/07/image-6.png 1000w, https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/2026/07/image-6.png 1456w" sizes="(min-width: 720px) 720px"><figcaption><span style="white-space: pre-wrap;">Opus 4.7 is twice as expensive as GPT-5.5 &amp; nearly 10x more than Composer 2.5</span></figcaption></figure><p>It&#x2019;s significant that Cursor compares the cost of a single agent request; it&#x2019;s not a direct token-to-token comparison. And it&#x2019;s worth noting this benchmark is being shared by Cursor, which has an incentive for its Composer model to appear the lowest-cost.</p><p>Still, assuming you can get similar-enough results with a 10x cheaper model, it is a saving that&#x2019;s hard to ignore, especially for mid-sized and above companies. I would not be surprised if more tech companies find ways for devs to use less capable &#x2013; but cheaper &#x2013; models for less critical work.</p><h3 id="more-expensive-models-result-in-higher-acceptance-rates">More expensive models result in higher acceptance rates</h3><p>An interesting metric Cursor shares is cost-per-line-added, per model:</p><figure class="kg-card kg-image-card"><img src="https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/2026/07/image-7.png" class="kg-image" alt loading="lazy" width="1456" height="759" srcset="https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/size/w600/2026/07/image-7.png 600w, https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/size/w1000/2026/07/image-7.png 1000w, https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/2026/07/image-7.png 1456w" sizes="(min-width: 720px) 720px"></figure><p>This metric is a more realistic cost because it correlates to output: &#x201C;smart&#x201D; models that are expensive, but which produce code that is frequently accepted, are penalized by the cost-per-agent-request metric, but they&#x2019;re not here.</p><p>Indeed, Opus 4.7 has the same cost-per-line-accepted as GPT 5.5 at half the cost per agent request. In this comparison, Cursor&#x2019;s Composer model is &#x201C;only&#x201D; 5x as efficient.</p><p>Missing from both lists are Google&#x2019;s Gemini models, a strange omission by Cursor. I reached out to Cursor and they told me that Gemini was left out simply because they see very little usage of this model on their platform, similar to the sparsely used Grok model.</p><h3 id="almost-half-of-ai-changes-accepted-without-manual-review-by-devs">Almost half of AI changes accepted without manual review by devs</h3><p>I&#x2019;ve left the most interesting part of this report to last: in just a month, among devs using Cursor, it has gone from 10% who let AI agents create commits without a manual step, to around 40% of devs who no longer personally check the code:</p><figure class="kg-card kg-image-card"><img src="https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/2026/07/image-8.png" class="kg-image" alt loading="lazy" width="1456" height="746" srcset="https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/size/w600/2026/07/image-8.png 600w, https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/size/w1000/2026/07/image-8.png 1000w, https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/2026/07/image-8.png 1456w" sizes="(min-width: 720px) 720px"></figure><p>The jump correlates with Opus 4.7 and GPT-5.5 being released, and around the time when many devs seem to have <a href="https://newsletter.pragmaticengineer.com/p/the-pulse-160-why-its-so-dramatic?ref=blog.pragmaticengineer.com" rel="noopener noreferrer nofollow">concluded that writing code by hand is dying</a> after experiencing this generation of models&#x2019; capability at generating code.</p><p>Check out <a href="https://cursor.com/insights?ref=blog.pragmaticengineer.com" rel="noopener noreferrer nofollow">the full report from Cursor</a> for more details. Thanks to the team for releasing this data!</p><hr><p>Read the full issue of <a href="https://newsletter.pragmaticengineer.com/p/the-pulse-a-trend-of-trying-to-cut?ref=blog.pragmaticengineer.com" rel="noreferrer">The Pulse this excerpt is from</a>, or check out <a href="https://newsletter.pragmaticengineer.com/p/the-pulse-what-can-we-learn-from?ref=blog.pragmaticengineer.com" rel="noreferrer">the latest The Pulse</a> from today. Today&apos;s issue covers:</p><ul><li>Bun&#x2019;s Rust rewrite with Fable: what can we learn?</li><li>Anthropic&#x2019;s Fable, OpenAI&#x2019;s GPT-5.6 Sol, Cursor&#x2019;s Grok 4.5, Meta&#x2019;s Muse</li><li>North Korean hackers keep trying to infiltrate full-remote companies</li><li>Industry Pulse: Meta&#x2019;s key logging exposed sensitive data, massive cuts at Xbox, Meta could not buy enough AI capacity from Google, Qualcomm acquires Modular, and memory price hikes hit Apple products.</li></ul>]]></content:encoded></item><item><title><![CDATA[The Pulse: a new trend, smart model routing]]></title><description><![CDATA[Are there any ‘intelligent’ router solutions out there which select the right model for the right task? I looked into it, and there are a few options.]]></description><link>https://blog.pragmaticengineer.com/the-pulse-a-new-trend-smart-model-routing/</link><guid isPermaLink="false">6a46b160d2d7770001b1479c</guid><dc:creator><![CDATA[Gergely Orosz]]></dc:creator><pubDate>Thu, 02 Jul 2026 18:46:24 GMT</pubDate><content:encoded><![CDATA[<p><em>Hi, this is Gergely with a bonus, free issue of the Pragmatic Engineer Newsletter. In every issue, I cover Big Tech and startups through the lens of senior engineers and engineering leaders. Today, we cover one out of four topics from a previous </em><a href="https://newsletter.pragmaticengineer.com/p/did-anthropics-new-model-just-boost?ref=blog.pragmaticengineer.com" rel="noopener noreferrer nofollow"><em>The Pulse issue</em></a><em>. Full subscribers received the article below three weeks ago. If you&#x2019;ve been forwarded this email, you can</em><a href="https://newsletter.pragmaticengineer.com/about?ref=blog.pragmaticengineer.com" rel="noopener noreferrer nofollow"><em> subscribe here</em></a><em>.</em></p><p>Two weeks ago, I covered a <a href="https://newsletter.pragmaticengineer.com/p/the-pulse-a-trend-of-trying-to-cut?ref=blog.pragmaticengineer.com" rel="noopener noreferrer nofollow">trend of companies trying to reduce spending on AI within their engineering departments</a>. While talking to my sources about this, one head of engineering at a larger company told me that they wished there was an &#x2018;intelligent&#x2019; router that picks the right model for the right task.</p><p>The reason for such a wish is clear; prices for tokens vary greatly per model, and there can easily be a 10-20x difference between a cheap, average model, and a state-of-the-art one.</p><p>I did some digging into whether any solutions like this currently exist because the benefits look obvious, and what I found is listed below. <em>Usual disclaimer: I have no affiliation with these vendors, and have not been paid to mention any of them!</em></p><p><strong>Vendors:</strong></p><ul><li><a href="https://factory.ai/news/factory-router?ref=blog.pragmaticengineer.com" rel="noopener noreferrer nofollow"><strong>Factory Router</strong></a>: automatically selecting the right model per session, claiming 20-25% cost savings. <a href="https://factory.ai/news/factory-router?ref=blog.pragmaticengineer.com" rel="noopener noreferrer nofollow">More details</a>.</li><li><a href="https://www.notdiamond.ai/?ref=blog.pragmaticengineer.com" rel="noopener noreferrer nofollow"><strong>Not Diamond</strong></a>: auto-selection of coding models, claiming around 30% cost savings. Used by OpenRouter, under the hood. <a href="https://www.notdiamond.ai/blog?ref=blog.pragmaticengineer.com" rel="noopener noreferrer nofollow">More details</a>.</li><li><a href="https://vercel.com/ai-gateway?ref=blog.pragmaticengineer.com" rel="noopener noreferrer nofollow"><strong>Vercel AI gateway</strong></a>. Hundreds of AI models, smart routing and billing in one place.&#xA0;<a href="https://vercel.com/ai-gateway?ref=blog.pragmaticengineer.com" rel="noopener noreferrer nofollow">More details</a>.</li><li><a href="https://www.augmentcode.com/blog/augment-prism-model-routing-to-reduce-cost-and-maintain-quality?ref=blog.pragmaticengineer.com" rel="noopener noreferrer nofollow"><strong>Prism</strong></a><strong> </strong>by Augment Code. Choosing the &#x201C;best&#x201D; model automatically for coding tasks. <a href="https://www.augmentcode.com/blog/augment-prism-model-routing-to-reduce-cost-and-maintain-quality?ref=blog.pragmaticengineer.com" rel="noopener noreferrer nofollow">More details</a>.</li><li><a href="https://docs.morphllm.com/sdk/components/router?ref=blog.pragmaticengineer.com" rel="noopener noreferrer nofollow"><strong>Model Router</strong></a> by Morph. An API to suggest model selection for a prompt, based on a list of models. <a href="https://docs.morphllm.com/sdk/components/router?ref=blog.pragmaticengineer.com" rel="noopener noreferrer nofollow">More details</a></li><li><a href="https://weaverouter.com/?ref=blog.pragmaticengineer.com" rel="noopener noreferrer nofollow"><strong>Weave router</strong></a>: a token router that works inside Codex, Claude Code and Cursor. &#x201C;Hard&#x201D; requests stay on frontier models, while &#x201C;easy&#x201D; ones go to open source ones. <a href="https://weaverouter.com/?ref=blog.pragmaticengineer.com" rel="noopener noreferrer nofollow">More details</a></li></ul><p><strong>AI gateways with routing built in.</strong> API gateways are popular ways to use LLMs in workplaces.</p><ul><li><a href="https://openrouter.ai/?ref=blog.pragmaticengineer.com" rel="noopener noreferrer nofollow"><strong>OpenRouter</strong></a>: comes with &#x201C;auto router&#x201D; functionality where, after analyzing the prompt, the best one is selected. Uses Not Diamond under the hood.<strong> </strong><a href="https://openrouter.ai/docs/guides/routing/routers/auto-router?ref=blog.pragmaticengineer.com" rel="noopener noreferrer nofollow">More details</a></li><li><a href="https://kilo.ai/gateway?ref=blog.pragmaticengineer.com" rel="noopener noreferrer nofollow"><strong>Kilo Gateway</strong></a>: route requests the model considered the best price-per-value. Supports using your own model keys, and using the service only as a router. <a href="https://kilo.ai/gateway?ref=blog.pragmaticengineer.com" rel="noopener noreferrer nofollow">More details</a></li><li><a href="https://www.requesty.ai/?ref=blog.pragmaticengineer.com" rel="noopener noreferrer nofollow"><strong>Requestly.ai</strong></a>: automatically route requests to the right model based on cost, latency, and availability, and tons of configuration. <a href="https://www.requesty.ai/solution/llm-routing?ref=blog.pragmaticengineer.com" rel="noopener noreferrer nofollow">More details</a></li><li><a href="https://www.litellm.ai/?ref=blog.pragmaticengineer.com" rel="noopener noreferrer nofollow"><strong>LiteLLM</strong></a>: define routing rules that automatically select the best model, based on input content with the &#x201C;auto routing&#x201D; functionality. The setup is more manual, but you get more control than with many other AI gateways. <a href="https://docs.litellm.ai/docs/proxy/auto_routing?ref=blog.pragmaticengineer.com" rel="noopener noreferrer nofollow">More details</a></li><li><a href="https://github.com/envoyproxy/ai-gateway?ref=blog.pragmaticengineer.com" rel="noopener noreferrer nofollow"><strong>Envoy AI Gateway</strong></a>: an open source gateway that offers <em>some</em> routing configuration, though it feels that the routing engine focuses more on availability, not cost optimization and smart model routing. <a href="https://aigateway.envoyproxy.io/docs/capabilities/?ref=blog.pragmaticengineer.com" rel="noopener noreferrer nofollow">More details</a></li></ul><p>Cursor and GitHub Copilot also have an &#x201C;Auto&#x201D; model selection that does automatic model selection. For Cursor, it&#x2019;s a <a href="https://cursor.com/docs/models-and-pricing?ref=blog.pragmaticengineer.com#usage-pools" rel="noopener noreferrer nofollow">fixed-price model</a> where any savings made are for Cursor: they are not passed on to customers, but the model is cheaper than most others. For Copilot, the <a href="https://docs.github.com/en/copilot/concepts/models/auto-model-selection?ref=blog.pragmaticengineer.com" rel="noopener noreferrer nofollow">Auto mode</a> results in intelligent model selection &#x2013; but I&#x2019;ve not heard much positive feedback about this mode from the few devs I asked about it. For Pro plans, Copilot supports pretty old models: GPT-5.5 and Opus 4.8 are not available. These are, however, available on the Pro+ and above plans.</p><p>Demand seems to be extremely high for intelligent routing. I asked <a href="https://x.com/matanSF?ref=blog.pragmaticengineer.com" rel="noopener noreferrer nofollow">Matan Grinberg</a>, cofounder and CEO at Factory AI, who told me:</p><blockquote>&#x201C;Demand has been off the charts, especially from the enterprise [from large companies.] I&#x2019;ve met with practically every bank CEO since we launched this offering, because they want a layer to control spend, while still generating high-quality code.<br><br><strong>Pretty much everyone in tech is starting to see that open models are often sufficient. </strong>We&#x2019;re seeing open model usage strictly increasing the last six months. My guess is that hosted open models are sufficient in performance for around 60% of coding-related work, in terms of token spend.&#x201D;</blockquote><p>It feels to me that &#x201C;intelligent routing&#x201D; will become table stakes, and so we can expect pretty much all AI vendors to build some version of it, and many new vendors to offer this kind of functionality.</p><p>If you know of any additional vendors not listed, you can add a comment <a href="https://newsletter.pragmaticengineer.com/p/did-anthropics-new-model-just-boost?ref=blog.pragmaticengineer.com" rel="noreferrer">on the original The Pulse article</a>, and see more options there.<br><br><em>Read the full issue </em><a href="https://newsletter.pragmaticengineer.com/p/did-anthropics-new-model-just-boost?ref=blog.pragmaticengineer.com" rel="noopener noreferrer nofollow"><em>The Pulse that this excerpt was from</em></a><em>, or check out </em><a href="https://newsletter.pragmaticengineer.com/s/the-pulse?ref=blog.pragmaticengineer.com" rel="noopener noreferrer nofollow"><em>all The Pulse issues.</em></a></p>]]></content:encoded></item><item><title><![CDATA[Pollen tried to remove my article about CEO Callum Negus-Fancey and CTO Bradley Wright, and Google is assisting with it]]></title><description><![CDATA[<p>In 2022, I wrote about the damning fall of events tech company Pollen. The <a href="https://blog.pragmaticengineer.com/pollen/" rel="noreferrer">short of it:</a></p><blockquote>Pollen seemed to have pulled off the improbable feat of building a business in the notoriously low margin industry of events, surviving Covid-19, and building a solid software engineering organization. In April</blockquote>]]></description><link>https://blog.pragmaticengineer.com/pollen-tried-to-remove-my-article-about-callum-negus-fancey-and-google-is-assisting-to-it/</link><guid isPermaLink="false">6a4069be08e0e1000161f830</guid><dc:creator><![CDATA[Gergely Orosz]]></dc:creator><pubDate>Sun, 28 Jun 2026 00:40:25 GMT</pubDate><media:content url="https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/2026/06/Screenshot-2022-09-19-at-19.32.45.png" medium="image"/><content:encoded><![CDATA[<img src="https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/2026/06/Screenshot-2022-09-19-at-19.32.45.png" alt="Pollen tried to remove my article about CEO Callum Negus-Fancey and CTO Bradley Wright, and Google is assisting with it"><p>In 2022, I wrote about the damning fall of events tech company Pollen. The <a href="https://blog.pragmaticengineer.com/pollen/" rel="noreferrer">short of it:</a></p><blockquote>Pollen seemed to have pulled off the improbable feat of building a business in the notoriously low margin industry of events, surviving Covid-19, and building a solid software engineering organization. In April this year, the company announced it had raised another $150M in fresh funding.<br><br>But just three weeks later, Pollen&#xA0;<a href="https://newsletter.pragmaticengineer.com/p/the-scoop-11?ref=blog.pragmaticengineer.com">laid off</a>&#xA0;about 200 people, a third of staff. Leadership assured employees all was well. However, from that point on, things got worse. Leadership later pulled the plug on Slack, employees were not paid wages, pension contributions went missing, and vendors were not paid. Some vendors took matters into their own hands; on 9 August 2022, JIRA was suspended when Atlassian tired of the company&#x2019;s failure to pay.<br><br>On 10 August 2022, Pollen went bankrupt, collapsing into administration.</blockquote><p>The article looked bad on Pollen&apos;s founder, Callum Negus-Fancey. He was ultimately responsible for lying to staff, not paying salaries, the missing pension contributions, and the unpaid health insurance for US employees. The story was so bad that the BBC created a documentary titled <a href="https://www.bbcselect.com/watch/festival-fail/?ref=blog.pragmaticengineer.com" rel="noreferrer"><em>Crashed: $800M Festival Fail</em></a><em>.&#xA0;</em></p><p>And then there was the $3.2M double charge for customers, manually initiated by CTO Bradley Wright, detailed extensively in the documentary <a href="https://www.bbc.co.uk/iplayer/episode/m001n327/crashed-800m-festival-fail?ref=blog.pragmaticengineer.com">Crashed: $800M Festival Fail</a>. That double charge would have been trivial to reverse, but the reversal never happened, customers never got their money back, and the postmortem of the incident was never released to staff.<br><br><strong>Four years later, Pollen and Callum Negus-Fancey are attempting to erase this shameful story from the public record. </strong>The article is my original writing, and thus I am the copyright holder of it. So imagine my surprise when I was notified that Google removed the article from its search results thanks to a copyright infringement claim it received:</p><figure class="kg-card kg-image-card"><img src="https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/2026/06/Screenshot-2026-06-27-at-17.33.43.png" class="kg-image" alt="Pollen tried to remove my article about CEO Callum Negus-Fancey and CTO Bradley Wright, and Google is assisting with it" loading="lazy" width="1184" height="872" srcset="https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/size/w600/2026/06/Screenshot-2026-06-27-at-17.33.43.png 600w, https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/size/w1000/2026/06/Screenshot-2026-06-27-at-17.33.43.png 1000w, https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/2026/06/Screenshot-2026-06-27-at-17.33.43.png 1184w" sizes="(min-width: 720px) 720px"></figure><figure class="kg-card kg-image-card"><img src="https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/2026/06/Screenshot-2026-06-27-at-17.34.13.png" class="kg-image" alt="Pollen tried to remove my article about CEO Callum Negus-Fancey and CTO Bradley Wright, and Google is assisting with it" loading="lazy" width="1250" height="1362" srcset="https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/size/w600/2026/06/Screenshot-2026-06-27-at-17.34.13.png 600w, https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/size/w1000/2026/06/Screenshot-2026-06-27-at-17.34.13.png 1000w, https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/2026/06/Screenshot-2026-06-27-at-17.34.13.png 1250w" sizes="(min-width: 720px) 720px"></figure><p><strong>It seems that anyone can file a bogus copyright claim to get an article they don&apos;t like removed from Google&apos;s search index. </strong>This happened in this case. I have no information on who filed the copyright claim. Even less so on who claims to be the copyright owner? Because I am the only possible copyright owner!</p><p>And Google has gone ahead and removed my article about <a href="https://blog.pragmaticengineer.com/pollen/" rel="noreferrer">Pollen&apos;s shameful collapse</a> from its search results.</p><p>I have the option to appeal, which I have done so.</p><p><strong>Google&apos;s copyright removal system is clearly being abused, to a comical degree. </strong>Someone doesn&apos;t like that I went into extreme detail about the events at Pollen - all of which are facts. And, for some reason, bogus copyright requests can be weaponized to remove information like this from Google&apos;s search index.</p><p>I managed to find <a href="https://lumendatabase.org/notices/88811436?ref=blog.pragmaticengineer.com" rel="noreferrer">the bogus DMCA complaint</a> submission, after Google removed my site from search results. It is absolute BS: it claims that my original article is a copy of a The New York Post article. Which is absolute nonsense! </p><figure class="kg-card kg-image-card"><img src="https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/2026/06/Screenshot-2026-06-27-at-21.19.04.png" class="kg-image" alt="Pollen tried to remove my article about CEO Callum Negus-Fancey and CTO Bradley Wright, and Google is assisting with it" loading="lazy" width="2000" height="1365" srcset="https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/size/w600/2026/06/Screenshot-2026-06-27-at-21.19.04.png 600w, https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/size/w1000/2026/06/Screenshot-2026-06-27-at-21.19.04.png 1000w, https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/size/w1600/2026/06/Screenshot-2026-06-27-at-21.19.04.png 1600w, https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/2026/06/Screenshot-2026-06-27-at-21.19.04.png 2122w" sizes="(min-width: 720px) 720px"></figure><p>This &quot;Ellie Piee&quot; claimed that this 1998 article titled <a href="https://nypost.com/1999/01/01/band-leader-hits-winning-chord/?ref=blog.pragmaticengineer.com" rel="noreferrer">Band Leader Hits Winning Chord</a> was copied by my article <a href="https://blog.pragmaticengineer.com/pollen/" rel="noreferrer">Inside Pollen&#x2019;s Collapse: &#x201C;$200M Raised&#x201D; but Staff Unpaid - Exclusive</a>. The two do not even share a single sentence!</p><p><strong>The fake DMCA is made by a fake profile from a country with zero inhabitants. </strong>The removal requests by this &quot;Ellie Piee&quot; are made from the country called Bouvet Island, an <em>uninhabited</em> Norwegian dependent territory in the South Atlantic/Southern Ocean near Antarctica. It has zero inhabitants, and is referred to as the &quot;<a href="https://www.lifeinnorway.net/bouvet-island/?ref=blog.pragmaticengineer.com" rel="noreferrer">world&apos;s most remote island.</a>&quot;</p><figure class="kg-card kg-image-card kg-card-hascaption"><img src="https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/2026/06/image-9.png" class="kg-image" alt="Pollen tried to remove my article about CEO Callum Negus-Fancey and CTO Bradley Wright, and Google is assisting with it" loading="lazy" width="1536" height="864" srcset="https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/size/w600/2026/06/image-9.png 600w, https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/size/w1000/2026/06/image-9.png 1000w, https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/2026/06/image-9.png 1536w" sizes="(min-width: 720px) 720px"><figcaption><span style="white-space: pre-wrap;">Bouvet Island. No inhabitants, and yet Google accepted a fake DMCA takedown request from a fake person claiming to reside here. What a joke</span></figcaption></figure><p><strong>Why does Google allow fraudulent DMCA notices to be filed with no penalty? </strong>My own speculation is that it is clear enough that either Pollen, or its former CEO Callum Negus-Fancey, or its cofounder and COO Liam Negus-Fancey or someone else related to the company hired reputation firms to remove Pollen articles from Google. This firm then files the most bogus requests under fake names supposedly residing in uninhabited regions of the world, and Google complies.</p><p>I never thought I would have to revisit the shameful history of Pollen, but someone at the company felt the need to prompt me to do so. </p><p><strong>Lawsuits are still ongoing against Pollen, by the way. </strong>Now that someone from Pollen tried to erase the record of this story, I got a bit of renewed interest in what has happened since. In California, the <a href="https://www.courtlistener.com/docket/67107563/tayler-ulmer-v-streetteam-software-llc/?ref=blog.pragmaticengineer.com" rel="noreferrer">lawsuit Tayler Ulmer vs Pollen is still in progress</a>, summarized as:</p><ul><li>Tayler Ulmer and five other named former employees, on behalf of themselves and &#x201C;all similarly situated employees&#x201D; claim to have been laid off without paid wages and benefits, plus claiming possible fraud</li><li>The filing says that Pollen executives Callum Negus&#x2011;Fancey, Liam Negus&#x2011;Fancey, and James Ellis are personally liable in this lawsuit </li><li>The lawsuit wants to reclaim unpaid wages, unpaid severance, restoration of lost 401(k) contributions, and a uling that all the named entities and individuals are jointly liable, including successor entities, so employees can collect regardless of how Pollen shuffled assets and dissolved subsidiaries</li></ul><p>I am wishing best of luck to the claimants - former Pollen employees - and we will see how the judge rules in this lawsuit. The more Pollen wants to silence me writing about this, the more I&apos;ll likely pay attention.</p><p>Pollen executives should have read what the <a href="https://en.wikipedia.org/wiki/Streisand_effect?ref=blog.pragmaticengineer.com" rel="noreferrer">Streinsand effect</a> means!</p>]]></content:encoded></item><item><title><![CDATA[Reliability fail: No automated zone failover for Coinbase’s global trading service]]></title><description><![CDATA[<p><em>Hi, this is Gergely with a bonus, free issue of the Pragmatic Engineer Newsletter. In every issue, I cover Big Tech and startups through the lens of senior engineers and engineering leaders. Today, we cover one out of four topics from </em><a href="https://newsletter.pragmaticengineer.com/p/did-anthropics-new-model-just-boost?ref=blog.pragmaticengineer.com" rel="noreferrer"><em><u>this past The Pulse issue</u></em></a><em>. Full subscribers received the</em></p>]]></description><link>https://blog.pragmaticengineer.com/coinbase-fail/</link><guid isPermaLink="false">6a3ab42d341dfc0001969c22</guid><dc:creator><![CDATA[Gergely Orosz]]></dc:creator><pubDate>Tue, 23 Jun 2026 16:30:59 GMT</pubDate><content:encoded><![CDATA[<p><em>Hi, this is Gergely with a bonus, free issue of the Pragmatic Engineer Newsletter. In every issue, I cover Big Tech and startups through the lens of senior engineers and engineering leaders. Today, we cover one out of four topics from </em><a href="https://newsletter.pragmaticengineer.com/p/did-anthropics-new-model-just-boost?ref=blog.pragmaticengineer.com" rel="noreferrer"><em><u>this past The Pulse issue</u></em></a><em>. Full subscribers received the article below two weeks ago. If you&#x2019;ve been forwarded this email, you can</em><a href="https://newsletter.pragmaticengineer.com/about?ref=blog.pragmaticengineer.com"><em> <u>subscribe here</u></em></a><em>.</em></p><p>On the evening of Thursday, 7 May, trading at Coinbase went offline and stayed that way for nearly 10 hours (!!). Customers could not buy, sell, deposit, receive, or withdraw. Basically, the core services of Coinbase were unavailable.</p><p>The outage coincided with a regional AWS outage. But no other company suffered a global outage; the most I observed was a few infra companies like Datadog noting that some regions had issues, and were failing over to a healthy region.</p><p>It&#x2019;s weird that Coinbase &#x2013; a $40B company! &#x2013; told customers to monitor AWS&#x2019;s status pages for recovery. This made it pretty clear that the company fully depends on a single AWS zone. Unusually, Coinbase deleted this information from its status page, but I got a screenshot first:</p><p><a href="https://substackcdn.com/image/fetch/$s_!iItF!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F4d501e6f-08e4-4d20-82da-6756c6f437d2_1862x1000.png?ref=blog.pragmaticengineer.com"></a></p><figure class="kg-card kg-image-card kg-card-hascaption"><img src="https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/2026/06/image-6.png" class="kg-image" alt loading="lazy" width="1456" height="782" srcset="https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/size/w600/2026/06/image-6.png 600w, https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/size/w1000/2026/06/image-6.png 1000w, https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/2026/06/image-6.png 1456w" sizes="(min-width: 720px) 720px"><figcaption><i><em class="italic" style="white-space: pre-wrap;">Out in the open: Coinbase shifts blame for outage to a cloud provider</em></i></figcaption></figure><p><strong>Coinbase later confirmed that it does indeed have a single-availability zone dependency.&#xA0;</strong>From&#xA0;<a href="https://www.coinbase.com/en-gb/blog/a-postmortem-of-our-may-7-2026-outage?ref=blog.pragmaticengineer.com">its postmortem</a>:</p><blockquote>&#x201C;Our matching engine was pinned to a single building. The Coinbase Exchange matching engine runs as a Raft-based replicated cluster inside an AWS Cluster Placement Group. We make this choice deliberately. A matching engine that meets the latency and throughput demands of a serious market cannot tolerate inter-zone network hops between voting cluster members. The physics of distributed consensus and the economics of running a fair, liquid order book point to the same answer, which is co-location.&#x201D;</blockquote><p>A quick recap on the difference between an availability zone (AZ) and region:</p><ul><li><strong>Availability zone:</strong>&#xA0;One or more data centers (in the case of AWS, it is usually several data centers) located close enough to have low latency between them. Data centers in different AZs must be independently resilient. In the same AZ, there is no such requirement.</li><li><strong>Region:</strong>&#xA0;Within AWS, this consists of at least three isolated, physically separated AZs, usually 10-30 miles apart. It&#x2019;s unlikely they&#x2019;ll go down simultaneously, even in extreme circumstances.</li></ul><figure class="kg-card kg-image-card kg-card-hascaption"><img src="https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/2026/06/image-7.png" class="kg-image" alt loading="lazy" width="1138" height="1052" srcset="https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/size/w600/2026/06/image-7.png 600w, https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/size/w1000/2026/06/image-7.png 1000w, https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/2026/06/image-7.png 1138w" sizes="(min-width: 720px) 720px"><figcaption><i><em class="italic" style="white-space: pre-wrap;">From deepdive,&#xA0;</em></i><a href="https://newsletter.pragmaticengineer.com/p/three-cloud-providers-three-outages?ref=blog.pragmaticengineer.com"><i><em class="italic" style="white-space: pre-wrap;">Three Cloud Providers, Three Outages, Three Different Responses</em></i></a></figcaption></figure><p>Coinbase is saying that running from more than one availability zone (AZ) (building) would introduce too much latency to their product. This makes sense for low-latency activities like trading. But what about preparing for a failover as and when the AZ goes down? After all, an AZ is not guaranteed to have high uptime!</p><p>Turns out, Coinbase did not prepare for a failover for an AZ. Also from&#xA0;<a href="https://www.coinbase.com/en-gb/blog/a-postmortem-of-our-may-7-2026-outage?ref=blog.pragmaticengineer.com">its postmortem</a>&#xA0;(emphasis mine):</p><blockquote>&#x201C;We lacked an automated ability to fail over to another availability zone. When AWS terminated EC2 instances inside our placement group at 9:29 PM ET, three of five matching-engine nodes went down and we lost quorum.&#xA0;<strong>There was no automated cross-zone failover.</strong>&#xA0;Recovery required an emergency code change shipped during the incident to remove a startup assumption that all five cluster nodes were resolvable, the creation of a new node group outside the impaired placement group, and a careful sequence to restore a 3-of-5 quorum. This allowed us to reopen markets: first cancel-only, then auction mode, and finally full trading.&#x201D;</blockquote><p><strong>Having no automated failovers is incredibly amateurish for an operation of Coinbase&#x2019;s scale.&#xA0;</strong>Coinbase moves about 5.2&#xA0;<em>trillion&#xA0;</em>dollars per year, and is valued at around $40B. The outage interrupted around $7 billion-worth of financial activity, based on my napkin math.</p><p>Back in 2016, Uber was valued at roughly as much as Coinbase, and handled circa $40-50B yearly. It had two data centers on the east and west coasts, and operated more as if it ran out of two zones. I worked at Uber at the time and there were regular failover drills to another data center (another region), in preparation should a region go down. Uber&#x2019;s business, in terms of the financial figures, was a fraction of Coinbase&#x2019;s!</p><p>My impression of Coinbase&#x2019;s engineering culture has sunk after this incident, and it&#x2019;s almost comical that CEO Brian Armstrong is&#xA0;<a href="https://x.com/brian_armstrong/status/2051616759145185723?s=20&amp;ref=blog.pragmaticengineer.com">boasting</a>&#xA0;that non-technical teams now ship production code, thanks to AI. This feels like the wrong thing to focus on when Coinbase&#x2019;s infrastructure basics seem to be in far worse shape in 2026 than Uber&#x2019;s were a decade ago in 2016!</p><p><strong>It seems Coinbase did not learn lessons after getting burned by previous regional AWS outages.&#xA0;</strong>In October 2025, the company suffered a three-hour-long global trading outage due to issues with AWS&#x2019;s DynamoDB service. Following that outage, Coinbase engineering&#xA0;<a href="https://www.coinbase.com/en-gb/blog/Retrospective-AWS-Outage-Impact-and-Coinbase-Next-Steps?ref=blog.pragmaticengineer.com">said</a>&#xA0;(emphasis mine):</p><blockquote>&#x201C;To be better prepared in the future, we are exploring all options,&#xA0;<strong>including reviewing our regional deployment strategy</strong>&#xA0;to implement immediate and long-term fixes to reduce the impact of these types of outages.&#x201D;</blockquote><p>That process of reviewing the regional deployment strategy evidently missed or ignored the risk of a single-zone dependency of the heart of the business, with no cross-zone failover.</p><p>Read <a href="https://newsletter.pragmaticengineer.com/p/did-anthropics-new-model-just-boost?ref=blog.pragmaticengineer.com" rel="noreferrer">the full The Pulse</a> issue.</p>]]></content:encoded></item><item><title><![CDATA[The Pulse: a trend of trying to cut back on AI spend within eng departments?]]></title><description><![CDATA[<p><em>Hi, this is Gergely with a bonus, free issue of the Pragmatic Engineer Newsletter. In every issue, I cover Big Tech and startups through the lens of senior engineers and engineering leaders. Today, we cover one out of four topics from </em><a href="https://newsletter.pragmaticengineer.com/p/the-pulse-a-trend-of-trying-to-cut?ref=blog.pragmaticengineer.com" rel="noreferrer"><em><u>The Pulse issue</u></em></a><em> from two weeks ago. Full subscribers</em></p>]]></description><link>https://blog.pragmaticengineer.com/the-pulse-a-trend-of-trying-to-cut-back-on-ai-spend-within-eng-departments/</link><guid isPermaLink="false">6a2ae21f4eaa560001de7fde</guid><dc:creator><![CDATA[Gergely Orosz]]></dc:creator><pubDate>Thu, 11 Jun 2026 16:31:42 GMT</pubDate><content:encoded><![CDATA[<p><em>Hi, this is Gergely with a bonus, free issue of the Pragmatic Engineer Newsletter. In every issue, I cover Big Tech and startups through the lens of senior engineers and engineering leaders. Today, we cover one out of four topics from </em><a href="https://newsletter.pragmaticengineer.com/p/the-pulse-a-trend-of-trying-to-cut?ref=blog.pragmaticengineer.com" rel="noreferrer"><em><u>The Pulse issue</u></em></a><em> from two weeks ago. Full subscribers received the article below fourteen days ago. If you&#x2019;ve been forwarded this email, you can</em><a href="https://newsletter.pragmaticengineer.com/about?ref=blog.pragmaticengineer.com"><em> <u>subscribe here</u></em></a><em>.</em></p><p><em>The below The Pulse is interesting, as a week after the original was sent it out, OpenAI CEO Sam Altman </em><a href="https://www.businessinsider.com/ai-bubble-heads-doomers-sam-altman-ai-costs-huge-issue-2026-6?ref=blog.pragmaticengineer.com" rel="noreferrer"><em>also said</em></a><em> how AI budgeting is a huge issue for some companies &#x2013; echoing findings from this analysis.</em></p><hr><p>In mid-May, Uber president, Andrew McDonald, was on the&#xA0;<a href="https://www.youtube.com/watch?v=y_mQ6xLcKyc&amp;ref=blog.pragmaticengineer.com">Rapid Response podcast</a>&#xA0;for a conversation about the ridesharing giant with host Bob Safian, who raised the lack of hoped-for efficiency leverage from AI, citing the language learning app, Duolingo.</p><blockquote>&#x201C;When you hear companies talking about 25% of code commits over the last quarter were AI-driven, or how their token usage went from X to Y percentage of employees: all these numbers are amazing. I think it&#x2019;s a massive transformation of society&#x201D;, McDonald said.<br><br>&#x201C;But, then you go and you talk to your senior engineering leaders, and you&#x2019;re asking: &#x201C;how many projects that were &#x201C;on the cutting room floor&#x201D; got moved above the line [of being done] because of the productivity gains? Because 25% of our code commits were via Claude Code last quarter.&#x201D;<br><br><strong>That link [of improved productivity thanks to AI] is not there yet.</strong>&#xA0;I mean,&#xA0;<em>maybe</em>&#xA0;implicitly there&#x2019;s more that is getting shipped, but it&#x2019;s very hard to draw a line between one of those stats and more useful consumer features.<br><br>Over the coming quarters and years, maybe that will become clearer. But today it&#x2019;s hard, even if some of the underlying metrics are trending in a really astronomical direction.<br><br>Our CTO, Praveen, went viral because he said in an interview that we had blown through our AI budget for 2026 and it was the middle of March. We&#x2019;re going to have to start talking about token consumption and the associated cost versus headcount, and making tradesoffs on that as an engineering organization.<br><br><strong>If you&#x2019;re not able to draw a direct line to [how many] useful features and functionality you&#x2019;re shipping to your users, that tradeoff [on AI spend] becomes harder to justify because AI is not free.</strong><br><br>If you&#x2019;re just a user [of AI tools] sitting there and coming up with interesting use cases, and you don&#x2019;t pay the bill, it can feel [like AI is free]. But somebody&#x2019;s paying the bill&#x201D;.</blockquote><p>My hunch is that pretty much every company is starting to, or will do soon, ask questions about the massive growth in AI spend; starting with AI coding tools. I talked with a few folks at larger and smaller companies about it:</p><ul><li><strong>OpenCode: customer demand for optimizing spend is spiking.&#xA0;</strong>Yesterday, on the podcast episode with OpenCode creator, Dax Raad, he said demand for OpenCode&#x2019;s hosted inference service (<a href="https://opencode.ai/docs/zen/?ref=blog.pragmaticengineer.com">OpenCode Zen</a>) surpassed all expectations because larger companies want cheaper, but still capable, AI models. He revealed that over the past month,&#xA0;<em>every single</em>&#xA0;inbound enterprise request was about optimizing spend. So, there&#x2019;s some widespread concern about AI bills.</li><li><strong>Companies with cutting-edge AI bite the bullet with model routing.&#xA0;</strong>I talked with a CTO and a Head of Engineering at two cutting-edge tech companies. They also do not have an obvious return on investment (ROI) as yet. Still, they feel they have no choice but to pay the &#x201C;intelligence premium&#x201D; for state-of-the-art models or increase the number of bugs shipped. To reduce costs, both are considering &#x201C;smart&#x201D; model routing based on use case and prompt.<em>&#xA0;These places pay top-of-market for the best engineers, so similarly, there are expectations of access to the best tools and models.</em></li><li><strong>DoorDash: More knowledge-sharing sessions and responsibility for devs.&#xA0;</strong>The leading food delivery company gives responsibility for spending to devs: everyone has a high monthly token usage limit. To exceed it, you need to justify why, and also share the plan for being more efficient next month. Many regular in-house knowledge-sharing sessions are about efficient AI use.</li><li><strong>Traditional company: monthly limits and dumb-model downgrades.&#xA0;</strong>One month ago, one of the largest retirement-savings companies in the US updated its AI usage policy for all devs, a current engineer told me, imposing a monthly GitHub Copilot token limit. Once gone, devs must use the less capable &#x201C;0x&#x201D; models on Copilot, which are not charged extra: GPT&#x2011;5 mini, GPT&#x2011;4.1, and Grok Code Fast 1.</li><li><strong>Startups: signing up for multiple Claude / Codex Max subscriptions.&#xA0;</strong>I talked with several smaller startups that are generating meaningful revenue, and don&#x2019;t want to pay expensive API prices. So, they&#x2019;ve made it a practice for devs to get subsidized Claude Code Max or Codex Max subscriptions.</li></ul><p><strong>There&#x2019;s a new bottom-up focus on AI efficiency.&#xA0;</strong>Most tech companies do a variety of internal knowledge-sharing things like regular team demos, lunch-and-learn sessions, and engineering all-hands. I&#x2019;ve been noticing more AI efficiency-focused sessions in the past couple of months, coming from engineers: no top-down mandate!</p><p>Engineering all-hands, CTOs, and even CEOs have started to raise concerns about increasing AI token costs, and now more engineers are experimenting with cheaper models for simpler tasks, model routing, more efficient token usage, etc.</p><p>I&#x2019;d expect that during the next performance review and promotion cycles, engineers who helped save on token costs might be rewarded, like two years ago, when engineering teams were rewarded for saving on third-party vendor bills.</p><p>For an engineer, the best way to show impact in your work is to translate it to money: revenue generated, or costs saved. With AI spending as high as (or higher than) on observability, it should be straightforward to show massive savings with smart optimizations. There&#x2019;s a touch of irony in how any savings &#x2013; for which there might be promotions and pay rises &#x2013; will come from the places that actually did the rocketing spending.</p><hr><p>Read the full issue in the <a href="https://newsletter.pragmaticengineer.com/p/the-pulse-a-trend-of-trying-to-cut?ref=blog.pragmaticengineer.com" rel="noreferrer">previous The Pulse</a>. Or check out this week&apos;s The Pulse: <a href="https://newsletter.pragmaticengineer.com/p/did-anthropics-new-model-just-boost?ref=blog.pragmaticengineer.com" rel="noreferrer">Did Anthropic&#x2019;s new model just boost rival Codex&#x2019;s market share?</a></p>]]></content:encoded></item><item><title><![CDATA[The Pulse: Antigravity 2.0 takes ‘IDE’ out of its new IDE]]></title><description><![CDATA[Feedback about the redesigned IDE is overwhelmingly negative due to bugs, poor UX & model support, and eating through Gemini token quotas. Also: a clue that Antigravity’s own devs use other tools for their work?]]></description><link>https://blog.pragmaticengineer.com/the-pulse-antigravity-2-0-takes-ide-out-of-its-new-ide/</link><guid isPermaLink="false">6a2ae0124eaa560001de7f72</guid><dc:creator><![CDATA[Gergely Orosz]]></dc:creator><pubDate>Thu, 11 Jun 2026 16:22:16 GMT</pubDate><content:encoded><![CDATA[<p><em>Hi, this is Gergely with a bonus, free issue of the Pragmatic Engineer Newsletter. In every issue, I cover Big Tech and startups through the lens of senior engineers and engineering leaders. Today, we cover one out of four topics from </em><a href="https://newsletter.pragmaticengineer.com/p/the-pulse-antigravity-20-takes-ide?ref=blog.pragmaticengineer.com" rel="noreferrer"><em><u>The Pulse</u></em> issue</a><em> from 21 May 2026. Full subscribers received the article below three weeks days ago. If you&#x2019;ve been forwarded this email, you can</em><a href="https://newsletter.pragmaticengineer.com/about?ref=blog.pragmaticengineer.com"><em> <u>subscribe here</u></em></a><em>.</em></p><p>Yesterday, Google launched a full redesign of its flagship AI IDE, Antigravity 2.0. The &#x201C;original&#x201D; Antigravity came out&#xA0;<a href="https://newsletter.pragmaticengineer.com/p/the-pulse-154?ref=blog.pragmaticengineer.com">in November 2025</a>, as pretty much a clone of Windsurf, the IDE whose team Google acquired for $2.4B&#xA0;<a href="https://newsletter.pragmaticengineer.com/i/168569875/3-windsurf-sale-a-complicated-story-of-openai-microsoft-google-and-cognition?ref=blog.pragmaticengineer.com">last July.</a></p><p>Google has turned Antigravity into two distinct applications, &#x201C;Antigravity IDE&#x201D; (its former incarnation) and &#x201C;Antigravity 2.0&#x201D;. This new version itself resembles a clone of Codex&#x2019;s desktop app. When you install Antigravity 2.0, there are two different applications. From&#xA0;<a href="https://antigravity.google/blog/introducing-google-antigravity-2-0?ref=blog.pragmaticengineer.com">Google&#x2019;s launch post</a>:</p><blockquote>&#x201C;If you already have installed the Antigravity IDE, when that application next updates, it will automatically update to Antigravity 2.0. At this point, you will be asked if you would like to still keep the Antigravity IDE, which is recommended for developers:</blockquote><p><a href="https://substackcdn.com/image/fetch/$s_!8g3M!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F53f91dec-ad34-4544-ad1e-5dda28d62b21_1288x810.png?ref=blog.pragmaticengineer.com"></a></p><figure class="kg-card kg-image-card"><img src="https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/2026/06/image.png" class="kg-image" alt loading="lazy" width="1288" height="810" srcset="https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/size/w600/2026/06/image.png 600w, https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/size/w1000/2026/06/image.png 1000w, https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/2026/06/image.png 1288w" sizes="(min-width: 720px) 720px"></figure><p>My sense is that the team at Google may have struggled to decide whether to keep supporting &#x201C;original&#x201D; Antigravity while investing in the Codex-like experience, and so kept both. Whatever the reasoning, it has created confusing naming, and it feels to me like the team&#x2019;s true focus is 2.0.</p><figure class="kg-card kg-image-card kg-card-hascaption"><img src="https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/2026/06/image-1.png" class="kg-image" alt loading="lazy" width="1400" height="1466" srcset="https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/size/w600/2026/06/image-1.png 600w, https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/size/w1000/2026/06/image-1.png 1000w, https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/2026/06/image-1.png 1400w" sizes="(min-width: 720px) 720px"><figcaption><span style="white-space: pre-wrap;">Big change: Antigravity 2.0 throws out the IDE and adds a conversational interface</span></figcaption></figure><p><strong>The upgrade feels rushed, sloppy, and poorly thought out.&#xA0;</strong>I had Antigravity on my machine, and installed Antigravity 2.0 separately. I wanted to use them side-by-side, but when I tapped &#x201C;Restart to update&#x201D; on Antigravity 1.0, it upgraded itself to Antigravity 2.0 (the non-IDE version). Suddenly, I had two applications with different names, but neither is an IDE:</p><figure class="kg-card kg-image-card kg-card-hascaption"><img src="https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/2026/06/image-2.png" class="kg-image" alt loading="lazy" width="1236" height="436" srcset="https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/size/w600/2026/06/image-2.png 600w, https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/size/w1000/2026/06/image-2.png 1000w, https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/2026/06/image-2.png 1236w" sizes="(min-width: 720px) 720px"><figcaption><span style="white-space: pre-wrap;">Testing times: Two apps but no IDE version on my machine, due to lack of testing</span></figcaption></figure><p><strong>Google has introduced an &#x201C;Agent Manager&#x201D; concept that feels unintuitive, and perhaps suitably, its creator struggles to&#xA0;</strong><a href="https://antigravity.google/blog/introducing-google-antigravity-2-0?ref=blog.pragmaticengineer.com"><strong>explain</strong></a><strong>&#xA0;it</strong>&#xA0;(emphasis mine:)</p><blockquote>&#x201C;When we launched the Google Antigravity IDE in November 2025, there was no agent-first GUI surface in the market. We wanted to prove that such a surface worked, at least for software development. So, while the core of the Antigravity IDE was a familiar agent-powered IDE, we introduced the Agent Manager, a second surface that stripped away much of the &#x201C;IDE&#x201D; UI. This allowed users to focus on the agent conversations themselves, the artifacts the agents produced, and multi-agent management.<br><br>Even without this separation, we have been pleasantly surprised how many people have adopted the Agent Manager in the Antigravity IDE for such non-development tasks,&#xA0;<strong>but it is not particularly intuitive&#x201D;.</strong></blockquote><p>The &#x201C;Agent Manager&#x201D; is basically a way to launch several agents, and the most intuitive interfaces for doing so are inside Claude and Codex desktop apps and Claude CoWork. Antigravity 2.0 copies them by starting new agent tasks on the right hand of the UI, and keeping track of them.</p><p><strong>Google looks indecisive about what to do with the IDE part of Antigravity</strong>. The&#xA0;<a href="https://antigravity.google/blog/introducing-google-antigravity-2-0?ref=blog.pragmaticengineer.com">release announcement</a>&#xA0;suggests they&#x2019;ll keep on confusing users (emphasis mine:)</p><blockquote>&#x201C;Although Antigravity 2.0 is the future, we won&#x2019;t disrupt your workflows right away. For now, both the Antigravity IDE application itself and the Agent Manager in the Antigravity IDE will remain available.&#xA0;<strong>In an upcoming release, we will remove the Agent Manager from the Antigravity IDE, turning the IDE into a purely agent-powered IDE.</strong>&#x201D;</blockquote><p>Basically, the Antigravity IDE (not &#x201C;the future&#x201D; in Google&#x2019;s vision) will become more limited over time. It&#x2019;s unclear what a &#x201C;purely&#x201D; agent-powered IDE will be once agentic functionality is removed, especially as Antigravity IDE is&#xA0;<em>not</em>&#xA0;the future, as per Google.</p><p>Not only that, but the announcement also encourages devs to use Antigravity 2.0 with other IDEs! From&#xA0;<a href="https://antigravity.google/blog/introducing-google-antigravity-2-0?ref=blog.pragmaticengineer.com">the launch post</a>&#xA0;(emphasis mine):</p><blockquote>&#x201C;We recommend dual-wielding Antigravity 2.0 with your IDE of choice, whether it is the Antigravity IDE or otherwise.&#xA0;<strong>Googlers have already been dual wielding Antigravity 2.0 with a whole host of IDEs!&#xA0;</strong>We will have compatible extensions and plugins into other popular IDEs shortly&#x201D;.</blockquote><p>To me, this suggests Google will retire Antigravity IDE and recommend VS Code, JetBrains, Cursor, or Zed, with Antigravity. Then again, why would Cursor or Zed support Antigravity? The messaging is extremely confusing: Google&#x2019;s still the king of opacity.</p><p><strong>Feedback on Antigravity 2.0 has been negative due to bugs, poor UX and model support, more bugs, and eating up Gemini token quotas rapidly.&#xA0;</strong>Antigravity does not support state-of-the-art Anthropic or OpenAI models (no Opus 4.7 or GPT 5.5). Not supporting OpenAI&#x2019;s models like this is sensible as they&#x2019;re competitors, but Google is an investor in Anthropic, so not supporting Opus 4.7 (while supporting the legacy 4.6 model) is a bit odd.</p><figure class="kg-card kg-image-card kg-card-hascaption"><img src="https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/2026/06/image-3.png" class="kg-image" alt loading="lazy" width="1182" height="466" srcset="https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/size/w600/2026/06/image-3.png 600w, https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/size/w1000/2026/06/image-3.png 1000w, https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/2026/06/image-3.png 1182w" sizes="(min-width: 720px) 720px"><figcaption><i><em class="italic" style="white-space: pre-wrap;">Models which Antigravity 2.0 supports</em></i></figcaption></figure><p>Gemini 3.5 Flash is Google&#x2019;s cutting-edge model, but it gets&#xA0;<a href="https://x.com/robinebers/status/2056928512364400805?s=20&amp;ref=blog.pragmaticengineer.com">lots of complaints</a>&#xA0;from devs for editing files without asking, and seems like an inefficient model. Another&#xA0;<a href="https://x.com/ZackKorman/status/2056843880843096580?s=20&amp;ref=blog.pragmaticengineer.com">common complaint</a>&#xA0;is that Antigravity uses up the $100/month Ultra subscription daily quota in minutes. Basically, it seems like a poor-quality product that wasn&#x2019;t polished due to lack of time or inclination.</p><p>In context, it&#x2019;s embarrassing for there to be a &#x201C;Codex&#x201D; folder in the launch video if it suggests that Google&#x2019;s own Antigravity devs are using Codex for day-to-day work. It also suggests that the launch video was not reviewed properly, otherwise this obvious detail would presumably have been caught and fixed:</p><figure class="kg-card kg-image-card kg-card-hascaption"><img src="https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/2026/06/image-4.png" class="kg-image" alt loading="lazy" width="1200" height="603" srcset="https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/size/w600/2026/06/image-4.png 600w, https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/size/w1000/2026/06/image-4.png 1000w, https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/2026/06/image-4.png 1200w" sizes="(min-width: 720px) 720px"><figcaption><i><em class="italic" style="white-space: pre-wrap;">Codex folder in Documents suggests Antigravity devs are users of it. Source:&#xA0;</em></i><a href="https://x.com/GergelyOrosz/status/2057054276266885590?s=20&amp;ref=blog.pragmaticengineer.com"><i><em class="italic" style="white-space: pre-wrap;">Antigravity 2.0 launch video</em></i></a></figcaption></figure><p><strong>To upset devs even more, Google is replacing its open source Gemini CLI with the closed source Antigravity CLI.&#xA0;</strong>There are a few issues with this move:</p><ul><li>Antigravity CLI does not support Google&#x2019;s own&#xA0;<a href="https://geminicli.com/docs/cli/acp-mode/?ref=blog.pragmaticengineer.com">Agent Client Protocol (ACP)</a>, used for programmatic control, primarily for IDE and other developer tool integrations. This is protocol which IDEs like JetBrains and Zed have adopted, so Antigravity CLI becomes incompatible with them</li><li>Google offers no migration path from Gemini CLI settings/skills/MCPs into Antigravity.&#xA0;<em>Figure it out on your own!</em></li><li>Devs using Gemini models are&#xA0;<em>forced</em>&#xA0;to move as Google has removed support for Gemini 3.5 Flash model from Gemini CLI. It can only be used from Antigravity CLI. Clearly, this was done to force a move.&#xA0;<em>Why not offer a migration path?</em></li></ul><p><strong>My sense is the Antigravity team is moving fast, breaking things, and shipping a broken product.&#xA0;</strong>It feels like the Antigravity 2.0 and Antigravity CLI products have been rushed to meet the annual Google conference (Google I/O) deadline, this week. Google deprecates existing products to attempt to get users to switch to the new version. But the new one is broken.</p><figure class="kg-card kg-image-card kg-card-hascaption"><img src="https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/2026/06/image-5.png" class="kg-image" alt loading="lazy" width="1430" height="1056" srcset="https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/size/w600/2026/06/image-5.png 600w, https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/size/w1000/2026/06/image-5.png 1000w, https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/2026/06/image-5.png 1430w" sizes="(min-width: 720px) 720px"><figcaption><i><em class="italic" style="white-space: pre-wrap;">What&#x2019;s changed?&#xA0;</em></i><a href="https://goomics.net/50?ref=blog.pragmaticengineer.com"><i><em class="italic" style="white-space: pre-wrap;">Manu Cornet</em></i></a><i><em class="italic" style="white-space: pre-wrap;">&#xA0;penned this cartoon in 2011</em></i></figcaption></figure><p>And this is a big reason why I don&#x2019;t believe Google will become a serious player in the dev tools space &#x2013; not even with AI dev tools. Every six to twelve months they remind devs who onboarded to their dev tools that it was a mistake to do so. I would expect the majority of Google CLI and Antigravity users to go and try products from other vendors &#x2013; be that Cursor, Anthropic, OpenAI, GitHub, or others &#x2013; and for few to stick around after their workflows are broken.</p>]]></content:encoded></item><item><title><![CDATA[The Pulse: Forward deployed engineering heats up again]]></title><description><![CDATA[Massive demand for the role at Google, OpenAI, and Anthropic. The latest version of the FDE role looks like the consultant / solution architect role done by many early-junior engineers.]]></description><link>https://blog.pragmaticengineer.com/the-pulse-forward-deployed-engineering-heats-up-again/</link><guid isPermaLink="false">6a0f3a9025c8da0001c931d1</guid><dc:creator><![CDATA[Gergely Orosz]]></dc:creator><pubDate>Sun, 24 May 2026 20:35:11 GMT</pubDate><content:encoded><![CDATA[<p><em>Hi, this is Gergely with a bonus, free issue of the Pragmatic Engineer Newsletter. In every issue, I cover Big Tech and startups through the lens of senior engineers and engineering leaders. Today, we cover one out of five topics from </em><a href="https://newsletter.pragmaticengineer.com/p/the-pulse-forward-deployed-engineering?ref=blog.pragmaticengineer.com" rel="noreferrer"><em><u>last week&#x2019;s The Pulse</u></em></a><em> issue. Full subscribers received the article below seven days ago. If you&#x2019;ve been forwarded this email, you can</em><a href="https://newsletter.pragmaticengineer.com/about?ref=blog.pragmaticengineer.com"><em> <u>subscribe here</u></em></a><em>.</em></p><p>Last August, we covered a sudden trend of&#xA0;<a href="https://newsletter.pragmaticengineer.com/p/forward-deployed-engineers?ref=blog.pragmaticengineer.com">high demand</a>&#xA0;for forward deployed engineers (FDEs), and now there are signs demand is increasing more.</p><h3 id="google-fde-recruitment-spike">Google: FDE recruitment spike</h3><p>Google is doubling down on FDEs and making the interview process much simpler. Google Cloud CEO, Thomas Kurian, has&#xA0;<a href="https://www.linkedin.com/posts/thomas-kurian-469b6219_today-we-announced-a-new-ai-focused-organization-share-7460023646418489344-5xWp?utm_source=share&amp;utm_medium=member_desktop&amp;rcm=ACoAAAIk0KwBsmE3oBadWSg2ettxmEyKbqZKG34">announced</a>&#xA0;a new, AI-focused organization within the Go-To-Market team, and is hiring a bunch of FDEs for it.</p><p>I&#x2019;m hearing the hiring process&#xA0;<a href="https://x.com/sanjeed_i/status/2054418365159178371?ref=blog.pragmaticengineer.com">has been shortened</a>&#xA0;from 4-6 interviews held over the course of weeks, to as few as two interviews in just two days. It looks like Google is unusually eager (desperate?) to fill this job.</p><h3 id="openai-outsources-fde-hiring-spree">OpenAI outsources FDE hiring spree</h3><p>On Monday (11 May), OpenAI&#xA0;<a href="https://openai.com/index/openai-launches-the-deployment-company/?ref=blog.pragmaticengineer.com">announced</a>&#xA0;The OpenAI Deployment Company, a standalone entity&#xA0;<a href="https://openai.com/index/openai-launches-the-deployment-company/?ref=blog.pragmaticengineer.com">funded by</a>&#xA0;$4 billion of private equity from TPG, Advent, and others at a $14B valuation. It appears OpenAI is not an investor and holds a partner role.</p><p>The announcement mentions FDEs and says their job will be to &#x201C;work closely with business leaders, operators, and frontline teams to identify where AI can make the biggest impact, redesign organizational infrastructure and critical workflows around it, and turn those gains into durable systems&#x201D;.</p><p>Based on that, the FDEs will play an important role in OpenAI&#x2019;s enterprise sales activity by ensuring the company&#x2019;s AI systems work and deliver value for customers. Outsourcing this to the new Deployment Company should also free up OpenAI to focus on developing better AI models, while the partner company and its FDEs take care of the customer-facing side of things.</p><p>In a related development, OpenAI has acquired Tomoro, a UK-headquartered AI company founded in 2023, which employs 150 FDEs across the UK, Asia, and Australia. Tomoro is the first acquisition of the OpenAI Deployment Company.</p><h3 id="anthropic-plans-outsourced-fde-recruitment">Anthropic plans outsourced FDE recruitment</h3><p>Anthropic is doing the same by creating its own distinct FDE consulting company. Last Monday (May 4), Anthropic issued&#xA0;<a href="https://www.anthropic.com/news/enterprise-ai-services-company?ref=blog.pragmaticengineer.com">an unusually hand-wavy announcement</a>&#xA0;about the new business without a name and with few investment details mentioned.</p><p>Investors are Anthropic, Blackstone, Hellman &amp; Friedman, and Goldman Sachs, and the new business will work with &#x201C;mid-sized companies across sectors to bring Claude into their most important operations.&#x201D;</p><p>Anthropic&#x2019;s approach seems to be the same as OpenAI&#x2019;s: create a standalone company with external funding, in which FDEs integrate Claude into enterprises that will then presumably start purchasing more Claude tokens than ever.</p><h3 id="fde-or-a-consultant">FDE or a consultant?</h3><p>These FDE roles seem very similar to those of an external consultant or a systems integrator. A year ago, I talked with FDEs at OpenAI and Ramp whose jobs seemed a genuine mix of platform engineering &#x2013; with an FDE contributing back to the platform &#x2013; software engineering, in that they built new solutions, and also solutions engineering: integrating into customers&#x2019; services.</p><figure class="kg-card kg-image-card kg-card-hascaption"><img src="https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/2026/05/image-9.png" class="kg-image" alt loading="lazy" width="1202" height="684" srcset="https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/size/w600/2026/05/image-9.png 600w, https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/size/w1000/2026/05/image-9.png 1000w, https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/2026/05/image-9.png 1202w" sizes="(min-width: 720px) 720px"><figcaption><i><em class="italic" style="white-space: pre-wrap;">The FDE role as I visualized it in mid-2025</em></i></figcaption></figure><p>But today, it looks like the role is about to become indistinguishable from a solutions architect or consultant, especially given that these new FDE jobs are in quasi-external companies and separate organizations from where AI products are built.</p><figure class="kg-card kg-image-card kg-card-hascaption"><img src="https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/2026/05/image-10.png" class="kg-image" alt loading="lazy" width="1456" height="1338" srcset="https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/size/w600/2026/05/image-10.png 600w, https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/size/w1000/2026/05/image-10.png 1000w, https://storage.ghost.io/c/39/f8/39f85cc7-8637-40fc-a57c-f45754453717/content/images/2026/05/image-10.png 1456w" sizes="(min-width: 720px) 720px"><figcaption><span style="white-space: pre-wrap;">The reality of the FDE role: an AI-focused solutions architect or consultant</span></figcaption></figure><p>Job adverts are increasingly clear about the role, but it still helps to read between the lines. Here&#x2019;s one for&#xA0;<a href="https://www.google.com/about/careers/applications/jobs/results/77713823254880966-forward-deployed-engineer/?ref=blog.pragmaticengineer.com">an FDE at Google Cloud</a>. At first glance, it&#x2019;s impressive (emphasis mine):</p><blockquote><strong>&#x201C;You are an embedded builder who bridges the gap between frontier AI products and production-grade reality within customers.</strong>&#xA0;Unlike traditional advisory roles, you function as an &#x201C;innovator-builder,&#x201D; moving beyond high-level architecture to code, debug, and jointly ship bespoke agentic solutions directly within the customer&#x2019;s environment. Your role is designed for high-agency engineers with a founder&#x2019;s mindset. You will address blockers to production, including solving the integration complexities, data readiness issues, and state-management challenges that prevent AI from reaching enterprise-grade maturity. By embedding with strategic accounts, you serve a dual purpose: providing &#x201C;white glove&#x201D; deployment of complex AI systems and acting as a critical feedback loop, transforming real-world field insights into Google Cloud&#x2019;s future product roadmap.&#x201D;</blockquote><p>Translated into plain English:</p><blockquote><strong>You are a contractor who codes at a customer&#x2019;s office.&#xA0;</strong>The actual job is around ~25% coding-related, 50% integration/plumbing, 25% meetings and customer hand-holding. Anything else will be assorted admin and internal process-related stuff.</blockquote><p>Here&#x2019;s what I reckon some of the terms in Google&#x2019;s job advert will add up to on the job:</p><ul><li>&#x201C;Founder&#x2019;s mindset&#x201D;. No one will provide a spec, and scope creep is your problem to deal with. If your project doesn&#x2019;t ship, that&#x2019;s also your problem</li><li>&#x201C;High-agency&#x201D;. There are no resources besides your own</li><li>&#x201C;White glove&#x201D;. Do not say &#x201C;no&#x201D; to anything the customer suggests, even when they should probably listen to your feedback about whatever it is</li><li>&#x201C;Critical feedback loop transforming real-world field insights into Google Cloud&#x2019;s future product roadmap&#x201D;. You will file tickets and a few PMs at Google may read some of them</li></ul><p>But in all fairness, this FDE job looks like a great fit for some folks:</p><ul><li>Those at the early-career stage who want Google on their resumes, but who might struggle to land a software engineering job with the tech giant</li><li>Those who enjoy shipping end-to-end, can work well with ambiguity (&#x201C;founder&#x2019;s mindset&#x201D; is spot on!) and will own outcomes</li></ul><p>On the other hand, I suspect this FDE role will not be a good fit for those who:</p><ul><li>Like to build well-engineered systems and value the time to do it well</li><li>Like building greenfield systems</li><li>Prefer longer-term projects and working with other software engineers</li></ul><p><strong>In the cases of OpenAI and Anthropic, the outsourcing of FDEs is even clearer.&#xA0;</strong>Google at least hires FDEs to the company, and they will be issued some stock as part of their compensation package. But at OpenAI and Anthropic, new FDEs will be hired to a standalone company, and if they get stock, it will likely not be OpenAI or Anthropic stock. So, if OpenAI or Anthropic benefit greatly from FDEs&#x2019; work, then the FDEs won&#x2019;t see the upside!</p><p>Putting it more simply: FDEs hired in these external companies will not be seen as &#x201C;core&#x201D;. If they were, then the companies would hire more FDEs, as in the past.</p><h3 id="opportunity-for-new-grads">Opportunity for new grads?</h3><p>As mentioned above, the new FDE roles could be a great opportunity for early-career software engineers entering the industry,&#xA0;<a href="https://x.com/levie/status/2054729966630441007?ref=blog.pragmaticengineer.com">according to</a><strong>&#xA0;</strong>Box CEO, Aaron Levie:</p><blockquote>&#x201C;If I were a college career counselor or in career services, I&#x2019;d quickly be figuring out how to get students to understand these forward deployed engineer jobs exist and how to get them.<br><br>The requirements are a mix of deep technical skills, often CS majors or minors. You must be great at understanding problem solving, how to have systems thinking, and have a strong business acumen. The kicker, of course, is to make sure you&#x2019;re very deep in AI agents; you need to have fluency in coding agents, MCP, CLIs, Skills, and so on.<br><br>Hundreds (thousands?) technology companies will be hiring for these roles, same with any consulting and IT services company, and the vast majority of mid-size and large enterprises will be hiring for this talent internally as well.&#x201D;</blockquote><p>Historically, tech consultancies hired many new grads for consultant roles, which are not so attractive to experienced engineers, but are great, real-world, paid learning opportunities for more junior ones. With product companies hiring fewer new grads, new grads will increasingly find FDE roles that they have a chance at getting.</p><p><strong>All things considered, I expect demand for FDE roles to increase, industry-wide.&#xA0;</strong>They speed up AI rollouts, which several parties have an interest in doing:</p><ul><li>AI labs: the faster that AI solutions roll out, the more revenue they make!</li><li>AI vendors: any company selling AI products will, similarly, want FDEs to help integrate the software with customers, so they can sell more</li><li>Non-AI companies: these will want to hire FDEs for an &#x201C;AI transformation&#x201D; and to integrate AI into workflows and products</li><li>Non-AI vendors: even SaaS companies that don&#x2019;t sell AI products will be able to close larger clients if they hire FDEs who can roll out their software faster, and for more use cases, inside enterprises they work with.</li></ul><p>FDE was the hottest tech role in 2025 and this trend seems set to continue this year. Demand for this role is high and rising, but it&#x2019;s likely to stay unattractive to experienced devs for whom being a consultant may feel like a step down &#x2013; especially after you&#x2019;ve learned to love building products!</p><p><em>Read the full issue of </em><a href="https://newsletter.pragmaticengineer.com/p/the-pulse-forward-deployed-engineering?ref=blog.pragmaticengineer.com" rel="noreferrer"><em><u>last week&#x2019;s The Pulse</u></em></a><em>, or check out </em><a href="https://newsletter.pragmaticengineer.com/p/the-pulse-antigravity-20-takes-ide?ref=blog.pragmaticengineer.com" rel="noreferrer"><em><u>this week&#x2019;s The Pulse</u></em></a><em>. This week&#x2019;s issue covers:</em></p><ol><li><strong>Antigravity 2.0 takes the &#x2018;IDE&#x2019; out of its new IDE.&#xA0;</strong>Feedback about the redesigned IDE is overwhelmingly negative due to bugs, poor UX &amp; model support, and eating through Gemini token quotas. Also: a clue that Antigravity&#x2019;s own devs use other tools for their work?</li><li><strong>Why is Google&#x2019;s product ecosystem chaotic?&#xA0;</strong>The range of products on display at the Google I/O conference made a messy, incoherent impression. But Google&#x2019;s &#x201C;let a thousand flowers bloom&#x201D; approach might be giving the search giant an underrated advantage in the AI race that no other Big Tech giant has.</li><li><strong>Meta cuts 8,000 jobs.&#xA0;</strong>Morale is very low inside the social media giant as thousands lose their jobs, just as revenue and profits hit record levels. Meanwhile, those assigned to dull data labeling work are spared the axe.</li><li><strong>Industry pulse.&#xA0;</strong>Anthropic pays $15B/year for SpaceX compute, SpaceX&#x2019;s financials and IPO filing, more woes for GitHub, court dismisses Elon Musk&#x2019;s &#x201C;hypocritical&#x201D; OpenAI lawsuit, and Spain may stop blocking its internet during La Liga football games.</li><li><strong>How to get a job at a frontier lab in 2026.&#xA0;</strong>A Distinguished Engineer at Google recommends focusing on developing particular skills</li></ol><p>Read <a href="https://newsletter.pragmaticengineer.com/p/the-pulse-antigravity-20-takes-ide?ref=blog.pragmaticengineer.com" rel="noreferrer">the full The Pulse</a>.</p><p></p>]]></content:encoded></item></channel></rss>