Novo Nordisk (Ozempic)
Last year Novo Nordisk, the Danish pharmaceutical company behind Ozempic and Wegovy, overtook LVMH to become Europe’s most valuable company. And the pull for Acquired to finally tackle healthcare (18% of US GDP!) became too strong for us to resist. While we didn’t know much about Novo Nordisk before diving in, our first thought was, “wow, seems like these new diabetes and obesity drugs mean serious trouble for big insulin companies.” And then… we realized that Novo Nordisk IS the big insulin company. And in a story befitting of Steve Jobs and Apple, they’d just disrupted themselves with the drug equivalent of an iPhone moment. Once we dug further, we quickly realized this company has it all: an incredible 100+ year history filled with Nobel Prizes, bitter personal rivalries, board room dra
Could not retrieve the full article text.
Read on Acquired Podcast →Sign in to highlight and annotate this article

Conversation starters
Daily AI Digest
Get the top 5 AI stories delivered to your inbox every morning.
More about
claudeupdatecompanyThe Fallback That Never Fires
<p>Your agent hits a rate limit. The fallback logic kicks in, picks an alternative model. Everything should be fine.</p> <p>Except the request still goes to the original model. And gets rate-limited again. And again. Forever.</p> <h2> The Setup </h2> <p>When your primary model returns 429:</p> <ol> <li>Fallback logic detects rate_limit_error</li> <li>Selects next model in the fallback chain</li> <li>Retries with the fallback model</li> <li>User never notices</li> </ol> <p>OpenClaw has had model fallback chains for months, and they generally work well.</p> <h2> The Override </h2> <p><a href="https://github.com/openclaw/openclaw/issues/59213" rel="noopener noreferrer">Issue #59213</a> exposes a subtle timing problem. Between steps 2 and 3, there is another system: <strong>session model recon
OpenSpec (Spec-Driven Development) Failed My Experiment — Instructions.md Was Simpler and Faster
<p>There’s a lot of discussion right now about how developers should work with AI coding tools.</p> <p>Over the past year we’ve seen the rise of two very different philosophies:</p> <p><strong>1. Vibe Coding</strong> — just prompt the AI and iterate quickly<br> <strong>2. Spec-Driven Development</strong> — enforce structure so AI understands requirements</p> <p>Frameworks like <strong>OpenSpec</strong> are trying to formalize the second approach.</p> <p>Instead of giving AI simple prompts, the workflow looks something like this:</p> <ul> <li>generate a proposal</li> <li>review specifications</li> <li>approve tasks</li> <li>allow the AI agent to execute the plan</li> </ul> <p>In theory, this should produce <strong>better and more reliable code</strong>.</p> <p>So I decided to test it on a r
The 22,000 Token Tax: Why I Killed My MCP Server
<p>I was at a company workshop, arguing with beginners about token costs.</p> <p>They wanted to save money. Reasonable instinct. They were spending maybe €25 a week on API calls and wanted to cut it to €20. I pushed back hard: "You're at the learning stage. Spend <em>more</em>, not less. Explore. Break things. Create costs.<br> Because while you're saving €5, I'm spending €600 a week — and I'll gladly spend €20 more if it means finishing a ticket in one session instead of two."</p> <p>Then I told them the one scenario where token consumption actually matters: when you need to prolong a session. Not to save money — to preserve context. Because when your session compacts or resets, you lose everything the model was holding in its head. And in the early days of Claude Code, there was no auto-
Knowledge Map
Connected Articles — Knowledge Graph
This article is connected to other articles through shared AI topics and tags.
More in Products
WaterNSW Adopts Generative AI For Applications - Let's Data Science
<a href="https://news.google.com/rss/articles/CBMikgFBVV95cUxNVkdHejJmSW85UzVuSEJnRUpBbHpORklieU1QeGU2cS1qZjRhdGZKZG55VHRQN2p4Sk9QNk12LTE5aXpaaEFxc0Nvb0xpcjJkRXlFeDc4T3hLQkdBOEltNFUzeWRZWkVjZ2RxR0FlQS1qZWg4cFRRZmVhbXBPbXFIUHZ5bzVCSUFXMEVCclFjR2RSUQ?oc=5" target="_blank">WaterNSW Adopts Generative AI For Applications</a> <font color="#6f6f6f">Let's Data Science</font>
CSU survey: Most students, faculty regularly use AI tools - Action News Now
<a href="https://news.google.com/rss/articles/CBMi1gFBVV95cUxQdlViT09kNE5YNWw4bXlFOHdlMnRQNnB1aFVzVUM2bkxkSUdZeHZUMGRmR3B2OTdrMGVZYndobHFpRXVNbi05blh3Tmt2MFlobTBJTzNab0ZXUFNfQmRQVEs1WmZ6UUQtUTZmTGxYVGJlRmwyRVNUVE83X1JRWDJvRHY1TGE1NEpWU21hNUhUSlI4eTJXbzVNaS1xb2Y3bTJHWVRyRThMRGlwcS13bG1TSW5uZlEycUY2R3F0T3ZjTWZvOEpCSktLTVZMLUFpRFV6RGd0d2F3?oc=5" target="_blank">CSU survey: Most students, faculty regularly use AI tools</a> <font color="#6f6f6f">Action News Now</font>
🌪️ Proof of Work: The To-Do List of Infinite Regret
<p>**</p> <h2> What I Built </h2> <p>**<br> I built a productivity app for people who hate being productive. Proof of Work is a digital psychological experiment that turns simple task management into a high-stakes gamble.</p> <p>The gimmick? You cannot "check off" a task. To complete anything (e.g., "Buy Milk"), you must first win a game of Minesweeper on an Expert-level grid (30x16 with 99 mines). If you hit a mine, the Hydra Engine triggers: your task isn't cleared—it duplicates 20 times. Now you have to buy milk 21 times. It is a functional implementation of a "short-circuit" for the human brain.</p> <p>Demo<br> </p> <div class="crayons-card c-embed text-styles text-styles--secondary"> <div class="c-embed__content"> <div class="c-embed__body flex items-center justify-between"> <a href="
I Asked AI to Do Agile Sprint Planning (GitHub Copilot Test)
<p>AI tools are getting very good at writing code.</p> <p>GitHub Copilot can generate entire functions, review pull requests, and even help refactor legacy codebases. But software development isn’t just about writing code.</p> <p>A big part of the process is <strong>planning the work</strong>.</p> <p>So I decided to run a small experiment:</p> <p><strong>Can AI actually perform Agile sprint planning?</strong></p> <p>Using <strong>GitHub Copilot inside Visual Studio 2026</strong>, I asked AI to review a legacy codebase and generate a <strong>Scrum sprint plan for rewriting the application</strong>.</p> <p>The results were… interesting.</p> <h1> Watch Video </h1> <h2> <iframe src="https://www.youtube.com/embed/ErwuATHHXw4"> </iframe> </h2> <h1> The Setup </h1> <p>The experiment was intention
Discussion
Sign in to join the discussion
No comments yet — be the first to share your thoughts!