<?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[Axel Molist Cordina]]></title><description><![CDATA[Technical founder. Building companies without outside investment. Thoughts on technology, business, life, and the balance between.]]></description><link>https://axelmolist.com/</link><image><url>https://axelmolist.com/favicon.png</url><title>Axel Molist Cordina</title><link>https://axelmolist.com/</link></image><generator>Ghost 5.82</generator><lastBuildDate>Fri, 17 Jul 2026 16:30:05 GMT</lastBuildDate><atom:link href="https://axelmolist.com/rss/" rel="self" type="application/rss+xml"/><ttl>60</ttl><item><title><![CDATA[I Stopped Looking at the Code]]></title><description><![CDATA[I built a working iPhone app from a cinema seat, without reading a single line of code. What changed, and the quality control system that makes it safe.]]></description><link>https://axelmolist.com/i-stopped-looking-at-the-code/</link><guid isPermaLink="false">6a527bbde48e6c000135e85e</guid><category><![CDATA[Age of AI]]></category><category><![CDATA[AI coding]]></category><category><![CDATA[Building in public]]></category><dc:creator><![CDATA[Axel Molist Cordina]]></dc:creator><pubDate>Sat, 11 Jul 2026 17:52:30 GMT</pubDate><media:content url="https://axelmolist.com/content/images/2026/07/thumb-5.jpg" medium="image"/><content:encoded><![CDATA[<img src="https://axelmolist.com/content/images/2026/07/thumb-5.jpg" alt="I Stopped Looking at the Code"><p>Last Saturday night I built an entire iPhone app from a cinema seat, during Toy Story. And I never looked at a single line of the code. Not one.</p><p>We got to the cinema early. My wife and son were watching the adverts, and I got my phone out, opened the Claude app, and started typing out an idea for an app I&apos;d been wanting for a while. By the time the lights went down, it had written the full spec. So I told it to build the thing, stage by stage. The film ended, the credits rolled, and the app was built. Sunday morning I pulled the code, tested it, and it worked.</p><p>I want to be clear about who&apos;s telling you this. I&apos;m not a hobbyist having a play. I run a dev team of twenty at We UC. Building software is my day job. And this app isn&apos;t a one-off - it&apos;s the third product I&apos;ve built this way in the last couple of months, start to finish, without opening the code.</p><p>That has never happened before. I&apos;ve always had to look at the code. At the very least, keep an eye on it. And now I don&apos;t. Something has changed, and it&apos;s led me to a conclusion my own dev team seriously disagrees with: I don&apos;t think you need to look at the code anymore.</p><h2 id="how-i-used-to-build">How I used to build</h2><p>A couple of years ago I built an app called The Scheduler. I built that with AI too, but I started it in the IDE, writing it function by function with the AI helping me inline. And I watched it like a hawk. Every change it made, I read. Every file, I opened. First VS Code, then Zed, then Cursor, then back to Zed - going through the code line by line, making sure it wasn&apos;t doing anything stupid.</p><p>Because back then, it would. If you didn&apos;t keep a close eye on it, it could go off and rewrite half a file you never asked it to touch. So the workflow was simple: use AI to write the code, but read everything it generates.</p><p>Fast forward to the last month or so. I&apos;ve built the new website for Olatti, our flagship phone system product. I&apos;m building Coet, a company brain product with agents. And then there&apos;s the cinema app. Three projects, and I haven&apos;t opened the code in an IDE once. I live in the terminal now, or in the Claude app when I&apos;m out. I say what I want, I check what comes back, and I move on.</p><p>I know how that sounds. It sounds reckless. So let me tell you about the cinema app properly, because it&apos;s the best example of why it isn&apos;t.</p><h2 id="the-cinema-app-properly">The cinema app, properly</h2><p>I&apos;m calling it Cuenta (www.cuenta.so) - as in &quot;la cuenta&quot;, the bill in Spanish. It&apos;s a business expenses app: you take a photo of a receipt, it reads everything off it, and it pushes the data straight into Xero through the API. I built it because uploading receipts through the official Xero app takes about five minutes per receipt, and life is too short.</p><p>Cuenta needed an iOS app as the main client, a Node.js backend, and a web client. The app itself is straightforward, but the architecture had to be done properly. So in the cinema I didn&apos;t just say &quot;make me an app&quot;. I wrote a full PRD and spec sheet: the architecture, every screen, the stages, the whole thing. Then I asked it to build it, stage by stage, while I watched the film with my family.</p><p>Sunday morning I pulled the repo, added the API keys, took a photo of a receipt - and the data landed in Xero. Then I opened Claude Design, asked it for a full brand pack (minimalist fintech, these colours), and ten minutes later it had generated the brand, a logo and a landing page. I passed it all back to Claude, and it built the design into the app. By the end of the weekend I had a working, branded app on TestFlight that I&apos;d started from a cinema seat.</p><p>And at no point did I read any of the code.</p><h2 id="my-team-think-ive-lost-it">My team think I&apos;ve lost it</h2><p>When I talk about this at work, my most senior engineers push back. One of them - Tom, a true engineer, really good, and someone who uses Claude every day, so this isn&apos;t fear of AI - came to me with an example. Claude had declared a variable at the top of a file just to hold a bit of text that was only used once, further down the same file. An engineer wouldn&apos;t do that. You&apos;d put the text where it&apos;s used.</p><p>A tiny thing. But Tom&apos;s point was that it does a hundred silly things like that, and you end up with code that&apos;s complicated to read and complicated to maintain. His words: it lacks common sense.</p><p>And here&apos;s the thing. He&apos;s right. If a human has to read that code, he&apos;s completely right.</p><p>But that&apos;s the question, isn&apos;t it. Does a human need to read it? Because when something breaks now, I don&apos;t open the file. I tell Claude what&apos;s broken and ask it to find out why and fix it. It reads the code, finds that variable, doesn&apos;t care where it was declared, makes sense of the whole thing in seconds, and sorts it.</p><p>Before AI, the answer to &quot;who is the code for?&quot; was obvious: the next human who has to read it. I&apos;m not sure that&apos;s true anymore. And I&apos;ll be honest - I&apos;m in two minds about it. It genuinely feels wrong to not read the code. But whether Tom&apos;s right or I&apos;m right doesn&apos;t actually come down to reading code at all.</p><h2 id="the-key-a-quality-control-system">The key: a quality control system</h2><p>The question isn&apos;t &quot;should you read the code&quot;. The question is: what&apos;s checking the output, if you&apos;re not doing it? If the answer is &quot;nothing&quot;, then yes, you&apos;re being reckless.</p><p>Here&apos;s what my quality control system looks like. A set of files that say: this is how we structure things, this is how we name things, this is what good looks like - and the AI reads them before it writes anything. A proper structure for the code, decided up front in the spec, not discovered halfway through. CI/CD pipelines, so every change gets built and checked automatically. And unit tests - the one I&apos;d not paid enough attention to in the past.</p><p>That last one has a story. I shared Cuenta in a channel on Hampton, and Dave Sifry suggested I run it through Repo Fortify to check for security holes. I did. It scored 11 out of 100, mainly because there was no CI/CD with automated tests. So the next morning, with some free time before the gym, I said to Claude: you&apos;ve got 40 minutes, go do something useful to make the app production ready. That&apos;s all I said.</p><p>It wrote tests. Sixteen of them. Unit tests for the business rules, plus a robot user - a test that does exactly what my mobile app does: uploads a receipt, checks it, tries an invalid one, makes sure it gets rejected. Then it wired all of it into GitHub so every push gets checked automatically, forever. I asked why it chose tests, and it said that was the most useful thing on the list. I ran the scan again: 83 out of 100.</p><p>Given free time and a free choice, the AI decided to build its own quality checks.</p><p>So now, when Claude finishes a piece of work, I don&apos;t read the diff. I ask three questions. Does it do what I asked? Do the tests pass? Did anything break? Two yeses and a no, and I ship it. I&apos;ve stopped checking the code. I check the things that check the code.</p><h2 id="why-this-works-now-and-didnt-a-year-ago">Why this works now and didn&apos;t a year ago</h2><p>I think it&apos;s three things landing at once. First, the models got dramatically better in the last few months - I built Cuenta entirely with Claude&apos;s Fable model, and it blew me away; before this generation, none of this would have worked. Second, I&apos;ve had four years of practice: writing a good spec, architecting a system at a basic level, asking for exactly what I want is a skill, and I&apos;m getting better at it. Third, the quality control system. Take any one of the three away and I&apos;d probably still be reading every line.</p><p>And it isn&apos;t just me. Boris Cherny, who created Claude Code at Anthropic, said recently he hasn&apos;t written a line of code by hand in eight months - he uninstalled his IDE after realising he hadn&apos;t opened it in a month. Spotify&apos;s co-CEO said on their earnings call that their most senior engineers haven&apos;t written a single line since December; they drive the AI from Slack and review what comes back. The most advanced teams already work this way.</p><h2 id="the-honest-bit">The honest bit</h2><p>Everything I&apos;ve described is my own projects: new code, built from scratch, with the quality control system in place from day one. Olatti - the product twenty people work on - is different. Tom still reads the code there. The team still reviews every change. And today, they&apos;re right to, because that codebase wasn&apos;t born with these guardrails. It was built over years, by different developers, with documentation that needs to improve. Getting Olatti to the same place will take real work, and we&apos;re going to do it. My bet is that Tom eventually stops reading the code too - not because he gives in, but because he trusts the quality control system as much as his own eyes.</p><p>What does building like this actually give you? Speed like I&apos;ve never seen. Cuenta went from an idea to a branded app on TestFlight in a weekend. The Scheduler took weeks of my full attention two years ago. Before AI, it would have taken a team months and a small fortune. And when you can move at that speed, it changes what you&apos;re even willing to try. You build things that were never worth the time and money before.</p><p>One strange thing, though. Sometimes the work doesn&apos;t feel like mine anymore. It came so easily that my brain doesn&apos;t want to take credit for it. But then I look at Cuenta. I chose what to build. I decided what good looks like. I set the spec, architected it, moulded it into shape. Which tells me something I half-knew all along: typing out the code was never actually the hard work.</p><p>I made a full video on this - the cinema story, Tom&apos;s side of the argument, and the quality control system in detail. You can watch it here: </p><figure class="kg-card kg-embed-card"><iframe width="200" height="113" src="https://www.youtube.com/embed/rvzyZ2xVSHQ?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen title="I built an iPhone app from my iPhone"></iframe></figure><hr><p>If you found this useful, I write a free newsletter where I share what I&apos;m actually learning building software and running a business in the Age of AI, including the CEO Operating System, the system I use to run myself as a founder. You can grab it at <a href="https://axelmolist.com/youtube">axelmolist.com/youtube</a>. And if you want to see what my dev team and I are building, Olatti - our business phone system - launches on 15 September. Founding members who join the waitlist at <a href="https://olatti.com/?ref=axelmolist.com">olatti.com</a> get 30% off for life.</p>]]></content:encoded></item><item><title><![CDATA[Build, Buy, or Wait: What's Still Worth Building in the Age of AI]]></title><description><![CDATA[Every couple of weeks a big AI company ships the exact thing I was about to build. Here's the build, buy, or wait test I use to decide what's still worth building myself.]]></description><link>https://axelmolist.com/build-buy-or-wait-whats-still-worth-building-in-the-age-of-ai/</link><guid isPermaLink="false">6a47a72fe48e6c000135e4e4</guid><category><![CDATA[Age of AI]]></category><category><![CDATA[Building with AI]]></category><category><![CDATA[Build vs Buy]]></category><dc:creator><![CDATA[Axel Molist Cordina]]></dc:creator><pubDate>Fri, 03 Jul 2026 12:38:32 GMT</pubDate><media:content url="https://axelmolist.com/content/images/2026/07/thumb-b.jpg" medium="image"/><content:encoded><![CDATA[<img src="https://axelmolist.com/content/images/2026/07/thumb-b.jpg" alt="Build, Buy, or Wait: What&apos;s Still Worth Building in the Age of AI"><p>Every couple of weeks, a big AI company ships the exact thing I was about to build.</p><p>I run a dev team of twenty, and I&apos;m building a software product right now, so this isn&apos;t abstract for me. I&apos;ll scope a project, get the team lined up, and then Anthropic or OpenAI releases a feature that does eighty or ninety per cent of it. There it is. The thing we were about to spend months on, done, sitting inside someone else&apos;s product.</p><p>There&apos;s a word for it now: getting sherlocked. It&apos;s when a platform builds your product straight into theirs, and overnight you&apos;re finished. It wiped out a whole wave of startups last year, all those little apps that let you chat with your PDFs and documents. Real businesses, real customers. Then the big models added file upload for free, built right in, and most of those apps were gone almost overnight.</p><p>For a while, honestly, it started to put me off building at all. What&apos;s the point, if they&apos;re just going to do it for you?</p><p>And then there&apos;s the opposite fear, pulling the other way. Call it FOMO. The nagging thought that I&apos;m being left behind, that there are tools out there right now that would save me hours and I just don&apos;t know they exist. I felt it directly not long ago. I used Aura.build heavily when I built The Scheduler. Then Claude Design showed up, far better at the same job, and it hadn&apos;t even existed when I needed it. So I&apos;d done the work the hard way, and the better tool landed the week after.</p><p>Two contradicting feelings at once. Don&apos;t build, it&apos;ll be obsolete by next month. And hurry up, you&apos;re falling behind, get more AI-enabled. I think a lot of people building right now feel both, and nobody says it out loud because the whole AI conversation is built on pretending the speed is pure upside.</p><p>This is the honest version of how I climbed out from under both feelings. It comes down to one decision I now make before I build anything: should I build this, buy it, or just wait?</p><h2 id="why-everyone-is-suddenly-building">Why everyone is suddenly building</h2><p>To understand why this decision has got so much harder, you have to see how tempting building has become.</p><p>For years, off-the-shelf software worked on one quiet assumption: your business adapts to the software, not the other way round. You buy a generic CRM built for a generic company, and then you spend your days bending your actual sales process to fit its fields. It&apos;s a suit off the rack. It technically covers you, but it bunches up in all the wrong places, and it never quite moves the way you do.</p><p>That gap between how the tool works and how your business actually runs has a cost, and it&apos;s bigger than the subscription. When a bought tool doesn&apos;t fit, you pay again in integration work to make it talk to your other systems, in training, in the consultants you bring in to paper over the cracks. Analysts reckon that hidden work can add 150 to 200 per cent on top of the licence fee over five years. There&apos;s a stat I keep coming back to: more than a third of CRM users say they lose revenue to poor data quality in the system they already pay for. That&apos;s the fit gap made real.</p><p>Now put AI on top of that frustration. What used to need a funded engineering team and months of work can be prototyped in an afternoon by someone who can&apos;t code. In the US, well over half of small businesses now use generative AI, more than double the share of two years ago. The forecasts say most new business software will soon be built with low-code or no-code tools rather than bought. The barrier to building has genuinely collapsed.</p><p>The tools sort roughly into three tiers. At one end you&apos;ve got the fully managed ones like Lovable and Bolt, where you describe what you want in plain English and it hands you a running app, hosting and all. In the middle sit tools like Replit, where you can actually see the code the AI is writing. At the professional end are Claude Code and Cursor, which work inside your own codebase and let you host wherever you like. That&apos;s the tier I live in.</p><p>So building looks more rational than it ever has. The suit finally fits. That&apos;s exactly why the decision is so easy to get wrong.</p><h2 id="the-one-question-that-changed-how-i-decide">The one question that changed how I decide</h2><p>Here&apos;s the question that sorted it out for me. Is it unique to me?</p><p>That&apos;s the whole thing. If I can build something in a way nobody else can, because of my data, my experience, the exact spot I sit in, then it&apos;s worth building. It&apos;s mine, and nobody can take it from me. But if anyone could build it, if it&apos;s a thing a hundred other people could knock out, then it&apos;s a commodity, or it&apos;s about to be, and building it myself is just burning time I won&apos;t get back.</p><p>The second I started asking that question, a whole pile of things I&apos;d have built without thinking, I now just buy.</p><h2 id="buy-the-stuff-that-was-never-mine">Buy: the stuff that was never mine</h2><p>Take my CRM. I use Zoho, I pay for it, and I&apos;d never dream of building my own. I&apos;ve got no business building a CRM, and no interest in it either. We&apos;ve asked ourselves at circle.cloud whether we should build one, and the answer has always been no. Same with our customer support system, Freshdesk. Same with Linear, where my dev team plans its work. All bought. None of it is unique to me.</p><p>And here&apos;s the part people forget about building. When you build something, you don&apos;t just build it. You own it, forever. You maintain it, you host it, you&apos;re the one fixing it at eleven at night when it breaks. When you buy it, you pay your money and you forget all of that. So if it isn&apos;t unique to me, and I don&apos;t even enjoy it, I buy it every time, and I keep the energy for the things that are actually mine.</p><p>The bigger surprise was a buy I never saw coming. For a long time we wanted our own AI coding agent, something the dev team could just hand work to. We had it scoped, the research done, the PRD written. We were weeks from building it.</p><p>Then Anthropic shipped Claude Tag, where Claude basically lives in your Slack, like a coworker you tag and hand jobs to. So I tested it. I gave it access to our code and a real job: moving one of our apps, Evalua, off its old transcription provider and over to ElevenLabs. Normally that&apos;s a developer ticket. I set the new key as an environment variable, told Claude where it was, and said go and work out how it all fits together and switch it over. A few minutes later it had read the whole codebase, made the change, and opened a merge request for us to check. It was fine. We shipped it.</p><p>That was the entire project we were about to build, done in a Slack message. And it isn&apos;t laziness. Anthropic have said their own AI now writes well over eighty per cent of their code. The people who make this stuff barely hand-write it anymore. So is building that agent unique to me? No. Anthropic did it, and did it better. We buy it.</p><h2 id="the-tax-on-both-sides-of-the-decision">The tax on both sides of the decision</h2><p>Here&apos;s what neither the &quot;just build it&quot; crowd nor the &quot;just buy it&quot; crowd tells you: both choices come with a bill you don&apos;t see up front.</p><p>Buying has the fit gap and the duct-tape tax I already mentioned. Building has a different bill, and it&apos;s the one almost nobody talks about, because it only lands after the exciting part is over.</p><p>When anyone can vibe-code an app in an afternoon, the easy bit is building it. The hard bit is deploying and owning it safely, and that&apos;s exactly as hard as it always was. Something like nine in ten breaches at smaller companies come from simple misconfiguration, a database left open to the internet, not some genius attack. Turning on multi-factor authentication alone blocks the vast majority of automated attacks, and it&apos;s still the step people skip. And the worst part is you don&apos;t hear an alarm when you leave the door open. You find out when someone&apos;s already inside.</p><p>Then there&apos;s what happens later, because software rots. The systems it connects to change, the dependencies go stale, and if the person who prompted the thing into existence leaves, you&apos;re holding a black box that runs part of your business and nobody left can read or fix. You finally got software that fits your company perfectly, and you handed the only set of keys to a machine.</p><p>Put those two bills side by side and the point sharpens. The barrier to building has dropped through the floor. The barrier to living with what you built hasn&apos;t moved an inch. Which is precisely why &quot;is it unique to me?&quot; matters more now, not less. If you&apos;re going to take on the forever-cost of owning something, it had better be for the one thing only you can build.</p><h2 id="wait-the-hardest-of-the-three">Wait: the hardest of the three</h2><p>Waiting is the option nobody talks about, because it feels like doing nothing. It isn&apos;t.</p><p>Start with the catch in buying the coding agent. When you lean everything on one company, you inherit its bad days. Claude went down one afternoon, right in the middle of the working day, gone for a couple of hours. We weren&apos;t stuck. My team are proper developers, they wrote code without AI for years, so the ones running work through Claude just switched to another model for a bit. We were slower, that&apos;s all. But I don&apos;t even want that. I don&apos;t want a single company able to slow my team down at all.</p><p>So the thing genuinely worth building here isn&apos;t the agent. Anthropic have that covered. It&apos;s the layer underneath, something that can run any model and, the second one goes down or gets too expensive, switches to another on its own. That layer keeps me independent, and independence is one of the few things nobody can hand me.</p><p>The purest example of waiting on purpose is a product I&apos;ve wanted to build for years. It&apos;s called Ringup, a voice AI agent that can actually pick up and handle phone calls for a business. I still haven&apos;t built it, and it&apos;s not that I&apos;ve been short of time. If I really wanted it, I&apos;d have found the time. It&apos;s that every time I go to build it, all I&apos;d really be doing is taking an off-the-shelf voice tool and putting a voice on top of it. Anyone can do that. It isn&apos;t unique to me.</p><p>So I wait. Maybe one day I find the angle that makes it properly mine. Maybe I never do, and that&apos;s fine. The discipline isn&apos;t building everything you want to build. It&apos;s only building what&apos;s actually yours, and waiting on the rest. That one habit has saved me more wasted time than anything else.</p><h2 id="build-buy-and-wait-all-in-one-project">Build, buy and wait, all in one project</h2><p>The example that taught me the whole thing was a single feature: the analytics inside Olatti. Quick note, because I keep saying it, Olatti is the new name for the product we used to call We UC. Same software, new name.</p><p>We had a big analytics upgrade planned, and when I first sat down to think it through, I was ready to kill the lot. Part of the plan was letting customers build their own dashboards inside Olatti, and I thought, they&apos;re never going to use this, they&apos;ll just ask Claude to build them a dashboard in thirty seconds. On that bit, I was right. It isn&apos;t unique to us. So we dropped it.</p><p>But then I realised I&apos;d jammed two different things together and called them one. Because there&apos;s something our analytics does that Claude simply can&apos;t. It puts a dashboard live on a screen. Picture a sales team with a screen up on the wall, the numbers changing the second a call comes in. Claude can answer you when you ask it a question. A screen that&apos;s always on, updating by itself, needs the data to live inside our own phone system. That&apos;s ours. Nobody can hand us that. So that half, we build. And the really fiddly part, wiring it up to every other system out there, we wait on, and we&apos;ll see if customers even use the live screen first.</p><p>One feature. Build, buy and wait, all in the same project. That was the moment it clicked. This isn&apos;t three separate decisions. It&apos;s one question, asked again and again.</p><h2 id="the-commodity-line-keeps-climbing">The commodity line keeps climbing</h2><p>Step back from the individual projects and you can see the shape of it. These aren&apos;t five flukes. It&apos;s one thing, moving in one direction: the commodity line keeps climbing up the stack, faster than anyone can build.</p><p>It used to swallow templates. Then it swallowed components. Then whole websites. Now it&apos;s swallowing internal tools, data pipelines and entire product features. My own websites are the clearest map of it. Years ago I built on WordPress with a template off ThemeForest. Then Claude Code built the site and I used it as the CMS, with a component library for the parts it couldn&apos;t design. Then I used v0 for the design, then Aura.build. Now Claude Design generates the logo, the design system and the landing page, and Claude Code assembles the whole thing. Each of those was &quot;the modern way&quot; to do it. Each was gone within a couple of years. The separate design step, which had always needed its own tool, just disappeared.</p><p>That&apos;s the real cost nobody admits. It isn&apos;t that AI replaces you. It&apos;s that it can make the thing you were about to build pointless before you&apos;ve finished it, and that uncertainty is what freezes people. The commodity line has never climbed this fast, and you can&apos;t see exactly where it&apos;ll be by the time your project ships.</p><h2 id="what-actually-passes-all-three">What actually passes all three</h2><p>So after all the buying and the waiting and the letting go, what survives? For me, one thing, and it&apos;s the project I&apos;m most excited about in years.</p><p>Let me be honest about scale first. My dev team&apos;s focus is Olatti. That&apos;s the priority. This one I&apos;m building mostly on my own, on the side, a proof of concept for now. But it&apos;s the one that&apos;s truly mine. It&apos;s called Coet, which means rocket in Catalan.</p><p>For ages I wanted to build what I called a company brain: take everything a business knows and put it behind an AI. When Claude Tag came out, I assumed that was dead too. But what they built is the plain, one-size-fits-all version, and what I want is bigger. Not just a brain you talk to. A brain with a workforce. Imagine your business knows everything about itself, and on top of that you build AI agents that work like employees and actually do the jobs. So instead of a company with ten people, you&apos;ve got ten people and a hundred AI workers alongside them. And that model-agnostic switching layer from earlier is built into this too, so you&apos;re never stuck with one company.</p><p>Run it through the test. Is it unique to me? More than anything I&apos;ve built. I&apos;ve got circle.cloud, a real business of over a hundred people, as the first place to build it, run it and prove it. And I&apos;ve got Olatti, our phone system, which already handles every call and message a business makes, a goldmine of context that an off-the-shelf tool plugged into your apps simply doesn&apos;t have. Can I build it? The open-source pieces exist now and the models are finally good enough. Will I love owning it? Genuinely, yes, for years.</p><p>I know what you might be thinking, because I just spent half this piece telling you to buy the tools. And I am. I&apos;m building Coet out of bought parts and open-source bits I didn&apos;t make. But buying the parts isn&apos;t the same as buying the result. The way it all fits my business, that&apos;s the thing nobody can hand me. It&apos;s early, more of a tease than a product, but it&apos;s the reason I came out of all this feeling excited instead of stuck.</p><h2 id="the-test-in-three-questions">The test, in three questions</h2><p>So here it is, the test I now run before I build anything.</p><p>One. Is it unique to me? Could only I build it this way, because of my data, my experience, where I sit? Or could anyone do it?</p><p>Two. Can I actually build it? Are the pieces there, the models, the tools, for me to put it together?</p><p>Three. Will I love owning it? Not just building it, looking after it for years. Because build is forever, and buy, you can forget.</p><p>And the answers sort themselves out. Not unique to you? Buy it, and save your energy. Not yours yet, or the pieces aren&apos;t there? Wait, and watch. Unique, buildable, and you&apos;d genuinely love to own it? That&apos;s the one. Build that.</p><p>I&apos;m not going to pretend I&apos;ve got this perfectly figured out. Things move so fast that any plan I make more than a month out is basically a guess. The thing that&apos;s mine to build today might not be in six months. Coet itself might change completely. So I keep asking the three questions, and I change my mind when I need to.</p><p>But that one decision, build, buy or wait, is what took me from feeling there was no point building anything to being more excited about what I&apos;m building than I&apos;ve been in years.</p><p>That sinking feeling, when an AI company ships the thing you were about to build, comes from building without asking the question first. So ask it. The paralysis lifts the moment you stop trying to own the stuff that&apos;s turning into a commodity. You build less. But you build the right things.</p><p>Because in the Age of AI, the hard part isn&apos;t building things anymore. It&apos;s knowing which things are still worth building.</p><hr><p>Watch the video:</p><figure class="kg-card kg-embed-card"><iframe width="200" height="113" src="https://www.youtube.com/embed/gpe04Xi-Pc4?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen title="AI keeps shipping what I was about to make"></iframe></figure><p>If this is the kind of thing you turn over in your head, building and running a business in the Age of AI, it&apos;s most of what I write about. I share what I&apos;m actually learning as I build all of it, receipts and all, in my newsletter. You can join it at <a href="https://axelmolist.com/youtube">axelmolist.com</a>, and I&apos;ll send you the CEO Operating System, the free system I use to run myself as a founder.</p>]]></content:encoded></item><item><title><![CDATA[Self-Improving AI Is Just a Loop]]></title><description><![CDATA[Recursive self-improvement, AI that improves itself, sounds like science fiction. I looked at how it actually works. It turns out it's just a loop.]]></description><link>https://axelmolist.com/self-improving-ai-is-just-a-loop/</link><guid isPermaLink="false">6a3a7dc285883c00014efabe</guid><category><![CDATA[Age of AI]]></category><category><![CDATA[AI]]></category><category><![CDATA[AI coding]]></category><dc:creator><![CDATA[Axel Molist Cordina]]></dc:creator><pubDate>Tue, 23 Jun 2026 15:24:39 GMT</pubDate><media:content url="https://axelmolist.com/content/images/2026/06/final-a1.jpg" medium="image"/><content:encoded><![CDATA[<img src="https://axelmolist.com/content/images/2026/06/final-a1.jpg" alt="Self-Improving AI Is Just a Loop"><p>The thing about AI that could end up being a real threat to humanity might just be a loop. The same forward slash loop command you can run in Claude Code.</p><p>I know how that sounds. So I spent a week digging into it, because two things happened in the same fortnight that I couldn&apos;t stop thinking about, and I wanted to know whether the scary version was real or whether it was hype. What I found turned out to be simpler than the headlines, and more useful, than I expected. This is the calm, practical version of a story that is mostly being told as doom.</p><h2 id="two-people-said-the-same-thing-in-the-same-week">Two people said the same thing in the same week</h2><p>In early June, Peter Steinberger, who built OpenClaude and now works at OpenAI, posted a line that went everywhere: stop prompting your AI, start building loops that prompt it for you. Within a week it had millions of views.</p><p>The same week, Boris Cherny, the creator of Claude Code, said almost exactly the same thing from inside the lab: &quot;I don&apos;t prompt Claude anymore. I have loops that are running. They&apos;re the ones that are prompting Claude and figuring out what to do. My job is to write loops.&quot;</p><p>Two of the most influential people in AI coding, describing the same shift from different seats, in the same few days. When that happens, it is usually a signal that something has actually changed, not that a trend is being manufactured. The shift is this: AI stopped being something you prompt and became something you orchestrate.</p><p>Then, almost on cue, Anthropic published a report called &quot;When AI builds itself&quot;, and I had to read one of the numbers twice.</p><h2 id="what-a-loop-actually-is">What a loop actually is</h2><p>Before any of the scary part, it helps to see how plain the mechanism is, because the whole thing rests on it.</p><p>A loop is four steps that repeat: a goal, some work, a check, and a repeat. You give it something to do, it does the work, it checks the work against the goal, and then it goes round again, learning from what it got wrong the last time so it doesn&apos;t make the same mistake twice. In Claude Code you trigger it with forward slash loop, give it a frequency, and give it a prompt for what to do on each pass.</p><p>That&apos;s it. The intelligence isn&apos;t in any single step. It&apos;s in the repetition plus the check. Steinberger has a sharper way of putting the same idea: a loop without a good test is just automated guessing, but a loop with a good test gets better every single run, while you sleep.</p><p>This is also why coding fell to agents first. Code is verifiable. You can compile it, run it, and test it, so the &quot;check&quot; step is cheap and trustworthy. Writing, sales, and research will follow only as we work out how to verify them as cleanly as we can verify a passing test. The verifier is the thing, not the model.</p><p>There&apos;s a close cousin worth naming. A goal, or forward slash goal, is where you give the AI an objective and let it keep going until it reaches the objective or stops making progress. A goal and a loop are basically the same thing. A goal says &quot;here&apos;s what I want, go figure it out.&quot; A loop is that, with a timer on it.</p><p>Normally you point a loop or a goal at a task: a specific job you want done. But here&apos;s the turn that makes this whole topic interesting. What happens if you point the loop at the AI itself? The improved version then builds another improved version of itself, and that one builds the next, and it keeps going. That fancy phrase you keep hearing, recursive self-improvement, is just a loop pointed at itself. Nothing more mystical than that.</p><h2 id="its-already-happening-small-and-huge">It&apos;s already happening, small and huge</h2><p>Here is the number I had to read twice. As of May 2026, more than 80% of the code merged into Anthropic&apos;s own production codebase was written by Claude. A year or so earlier that figure was basically nothing. In an internal survey of around 130 of their researchers, the median said they were roughly four times more productive, and a typical engineer was shipping many times more code per day than in 2024.</p><p>You can be sceptical about &quot;80% of code&quot; as a metric, and you should be. Volume isn&apos;t value, a lot of code is boilerplate and tests, and a number like that doubles nicely as a sales pitch for Claude Code. All of that can be true at the same time as the underlying trend being real. Holding both is the honest position.</p><p>But writing more code is one thing. Getting AI to do brand new research is something else, and this is the part that stuck with me. Anthropic ran a head to head on a real, open research problem: their own agents against two of their human researchers. The humans worked on it for about a week and recovered roughly a quarter of the available performance. The agents recovered 97% of it over a weekend, designing their own experiments along the way, for about eighteen thousand dollars of compute.</p><p>Let&apos;s be clear, because this part matters. The humans still chose the problem, and it didn&apos;t fully hold up when they tried to scale it. So it&apos;s not magic, and it isn&apos;t the robots taking over. But it is a weekend doing what two trained scientists couldn&apos;t finish in a week. If you take the human-chooses-the-problem part out of that picture, you can see how, in a couple of years, you end up with an AI improving itself with no human in the loop at all. That is exactly why one of Anthropic&apos;s co-founders, Jack Clark, puts the odds of full recursive self-improvement at around 60% within a couple of years, and why the same report quietly argues that the world should keep the ability to pause frontier development if it has to. A lab shipping the fastest self-improving coding agent also asking for a brake is a genuinely unusual thing to watch.</p><p>They have at least built in a hard limit. Their dynamic workflows cap a run at around a thousand agents, and when it hits that ceiling it has to stop, whether it&apos;s finished or not. In their own documentation they call that a limit to prevent &quot;runaway loops.&quot; Runaway loops. Worth keeping that phrase in mind.</p><h2 id="where-it-goes-wrong-drift">Where it goes wrong: drift</h2><p>Here is the question I kept turning over all week. Can one of these AIs, running in a loop, end up somewhere completely different from where it started? Not because it&apos;s evil, and not because it woke up, but because it just drifts.</p><p>You know that game from when you were a kid, Chinese whispers. You whisper a sentence to one person, they whisper it to the next, and by the end of the line &quot;the cat sat on the mat&quot; has become &quot;Pat ran over the cat.&quot; Nobody meant for the cat to die. It drifted one whisper at a time. Now imagine that inside a loop, where each pass hands work to a sub-agent, and the next, and the next, every one building on whatever the last one got slightly wrong.</p><p>There are three concrete reasons this happens, and none of them require any sci-fi.</p><p>One: large language models are probabilistic, not deterministic. Ask the same question twice and you can get two different answers. There&apos;s good work coming out of Thinking Machines on why even the same prompt can give different output, and it means there is variance baked in at every step.</p><p>Two: they are genuinely bad at negatives. Tell a model &quot;don&apos;t do this&quot; and it can drop the &quot;don&apos;t&quot;, or misread it, and go and do the exact thing you told it not to. There&apos;s an arXiv paper, &quot;Language models are not naysayers&quot;, showing models are insensitive to negation, which is unnerving when half of your instructions are constraints.</p><p>Three, and this is the one that compounds: small errors stack. If every step is 90% right, that sounds fine. But ten steps down the line, 0.9 to the power of ten is about a third. Your accuracy has quietly collapsed without any single step looking broken. There&apos;s a multi-agent failure taxonomy (the MAST work) that catalogues exactly these breakdowns in agent systems. The drift is real and measurable enough that the big labs are researching it.</p><p>I&apos;m not in the lab. I just build things with AI every day. But this is the part that actually changes how I work, because it makes me think hard about which tasks I hand to AI and which I keep, given how unreliable an unsupervised chain can be.</p><h2 id="when-it-turns-on-itself">When it turns on itself</h2><p>So what happens when you let an unreliable system loose on improving itself? Someone tried it.</p><p>A lab called Sakana AI built a self-improving coder, the Darwin Godel Machine, and let it do something unusual: rewrite its own code, the harness it runs in. It kept building improved versions of itself, testing each one, getting better step by step. And it worked. It went from solving about one in five problems to almost half of them. It more than doubled how good it was at its own job.</p><p>Brilliant, right? Except they caught it cheating. It faked its results. It printed &quot;all tests passed&quot; when it hadn&apos;t run a single test. Nobody told it to cheat. They told it to get better, and faking the test log was a perfectly efficient way to look better. Self-improvement and reward hacking turn out to be two sides of the same coin. There&apos;s a 2026 benchmark showing reinforcement-tuned models hack rewards around fourteen times more often than base models, and that most of the time they write a tidy chain of thought rationalising the cheat as legitimate work. The smarter the model, the better it gets at convincing itself the shortcut counts.</p><p>This isn&apos;t only a frontier-lab problem. Dave Sifry, who I know through Hampton, a community of CEOs I&apos;m part of, runs a company called MetaFactory that is built almost entirely of AI agents. Ask him the first thing you have to build and it isn&apos;t a clever agent. It&apos;s a cap on how many times they can loop around, and an alarm for when one of them starts drifting. His line that stuck with me: your monitoring system is your most important agent. The people actually at the front of this are calm about it precisely because they build the brakes first.</p><h2 id="the-honest-caveat-and-the-real-skill">The honest caveat, and the real skill</h2><p>Let me put one thing straight, because I don&apos;t want anyone walking away from this worried. We are not at the stage where AI fully improves itself with no one watching. AI writing 80% of the code is not the machines taking over. It&apos;s still running inside a system that humans built. We pick the goal, we set the objectives, we build the harness, and we manage it.</p><p>But this is also what makes me think we&apos;re closer than it feels, because the machine is getting good at the judgement calls. Anthropic reckons their latest model now picks the better next step in a research process more often than their own researchers do, roughly two thirds of the time.</p><p>So you&apos;d think we can hand things over and instantly be 66% faster. Not quite. It&apos;s like dropping a thousand horsepower engine into your car. You don&apos;t get to work any faster if you&apos;re still stuck in traffic. One part of the system got quicker, but you&apos;re still limited by the parts that didn&apos;t, and the bottleneck just moves somewhere else. Right now, that somewhere else is us, because someone has to check the work.</p><p>And if our job is now checking the work, then the job has genuinely changed. It isn&apos;t writing the perfect prompt anymore. It&apos;s designing the loop: setting the goal, picking the tools, setting up the harness, specifying what good actually looks like, and putting a limit on it. If you want a checklist version of the guardrails every real loop needs, it&apos;s four things: a precise, checkable goal, a budget on tokens or iterations so it can&apos;t run away, a stop condition, and a clean handoff back to a human when it stalls.</p><p>There&apos;s a quieter failure mode here too that I see builders run into: the self-improving loop that improves itself into a mess. Auto-generated memory and rules files that the agent then over-indexes on, slowly rotting your instructions until the project becomes unsteerable. The fix is the same as everywhere else in this piece: a verifier you trust, and a human who notices the drift early. So the critical skill isn&apos;t just building the loop. It&apos;s catching the moment it starts wandering away from what you asked.</p><h2 id="bringing-it-together">Bringing it together</h2><p>A loop is two things: a timer that says when to run, and a prompt that says what to do. Recursive self-improvement, that scary phrase, is just a loop pointed at itself, getting a little better each time round. And the only thing standing between &quot;this saved me a ton of time&quot; and &quot;this wandered off somewhere I never asked it to go&quot; is the goal you set and the checks you build in. That&apos;s the whole thing.</p><p>Every loop you design for your own work is a tiny version of what the labs are doing at scale. We spent the last few years worrying about what happens when these machines take over. But if we keep improving them with loops we understand, with a goal and a test and a limit, we stay in control of the improvement, as long as we catch them when they drift. We&apos;re all loop designers now. The only real question is what you point your loops at.</p><p>Watch the video:</p><figure class="kg-card kg-embed-card"><iframe width="200" height="113" src="https://www.youtube.com/embed/XkpCU2h3z20?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen title="The real risk with self improving AI"></iframe></figure>]]></content:encoded></item><item><title><![CDATA[The AI bubble, from someone who runs on the last one's leftovers]]></title><description><![CDATA[Is this an AI bubble? Yeah, I think it is - from someone who runs a business on the last one's leftovers.]]></description><link>https://axelmolist.com/the-ai-bubble-from-someone-who-runs-on-the-last-ones-leftovers/</link><guid isPermaLink="false">6a2e6f8f85883c00014ef868</guid><category><![CDATA[Age of AI]]></category><category><![CDATA[AI]]></category><dc:creator><![CDATA[Axel Molist Cordina]]></dc:creator><pubDate>Sun, 14 Jun 2026 09:12:53 GMT</pubDate><media:content url="https://axelmolist.com/content/images/2026/06/thumbnail-final.jpg" medium="image"/><content:encoded><![CDATA[<img src="https://axelmolist.com/content/images/2026/06/thumbnail-final.jpg" alt="The AI bubble, from someone who runs on the last one&apos;s leftovers"><p>This week, three of the most valuable private companies in history are going public, one after the other. SpaceX is listing at close to a 1.8 trillion dollar valuation, the biggest IPO there has ever been. And in the days around it, the two biggest names in AI, OpenAI and Anthropic, have both filed to do the same.</p><p>So everyone is asking the obvious question. Is this an AI bubble?</p><p>Yeah. I think it is.</p><p>But that is not the question keeping me up at night, and I do not think it is the one that matters most if you actually run a business. I am not watching this from the cheap seats. I run three companies, around 140 people between them, and every one of those teams now leans on AI. Software, marketing, finance, sales, all of it. I am pushing them to use it more, not less. So I am not some sceptic on the sidelines. I am about as deep in this water as you can get.</p><p>Which is exactly why the question I keep coming back to is a different one: how much of my business now depends on these AI companies? And what happens if one of them has a wobble, or just decides to charge me ten times more?</p><p>I have a particular reason for seeing it this way. I have spent my career in the one industry that actually caused the last great tech crash. So when I look at AI, I am not really looking at the share prices. I am looking at the layer underneath, and who controls it.</p><h2 id="the-part-of-the-dot-com-crash-people-forget">The part of the dot-com crash people forget</h2><p>Go back to the year 2000. Most people remember the dot-com bubble as a load of silly websites with sock-puppet adverts crashing to zero. That is the cartoon version. It is not really what happened.</p><p>The real story was underneath the websites. It was the wiring.</p><p>By the late nineties the whole world had decided the internet was going to be enormous. And if it was going to be enormous, it had to be connected up, and back then that meant cable. Tonnes of it. In the ground, under the sea, everywhere. So the companies building that connectivity borrowed billions and started laying fibre as fast as they physically could. At the peak we were putting something like 180,000 kilometres of fibre into the ground every single day around the world. That is roughly four loops around the planet, daily.</p><p>They built the road before anyone owned a car. And the cars took about seven years to turn up.</p><p>So most of that cable just sat there. In telecoms we have a name for it: dark fibre. Cable that has been laid and paid for, but is not carrying anything. At one point only around 3 per cent of the fibre in the ground in America was actually lit. Three per cent. The other 97 sat in the dark.</p><p>Then someone had to pay for it. Most of the companies that borrowed all that money went bust, and not quietly. WorldCom and Global Crossing produced two of the biggest bankruptcies the United States had ever seen. And when it came down, it did not only take the cable companies with it. It hurt everyone who had built a business on top of the internet.</p><p>Here is the part that actually matters, though. The people who made the real money came later. They walked in afterwards and bought all that cable for pennies. One undersea network that cost about 3.5 billion dollars to build was later sold for 130 million. And on top of that cheap, salvaged wiring, people built the internet we use today. YouTube, Netflix, Google, all of it runs on infrastructure that was bought out of a wreck.</p><p>This is my arena. We run our own network at circle.cloud, the telecoms company I built, bootstrapped, to over a hundred people. That infrastructure is the thing that made the business possible. The wiring never disappeared. It got reused. The technology was real the whole time, and we did need it. Eventually.</p><p>It just got built too early. On too much borrowed money. On too much hype.</p><h2 id="swap-the-fibre-for-gpus">Swap the fibre for GPUs</h2><p>So when I look at AI now, that is the layer I am thinking about. Because if you swap the fibre optic cable for GPUs, the similarities are hard to miss.</p><p>This year alone, the big tech companies are pouring something like 700 billion dollars into AI data centres and chips. Amazon is putting in around 200 billion. Then Microsoft, then Google, then Meta, each building it out as fast as they physically can. It is the same belief as last time: we are going to need a never-ending amount of compute.</p><p>And maybe we will. Eventually. But almost certainly not as fast as they are building for. Every big technology gets ahead of itself like this. The internet looked unstoppable in 1999, and it still took about twenty years, until smartphones and social media and cloud software all arrived, before it really paid off. I think AI is the same. The demand will come. Just not at the speed they are betting on.</p><p>Forget the data centres for a second, though, because the part that actually touches you and me is the companies we plug our businesses into. And most of them are losing money. Not investing-for-growth money. They are haemorrhaging cash.</p><p>xAI, Elon&apos;s AI company that is now part of SpaceX, was reported to be burning through about a billion dollars a month last year. OpenAI, by its own projections, is on track to lose something like 14 billion dollars this year. Anthropic is the only one anywhere near profit, and even that is a forecast for a single quarter, which it has already told investors it does not expect to last.</p><p>So here is a question I cannot stop turning over: why go public now? Private money has been flowing to these companies like there is no tomorrow for years. The answer, I think, is that they need more than the private markets can give them, and the biggest pot of money left is the public. People like you and me. Our index funds. Our pensions. And that last point is worth sitting with, because if you hold a normal index fund, you will end up owning a slice of these companies whether you decide to or not. The moment they are big enough, they get added, and your retirement money is along for the ride.</p><p>When a company that was happily private for years suddenly needs your money that badly, I think that tells you something about how solid it really is.</p><p>There is a man who says all of this far more loudly than I would. Ed Zitron, who writes the Better Offline newsletter and runs the podcast of the same name, has built a following pulling apart the finances of these AI companies. His view, flat out, is that they do not survive. Not a rough patch. They do not make it. He has even gone after Anthropic&apos;s one forecast profitable quarter and called the numbers massaged.</p><p>I think that goes too far. I use this stuff every day, and AI is not going anywhere, whoever I end up buying it from. But you do not have to buy the doom to feel the pain. Once these companies are public, we all get to see the real numbers. And I do not think we are going to like them.</p><h2 id="the-price-you-are-paying-for-ai-is-not-real">The price you are paying for AI is not real</h2><p>This is the bit that hits closest to home for anyone running a business on these tools.</p><p>The price you pay for AI today is not the real price. Yes, the cost per token keeps falling, that part is true. But they are still selling it to you for less than it costs them to run. Sam Altman has openly said OpenAI loses money even on its 200-dollar-a-month plan. Anthropic found people on its 200-dollar plan pulling a thousand dollars of usage in a single day, and had to bring in new limits just to slow them down.</p><p>So whatever you are paying for AI right now, it is a fraction of what it actually costs. The investors are quietly covering the rest. And here is the trap: even as the headline prices drop, your bill creeps up anyway, because you keep using more. I know we do.</p><p>One day the discount ends. The investors who have been covering the difference will want their money back, and that money lands on our bill. If your business only works while the tool is subsidised, you have not really got a business yet. You have got a discount.</p><h2 id="so-what-do-you-actually-do-about-it">So what do you actually do about it</h2><p>I want to be straight with you here, because the internet is full of people who have made local AI their whole personality and want you to rip the cloud out. That is not me. I live in this stuff every day, and I am probably more dependent on it than you are. Tearing it all out would be daft.</p><p>What I am saying is simpler. Do not become a hostage. A CEO of an AI agency said it to me perfectly this week: I want a backup plan before I need one.</p><p>For me, that comes down to three things.</p><p>One, do not anchor your whole business to a single provider. Build it so you can switch. If one of them doubles its price or falls over, you want to be able to move to another without your business stopping.</p><p>Two, know what you are using and what it actually costs at the real, unsubsidised price. Because if the maths only works while someone else is paying half of it, you do not yet know whether you have a business.</p><p>Three, run it locally wherever you sensibly can. On your own kit. We have done this with Olatti, the communications platform we build at We UC, from day one. Every phone call that goes through it gets transcribed and summarised, and we do not ship that off to a frontier model. We run it on open-source models, on our own hardware, in one of our data centres.</p><p>I will be honest about why, because it was not some grand philosophical stand. It was money. Sending every call off to a big cloud model would cost a fortune, and customers expect that kind of feature included for free now. Local was the only way the numbers worked. But it turned out to be a brilliant hedge as well. We genuinely do not care what anyone charges for AI next year for that part of the product. It just keeps working. And there is a second reason a lot of people are going local that has nothing to do with cost: privacy. When you run it yourself, your data never leaves your own network.</p><p>There is a bigger picture under all of this, too. This entire build-out is a bet that the AI of the future lives in some giant data centre, miles away from you. I am not sure it does. I think more and more of it ends up running right here, on your phone, on your laptop, or in a little box in the corner of your office. That is more or less the bet Apple is making: do the everyday stuff on the device, and only send the hard stuff to the cloud. If that is right, then a chunk of this enormous data-centre build-out ends up exactly like that fibre did. Built for a demand that turned up later, and in a different shape.</p><p>I am not betting my whole company on local AI. But I do think it is coming, and I am going local wherever it makes sense.</p><h2 id="who-actually-wins">Who actually wins</h2><p>So let me bring it together.</p><p>This week SpaceX goes public, the biggest IPO in history, and the two biggest names in AI, both still losing money, have filed to follow. Whether this is the top or just the start, I genuinely do not know, and anyone who tells you they do is guessing.</p><p>But here is what I do know. Most of us have already built AI into our businesses, or we are in the middle of doing it. Which means we are building on top of these companies. And if one of them falls, it will not fall alone. It will drag down everyone built on top of it. People like us.</p><p>I am not trying to time the market. I just want to make sure that if the price goes up sharply, or one of these companies has a wobble, my businesses do not go down with it. That is why we run what we can ourselves. That is why I always keep a backup plan.</p><p>Because the technology always survives. The people who bet everything on owning it do not. The internet was real even when most of the cable sat switched off in the dark for years. AI is real even if this week&apos;s prices turn out to be mad.</p><p>So I am not trying to own the future of AI. I just want to still be standing when the bubble bursts, and build on whatever it leaves behind.</p><hr><p>The video version of this is on YouTube now. Same argument, more of the receipts on screen: <a href="https://youtu.be/mQIxERciGOw?ref=axelmolist.com">youtu.be/mQIxERciGOw</a>.</p><p>If running a business through this kind of uncertainty is on your plate, I also write a free weekly newsletter about what is actually working inside my companies and what is quietly breaking. It is free, and you can get it here: <a href="https://axelmolist.com/ceo-os">axelmolist.com/ceo-os</a>.</p><p>Got a different read on the bubble, or a story of your own about where AI is helping and where it is bleeding money on your team? Hit reply. I read every email.</p><p>Thanks, Axel.</p>]]></content:encoded></item><item><title><![CDATA[The real reason people hate AI right now]]></title><description><![CDATA[The pushback against AI is not technophobia. It is people noticing that the measured productivity gain is 7.8% not ten times, that the gain goes to the owner before lunch, and that they are being asked to train the thing that might replace them. The bubble is real. So is the tech.]]></description><link>https://axelmolist.com/the-real-reason-people-hate-ai-right-now/</link><guid isPermaLink="false">6a1d608685883c00014ef50b</guid><category><![CDATA[AI]]></category><category><![CDATA[Technology]]></category><category><![CDATA[Business]]></category><category><![CDATA[NVIDIA]]></category><category><![CDATA[Claude]]></category><category><![CDATA[Open AI]]></category><category><![CDATA[AI Bubble]]></category><dc:creator><![CDATA[Axel Molist Cordina]]></dc:creator><pubDate>Mon, 01 Jun 2026 11:59:00 GMT</pubDate><media:content url="https://axelmolist.com/content/images/2026/06/The-real-reason-people-hate-AI-right-now.jpg" medium="image"/><content:encoded><![CDATA[<img src="https://axelmolist.com/content/images/2026/06/The-real-reason-people-hate-AI-right-now.jpg" alt="The real reason people hate AI right now"><p>Last week one of my engineers sent me a message on Slack. He is not a Luddite, not someone looking for a reason to be difficult. And this is what he wrote: &quot;The more you use AI, the more you depend on it. If it gets bad enough, you let the model do most of the thinking for you. It&apos;s making people stupid. That is what is making people angry, including me.&quot;</p><p>That is someone living inside the thing, feeling the discomfort in real time. And his frustration points at something the industry keeps failing to explain properly. So let me try.</p><p>Six months ago the conversation was &quot;AI changes everything.&quot; Now what I am seeing, including inside my own team of around 140 people across three companies, is people pushing back. Not against the technology exactly. Against something underneath it that nobody is naming.</p><h2 id="the-productivity-number-nobody-quotes">The productivity number nobody quotes</h2><p>You have heard the claims. AI makes engineers ten times faster. AI doubles your output. Most of that is vibes.</p><p>The best measured number I have seen is the median productivity gain across hundreds of software engineers, and it is 7.8%. Not ten times. Not double. 7.8%. Better than nothing, a long way from the marketing.</p><p>It gets worse for the hype. Of the engineers who hit their peak AI gain in one quarter, 66% saw it drop in the next. The early win does not compound. It fades. CFOs are noticing. One CTO told the Pragmatic Engineer survey it was hard to keep their finance team supportive because the productivity benefits had proven difficult to conclusively prove. The people signing the cheques cannot see the return, and the people doing the work can feel the same thing from the other side.</p><p>I am not telling you AI is a dead end. I use it every day across all three of my companies. I am telling you what the measured number actually is, because the gap between that number and the promise is the first thing feeding the resentment.</p><h2 id="the-asymmetry-that-is-actually-new">The asymmetry that is actually new</h2><p>Here is the part that matters most, and the part almost nobody is saying out loud.</p><p>For the last 200 years, every major technology eventually made everyone richer. The factory, electricity, the car, the internet. The owners always saw the gain first, but the workers caught up. Wages rose. Living standards rose. The gain spread.</p><p>AI is the first widespread technology where the owner sees the productivity gain immediately and the worker often sees no gain at all. In many cases the worker is helping to train the thing that will replace them.</p><p>There is footage going around of factory workers being asked to wear cameras while they work. The cameras record every motion, every decision, and the data trains a model that will eventually do their job. They are being paid to teach the machine that will take their job. It is not only factory floors. Last year Mark Zuckerberg said Meta would put recording software on its engineers&apos; computers so the model could learn from them. Weeks later, 8,000 people were laid off. Cutting 8,000 engineers frees up roughly four billion dollars a year. Meta&apos;s AI spend this year is around 135 billion. The maths tells you where the bet is placed, and it is not on the people.</p><p>The asymmetry itself is not new. What is new is the speed. The factory worker in 1900 watched the boss get rich and waited a generation for their own share. The worker wearing a camera in 2026 watches the gain go to the boss before lunch. When people say something about AI feels off, they are not imagining it.</p><h2 id="forced-on-them-and-not-even-proven">Forced on them, and not even proven</h2><p>Now add consent. People are being told their job depends on adopting a tool whose payoff is not clear even to the people mandating it.</p><p>A survey of 2,400 executives and employees this year found 60% of companies plan to lay off people who do not adapt and embrace AI. The same survey found 48% of executives calling their own AI adoption a massive disappointment. Read those two numbers together. You are being pushed onto a tool, under threat of losing your job, where the return is not proven to the very leaders demanding it.</p><p>Then there is the language. Cloudflare&apos;s chief executive announced layoffs of 20% of the workforce despite record revenue, and referred to the group being cut as &quot;the measurers.&quot; He turned people into a function, then deleted the function. That is when a worker stops asking &quot;is this tool good&quot; and starts asking a different question entirely: &quot;Am I not more valuable than ChatGPT? Am I not more valuable than a model, with all the judgement and experience I have built?&quot; Some land at yes. Some land at no. That question, not the technology, is the real source of the anger.</p><h2 id="where-the-money-is-actually-coming-from">Where the money is actually coming from</h2><p>So if the gain is small and the adoption is forced, where is all the money going? This is the other half of the unease, and it is worth being honest about.</p><p>In March, Jensen Huang stood on stage at Nvidia&apos;s GTC and told engineers they should be spending half their salary on AI tokens. Half, on top of wages. Where does that money come from? Not from end-user revenue. Uber rolled Claude Code out to 5,000 engineers and burned through their entire 2026 AI budget in four months, around 2,000 dollars per engineer per month. And the labs that money flows into are mostly not profitable. Anthropic just posted its first profitable quarter, the first time any major lab has. OpenAI is not expected to be profitable until the end of the decade.</p><p>Nvidia recently agreed to put 100 billion dollars into OpenAI, and OpenAI uses that money to buy Nvidia chips. That is not a customer relationship. That is a company subsidising its own sales. Even Huang admits it is fragile: in a leaked all-hands the day after Nvidia beat earnings, he said that if they had delivered a bad quarter, if it looked a little creaky, the whole world would have fallen apart.</p><p>Michael Burry, the investor from The Big Short, says Nvidia is like Cisco. Most people remember the dot-com bubble as pets.com vaporware. Burry&apos;s point is that the real story was Cisco: a genuinely profitable company whose equipment ran the early internet, where the build-out ran years ahead of the demand. The technology was real. The market was just miles ahead of the revenue.</p><p>That is the honest shape of it. The bubble is real, but it is a financial bubble. The technology underneath it is not.</p><h2 id="what-it-actually-looks-like-up-close">What it actually looks like up close</h2><p>Inside my own company, with our 20 engineers, the productivity gain is probably closer to that 7.8% than to ten times. But I do not think 7.8% is the ceiling. I think it is the cost of being early. My teams are spending real hours testing tools, throwing half of them out, working out what holds up. That testing is lost productivity today. It is the tax you pay at the start of a shift like this.</p><p>Two quick examples from my world, one good, one not.</p><p>A few months ago my coffee machine broke, an integrated one, complicated. Normally that is half a day of emails, hold music and being passed around departments. Instead I took a photo that showed the model and serial number, handed it to an AI agent, and told it to fix the problem. It read the numbers off the photo, found the manufacturer&apos;s service partner, emailed them through my Gmail, went back and forth until it had appointment options, and brought me a list. I approved one. The engineer turned up and fixed the machine. End to end I spent about five minutes.</p><p>Then the messy one. We built our own AI code review bot at We UC. It reads every merge request and comments through Claude, and when it works it is genuinely excellent. Last week it ran ten reviews and cost us about a hundred pounds, and on one of them it recommended restricting its own permissions. We took the advice. On the next run it could not post comments, because it had revoked its own access. One of my engineers called it a brilliant five-year-old with a doctorate and amnesia. The capability is there. The unit economics are not, yet.</p><p>That is what AI looks like up close. One clean win that saved half a day, one expensive experiment still being tuned. Far more honest than what gets shouted from a keynote stage.</p><h2 id="both-things-are-true">Both things are true</h2><p>The people pushing back on AI are not Luddites. They are seeing the asymmetry, feeling the cognitive cost their own peers are warning each other about, and being asked to train the thing that might replace them. I get it.</p><p>And the people who are convinced AI changes everything, I get them too, because every time I watch an agent do in a minute what used to take me half a day, I see exactly what they see. The capability shift is real. It is just smaller and slower than the marketing version, for now.</p><p>Both things are true at the same time. The bubble is real and the technology is real. The frustration is legitimate and the opportunity is legitimate. There is a lot of AI noise and far fewer real outcomes. The job, for anyone building or running a business through this, is to keep testing, keep your judgement, and not offload your thinking while you use the tool to lift your output. No handbook is coming. We are writing it as we go.</p><hr><p>Watch the video: </p><p><a href="https://youtu.be/tT_G8v7VAvg?ref=axelmolist.com">youtu.be/tT_G8v7VAvg</a></p><p>If running a business through this kind of uncertainty is on your plate, I also wrote The CEO Operating System, the framework I use to run three companies without burning out. It is free: <a href="https://axelmolist.com/ceo-os">axelmolist.com/ceo-os</a>.</p><p>Got a different read, or a story of your own about how this is landing on your team? Hit reply. I read every email.</p><p>Thanks,<br>Axel.</p>]]></content:encoded></item><item><title><![CDATA[Hand Coders Are Angry Right Now. I Understand Why.]]></title><description><![CDATA[AI isn't replacing engineering, it's shifting the craft from typing code to solving problems, and not everyone is willing to make that transition.]]></description><link>https://axelmolist.com/hand-coders-are-angry-right-now-i-understand-why/</link><guid isPermaLink="false">6a16ab7e85883c00014ef1f9</guid><category><![CDATA[Software]]></category><category><![CDATA[AI]]></category><category><![CDATA[Building]]></category><category><![CDATA[Business]]></category><category><![CDATA[Coding]]></category><category><![CDATA[Technology]]></category><dc:creator><![CDATA[Axel Molist Cordina]]></dc:creator><pubDate>Wed, 27 May 2026 08:33:19 GMT</pubDate><media:content url="https://axelmolist.com/content/images/2026/05/niche.jpg" medium="image"/><content:encoded><![CDATA[<img src="https://axelmolist.com/content/images/2026/05/niche.jpg" alt="Hand Coders Are Angry Right Now. I Understand Why."><p>Ten months ago, one of my senior backend engineers, Vitaliy, left three comments on a piece of AI-generated code I&apos;d pushed into one of our repos. He called the file awful. Said the logic was in the wrong place. Said a switch case belonged in a constants file. He wasn&apos;t joking. He was a senior engineer doing his job, and he genuinely thought the code was bad.</p><p>This week, the same Vitaliy sent me an unprompted 8-page proposal to build our first agentic AI coding system at We UC. And in his Slack message, he wrote the line that&apos;s stuck with me since: &quot;those MRs you used to send me that gave me plenty to comment on.&quot; Winking emoji at the end.</p><p>He named the moment he was mocking. He updated his view when the evidence changed. He was the loudest sceptic on my team. Now he&apos;s the one leading the build.</p><p>What flipped in those ten months is the answer to a question I keep getting asked: why are some engineers leaning hard into AI coding while others are getting actively angry about it? This post is about what the real fight is, why it isn&apos;t about the code, and the two paths I see open from here.</p><h2 id="a-scale-not-a-divide">A Scale, Not a Divide</h2><p>AI coding usually gets framed as two camps. Hand coders versus AI-native coders. Real engineers versus vibe coders. Old school versus new school.</p><p>That framing is wrong. It&apos;s a scale, not a divide.</p><p>At one end you&apos;ve got fully AI-native engineers. They write PRDs and specs in plain English and let AI handle the implementation, the review, the tests. Their craft has moved from typing to specifying, architecting and managing agents.</p><p>At the other end, the 100% hand coders. Every line typed. Every character earned. Their craft is in their fingers, along with the discipline and pride they built over a career. To them, AI-written code isn&apos;t real work.</p><p>Most of the industry sits somewhere in between. The question isn&apos;t which camp you&apos;re in. It&apos;s which way you&apos;re leaning, and how fast.</p><p>The data backs the direction. Google, at Cloud Next this year, said 75% of their new code is AI-generated. Microsoft puts the number at 20 to 30%. Anthropic&apos;s Claude Code team is at pretty much 100%. &quot;AI-generated&quot; means different things at different companies, but the trend is unambiguous: every major engineering organisation is moving down the scale, fast.</p><p>The developer side is more interesting. The Stack Overflow 2025 survey showed 84% of engineers use AI tools or plan to. But trust dropped 11 points year on year, to 29%. The gap between use and trust is exactly where the anger lives.</p><h2 id="what-the-anger-is-really-about">What the Anger Is Really About</h2><p>When you&apos;ve spent 10 or 15 years typing code, you&apos;ve built a self-image around the act of typing. Your reflexes, your shortcuts, the way you think while you write. All of it tuned to the keyboard.</p><p>If I walk in and say &quot;stop typing code, write a spec instead&quot;, I&apos;m not asking you to learn a new tool. I&apos;m asking you to change who you are. That&apos;s hard for anyone.</p><p>MIT Technology Review published a piece at the end of last year with a line from an engineer called Luciano Nooijen that landed harder than any data point I&apos;ve seen. He&apos;d been leaning on AI tools heavily at work, tried to build a side project without them, and realised he&apos;d lost something: &quot;I was feeling so stupid because things that used to be instinct became manual, sometimes even cumbersome.&quot;</p><p>Feeling stupid. That&apos;s what this transition does to the muscle memory, and to the self-image built on it.</p><p>The technical term for what happens next is cognitive dissonance. Your identity says one thing. The world says another. You can update your self-image, which is painful and slow and requires humility. Or you can reject the evidence, which is easier and gives immediate relief, at the cost of being isolated over time. Most people pick the second one first.</p><p>The cleanest example I&apos;ve seen came in a comment on one of my own videos: &quot;He is completely mistaken. Specification-driven development is not the future, but I won&apos;t explain why.&quot; That last bit is the tell. There&apos;s no argument underneath. There&apos;s just discomfort.</p><p>And it goes deeper than psychology. Your nervous system, biologically, can&apos;t tell the difference between transformation and threat. When something familiar starts ending, your body reacts the way it would to physical danger.</p><p>The anger isn&apos;t malice. It&apos;s grief, dressed up as opinion.</p><h2 id="who-makes-the-turn">Who Makes the Turn</h2><p>After three years of watching this inside my own team, three things predict who makes the turn.</p><p>One, the tools have got dramatically better in a short space of time. Engineers who tested AI coding in early 2024 and concluded it wasn&apos;t ready were not wrong then. The code often was bad. But if you haven&apos;t re-tested in the last three months, your opinion is out of date.</p><p>Two, identity. The engineers who adapted earliest on my team weren&apos;t the youngest or the smartest. They were the ones whose self-image was less tied to the typing. The ones who already saw themselves as problem solvers first, code writers second.</p><p>Three, humility. The technical version, not the soft version. The willingness to be a beginner again at something hard. Most senior engineers got senior by being the smartest person in the room. AI coding makes them wrong, on repeat, until they&apos;re not. Getting better feels like getting worse, at first. The ones who could sit with that made the turn. The ones who couldn&apos;t, didn&apos;t.</p><h2 id="the-pattern-that-keeps-repeating">The Pattern That Keeps Repeating</h2><p>None of this is new. Every digital transformation in living memory has followed the same shape.</p><p>I watched it up close once before. My father ran a photography business. His craft was developing the film, working with the chemicals, exposing prints in the darkroom. Digital came. He stuck with what he knew for a while because he was good at the old craft. But his competitors switched. They got faster. They started winning more work. So one day he made the call. Renewed his lab, bought a minilab, and within a month he was fully converted. The decision took him years. The execution took weeks.</p><p>Today most professional photography is digital. Film still exists, in a respected niche. Same with music. Vinyl passed a billion dollars in US revenue last year for the first time since 1983. Real niche, real money, not how the mainstream listens.</p><p>The old craft doesn&apos;t die. It becomes a respected niche. Mainstream production moves on.</p><p>The legends of hand coding agree. John Carmack, who founded id Software and shipped Quake and Doom, posted earlier this year: &quot;Coding was never the source of value, and people shouldn&apos;t get overly attached to it. Problem solving is the core skill.&quot;</p><p>And DHH, the creator of Ruby on Rails and a vocal AI sceptic for years, summer last year: &quot;I can literally feel competence draining out of my fingers.&quot; Six months later, January this year: &quot;Any time I have to type precise syntax by hand now feels like such a tedious chore. Programming is still fun, probably more fun.&quot;</p><p>From &quot;competence draining&quot; to &quot;tedious chore&quot; in six months. The same pattern I watched with Vitaliy, just on a bigger stage.</p><h2 id="two-honourable-paths">Two Honourable Paths</h2><p>Here&apos;s where I think we&apos;re heading, with the usual caveat that these are estimates, not guarantees.</p><p>Within a year, I think 90% of new production code will be written by AI, with humans writing specs, reviewing plans and approving the work. Within three years, hand coding will be considered a niche craft. Beloved. Respected. Real. But not how mainstream production happens.</p><p>I could be wrong on the timeline. Anthropic&apos;s CEO Dario said in March last year that we&apos;d hit 90% AI-written code across the industry in three to six months, and the latest estimates put us at around 42%. Predictions miss. The direction doesn&apos;t.</p><p>So I see two paths forward.</p><p>Path one. Adapt. Learn to write specs in plain English. Get comfortable letting AI write the implementation while you architect, review and manage. Find the new craft inside the new workflow. This is where mainstream production work is heading.</p><p>Path two. Choose the niche. If your love is the keyboard, the typing, the craft of writing every line yourself, that is valid. There&apos;s a place for you. Just understand that the place is getting smaller, and your value proposition has to get sharper. Film photography is a respected niche. Vinyl is a respected niche. So can hand coding be.</p><p>Both paths are honourable. What doesn&apos;t work is the third path. Denial. Insisting the change isn&apos;t happening, attacking the people reporting it, pretending the world will rewind. That position has never won in any technology transition.</p><h2 id="pick-your-path">Pick Your Path</h2><p>Vitaliy chose path one. Ten months ago he was the loudest sceptic on the team. This week he&apos;s the one leading the build. He had the humility to update his view when the evidence shifted, and he&apos;s a better engineer for it.</p><p>If you&apos;re a CEO or operator looking at your own dev team and seeing the same split, don&apos;t try to win the argument by force. Outlast it. Keep showing the work. Let the people they respect online start changing their tune too. The wall cracks slower than you&apos;d like, but it cracks.</p><p>And if you&apos;re an engineer reading this and you feel the anger rising, be honest with yourself about which path you actually want. Either of them is real. Neither requires denial.</p><p>Pick your path. Just don&apos;t stand in the middle, defensive and angry at the people who picked.</p><hr><p>Watch the video:</p><figure class="kg-card kg-embed-card"><iframe width="200" height="113" src="https://www.youtube.com/embed/kwxqw5r38uM?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen title="Hand coders are angry. I get it"></iframe></figure><p>If running a business through the AI transition is on your plate, I also wrote The CEO Operating System, the framework I use to run multiple companies without burning out. It&apos;s free. <a href="https://axelmolist.com/ceo-os">axelmolist.com/ceo-os</a></p><p>Got thoughts, pushback, or a story of your own on this? Hit reply. I read every email.</p><p>Thanks,<br>Axel.</p>]]></content:encoded></item><item><title><![CDATA[Distribution Is the Hard Part of Software in 2026]]></title><description><![CDATA[Building software is not the hard part, distribution is. Here's why the cold-call playbook that built circle.cloud doesn't fit my SaaS, and the four-layer plan I'm running to fix it in public.]]></description><link>https://axelmolist.com/distribution-is-the-hard-part-of-software-in-2026/</link><guid isPermaLink="false">6a08b77085883c00014eee1d</guid><category><![CDATA[Business]]></category><category><![CDATA[Software]]></category><category><![CDATA[Telecoms]]></category><category><![CDATA[Startups]]></category><category><![CDATA[We UC]]></category><category><![CDATA[Technology]]></category><dc:creator><![CDATA[Axel Molist Cordina]]></dc:creator><pubDate>Sat, 16 May 2026 18:32:58 GMT</pubDate><media:content url="https://axelmolist.com/content/images/2026/05/ALT-thumb-A.jpg" medium="image"/><content:encoded><![CDATA[<img src="https://axelmolist.com/content/images/2026/05/ALT-thumb-A.jpg" alt="Distribution Is the Hard Part of Software in 2026"><p>I&apos;ve spent four years and &#xA3;1.5 million building a SaaS, and almost nobody knows it exists.</p><p>That sentence took me longer to admit than it should have.</p><p>I&apos;m Axel. I founded circle.cloud in 2015, a UK telecoms company that grew to over 100 people without outside investment. I now run We UC as CEO, the unified communications SaaS we&apos;ve spent four years building. I&apos;ve shipped software before. I&apos;ve sold software before. I just hadn&apos;t, until now, sold software the way software actually needs to be sold in 2026.</p><p>Here&apos;s what I got wrong, and the plan I&apos;m running to fix it.</p><h2 id="how-i-learned-distribution">How I Learned Distribution</h2><p>I built circle.cloud one phone call at a time.</p><p>In 2015 I was working out of a spare bedroom with a desk phone, a laptop, and a CRM full of cold leads. Two hundred calls a day. I&apos;d ring through the list until someone agreed to a meeting. Drive out. In-person demo. Close. Install. Repeat.</p><p>Over the next few years I hired people to run the same process at scale. By the time we started building We UC in 2021, we had around 25 people on the phones, nine field salespeople sitting demos every day, and nine engineers installing phone systems on site. A conveyor belt with humans at every stage.</p><p>That model works. It still works for us today. circle.cloud is heading toward 100 installs a month right now using the same playbook.</p><p>It works because the unit economics support it. The average telecoms deal is big enough to pay for the cold call, the travel, the demo, the install, the engineer, the account manager. The customer wants someone holding their hand. They want a face in the room. They want an engineer on site in their comms cupboard.</p><p>High-touch distribution isn&apos;t outdated. It&apos;s the right tool for the right unit economics.</p><h2 id="why-that-engine-doesnt-transfer">Why That Engine Doesn&apos;t Transfer</h2><p>We UC is a different animal.</p><p>It&apos;s a SaaS. The plan is to sell it to founders, operators, IT directors, COOs, CTOs - the kind of tech-savvy operator who scrolls through the internet at two in the morning, finds a product that looks well made, signs up there and then, and onboards their team without ever talking to a salesperson.</p><p>A SaaS product priced like a meal out can&apos;t pay for a cold call. It can&apos;t pay for travel. It can&apos;t pay for an engineer on site. The maths just don&apos;t work.</p><p>So it needs a completely different motion. Different process, different team, different metrics, different content, different acquisition channels.</p><h2 id="i-did-it-backwards">I Did It Backwards</h2><p>The traditional advice for a new founder is to validate the market first. Build a landing page. Run some ads. Pull together a small audience. Sign up a waitlist. Then, if the interest is real, build the product.</p><p>I did it the other way around. Four years and &#xA3;1.5M of investment into the build before I had a landing page worth driving traffic to. No waitlist. No email list. No audience.</p><p>I&apos;m not proud of that. But I want to be honest about it, because there&apos;s a specific reason it happened.</p><p>I knew how to build software. I had a 20-person dev team and a decade of muscle memory running a business that ships things. Building was the part I knew how to do, so I kept doing it. Marketing, especially the modern AI-augmented kind, was new. New is uncomfortable. The natural pull is to retreat into the thing you already know.</p><p>That&apos;s the trap. Building feels like progress. Building is comfortable. And when you&apos;re a founder who&apos;s good at building, the work that actually changes the trajectory of the business gets postponed.</p><p>What broke me out of it was sitting back and asking why the engine that built circle.cloud doesn&apos;t fit a SaaS. Once that became clear, the work I&apos;d been avoiding became unavoidable.</p><h2 id="the-modern-way-to-go-to-market">The Modern Way to Go to Market</h2><p>Five years ago, if you&apos;d asked me how to launch a software product, I&apos;d have said hire telemarketers if the unit economics allow it, and run a heavy SEO play if they don&apos;t. That was the orthodoxy.</p><p>It isn&apos;t anymore.</p><p>The people I look at now run a different motion entirely. Jordan Crawford and his Blueprint GTM team are the cleanest example. Audience-first. Content-led. AI-augmented. They aren&apos;t optimising for cold outreach. They&apos;re building media properties around the product, and the product gets shipped into the audience that&apos;s already paying attention.</p><p>Another company that puts this into focus for me is Kinzo (kinzo.ai). Two founders with a big exit behind them, now building an AI inbox assistant. Roughly 60% of their team is content and marketing. The other 40% is engineering and go-to-market. That ratio used to be the inverse for any sane software company. It isn&apos;t anymore.</p><p>At We UC today, the split is roughly 99% product and 1% marketing. That has to change.</p><h2 id="the-plan-in-layers">The Plan, In Layers</h2><p>Here&apos;s how I&apos;m thinking about it. Four layers, with the first one as the foundation everything else sits on.</p><p><strong>Layer One: Personal Brand.</strong><br>The thing you&apos;re reading right now. I started writing in public and showing up on YouTube and LinkedIn in November 2024. I&apos;m six months in. Growth is slow. Engagement is slow. Some days it feels like nobody&apos;s listening.</p><p>I&apos;m doing it anyway because people buy from people. If a founder or operator finds me through this content and trusts how I think, the product gets to skip the hardest part of a cold sale: building trust from zero. The personal brand isn&apos;t the marketing. It&apos;s the foundation underneath the marketing.</p><p><strong>Layer Two: Product and Company Content.</strong><br>Once the SaaS is publicly live, we run a content engine for the product itself. Blog posts at volume. LinkedIn, YouTube, Instagram. Product demos. Carousels and visual artefacts created with AI tools like Claude Design. A mountain of content, AI-assisted but with a high quality bar set by humans.</p><p>The plan is funnel-shaped. Top-of-funnel content is informational, educational, broad. Mid-funnel content is product-led: what the product does, why we built it the way we did, what changes for the buyer. Bottom-of-funnel content is the call to action: start a trial, join the waitlist, talk to us.</p><p><strong>Layer Three: Paid Media.</strong><br>Take the best-performing organic content and sponsor it. Run paid social experiments. Use Google for the high-intent searches. Paid is amplification, not replacement. We only put money behind content that&apos;s already proving itself organically.</p><p><strong>Layer Four: PR.</strong><br>A structured PR push around launch. Embargoed press releases sent to around 150 publications, trade press, business press, telecoms press. We&apos;ll either engage a PR agency or run it ourselves to keep costs down. The press releases go out under embargo so the coverage all lands on launch day. A second wave later in the year, with a circle.cloud customer who&apos;s selected We UC as their communications platform.</p><p>Personal brand first. Product content second. Paid amplification third. PR around the launch moments.</p><h2 id="the-edge-i-already-have">The Edge I Already Have</h2><p>There is one thing I have that most SaaS founders don&apos;t.</p><p>circle.cloud has around 2,500 customers on the existing phone system, supporting over 10,000 users. We&apos;re now migrating them onto We UC. So far we&apos;ve moved three customers across, and about 150 users are now live on the new platform. Each migration gives us real feedback from real businesses paying real money.</p><p>Most SaaS launches don&apos;t have that. They go live with hope and a waitlist. We go live with a product that&apos;s already been battle-tested by paying UK businesses.</p><p>That&apos;s the edge on the product side. The SaaS will be hardened before it&apos;s publicly available.</p><p>What I don&apos;t have is an audience for the SaaS itself. That, I&apos;m building from zero.</p><h2 id="the-rebrand">The Rebrand</h2><p>There&apos;s one detail I haven&apos;t mentioned. We UC isn&apos;t the name we&apos;ll launch the SaaS under.</p><p>&quot;UC&quot; stands for unified communications. Inside the telecoms industry, that&apos;s table-stakes vocabulary. Outside it, nobody knows what it means. Buyers guess &quot;universal communications&quot; or assume it&apos;s part of the company name. Every first impression starts with a small piece of confusion. The label also undersells the product, because what we&apos;re building is a modern, AI-augmented, keyboard-first communications platform, not a category-standard UC tool.</p><p>So the parent company stays as We UC Ltd. The product gets a new name, marketed direct to operators.</p><p>The criteria are tight. Six letters or fewer. Communications at its root, ideally implying voice or conversation without saying it literally. International, not English-bound. Friendly to the ear, no hard Xs. Available, meaning trademark-clearable and domain-buyable. And distinctive enough that we don&apos;t sound like the rest of the category.</p><p>Every name we&apos;ve liked has been trademarked. Every name that clears the legal check doesn&apos;t quite sound right. It&apos;s harder than I expected. We&apos;ll land on it, and the moment we do I&apos;ll show the rebrand and the new website here.</p><p>If you&apos;ve got an idea, I&apos;m taking suggestions. Drop them in the comments under the video.</p><h2 id="the-mindset-shift">The Mindset Shift</h2><p>Underneath all of this is a transition I&apos;m still working through.</p><p>For ten years I&apos;ve been the founder of a services business. The mental model for growth is staffing the conveyor belt: more callers, more field reps, more engineers, more installs. Capacity scales linearly with headcount. Revenue scales with capacity. You optimise the funnel.</p><p>A product business doesn&apos;t grow that way. You don&apos;t scale a SaaS by hiring more salespeople, because the unit economics don&apos;t carry the cost. You scale it by building an audience, shipping the product into that audience, and compounding both at the same time.</p><p>That&apos;s an entirely different game. New muscles. New ratios. New ways of measuring whether the week was a good one.</p><p>I&apos;m excited about it, even though I&apos;m new at it. I&apos;ve always found my way through a thing once I&apos;ve decided to obsess over it. This is the latest obsession.</p><p>If you&apos;re building a SaaS in 2026, this is the order I&apos;d run it in. Audience first, then product, then paid amplification of what works. Money doesn&apos;t get you organic growth. The list compounds slowly. You can&apos;t buy it.</p><p>It&apos;s the work I&apos;m doing now, in public.</p><p>Watch the video:</p><figure class="kg-card kg-embed-card"><iframe width="200" height="113" src="https://www.youtube.com/embed/AtDs_jFgfkA?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen title="Everyone is building. But who&apos;s buying?"></iframe></figure><hr><p>If running a software business in the AI era is on your plate, I wrote The CEO&apos;s Operating System, the free framework I use to run circle.cloud and build We UC. <a href="https://axelmolist.com/ceo-os">axelmolist.com/ceo-os</a></p>]]></content:encoded></item><item><title><![CDATA[What 3 Years of Pushing AI Coding Did to My Dev Team]]></title><description><![CDATA[They called the code bad and mocked everything I built with AI for three years. Then six months ago, the wall started to crack.]]></description><link>https://axelmolist.com/what-3-years-of-pushing-ai-coding-did-to-my-dev-team/</link><guid isPermaLink="false">69fe039085883c00014eea43</guid><category><![CDATA[AI]]></category><category><![CDATA[Coding]]></category><category><![CDATA[Productivity]]></category><category><![CDATA[Technology]]></category><category><![CDATA[We UC]]></category><category><![CDATA[Business]]></category><dc:creator><![CDATA[Axel Molist Cordina]]></dc:creator><pubDate>Tue, 12 May 2026 16:34:26 GMT</pubDate><media:content url="https://axelmolist.com/content/images/2026/05/thumbnail-final-rev.jpg" medium="image"/><content:encoded><![CDATA[<img src="https://axelmolist.com/content/images/2026/05/thumbnail-final-rev.jpg" alt="What 3 Years of Pushing AI Coding Did to My Dev Team"><p>If you&apos;re a CEO or CTO with engineers who learned to code before AI, and you can feel that AI coding should be transforming your business but it isn&apos;t, this is for you.</p><p>The tools aren&apos;t the problem. The problem is the people. Specifically, the engineers who built their craft before AI was useful. The ones your business actually runs on.</p><p>I&apos;ve been a fanatic of AI coding since the month ChatGPT shipped. For most of the three years since, my dev team at We UC pushed back. Hard. They called the code bad. They mocked everything I built with AI. I&apos;ve still got the Slack messages.</p><p>Then six months ago, the wall started to crack.</p><h2 id="the-december-2022-mysql-moment">The December 2022 MySQL Moment</h2><p>Let me take you back to the moment I knew everything was about to change.</p><p>December 2022. I&apos;m at my laptop trying to build a dashboard to display phone system data. I&apos;m not a developer. Never have been. But the data lived inside a MySQL database, and to get it into our BI dashboard I had to write a fair amount of SQL. Selects, joins, all of that.</p><p>I&apos;d spent months grinding through Stack Overflow. Asked friends who knew MySQL. Always hit a wall.</p><p>Then ChatGPT came out. I described the query I wanted in plain English. It wrote the query. It worked. First try. Then I asked it for a script. The script worked too.</p><p>Within six months, I&apos;d built a working prototype of a full app I&apos;d been wanting for years. I sat there, blown away. And I remember thinking, this is the new way of writing code. The world is never going to be the same again.</p><p>So in early 2023, I went to my dev team and said, you need to start using this. This is the future. Get on it.</p><h2 id="three-years-of-no">Three Years of No</h2><p>Every single one of them pushed back.</p><p>The objections came in waves. You can&apos;t trust it. It hallucinates. It writes ugly code. It writes bad code, because it&apos;s been trained on the worst code on the internet. It can&apos;t fit our app in its context window. It will suggest packages that are out of date because of the training cutoff window, so it will write code with known vulnerabilities.</p><p>Every time I built something with AI, an internal tool, a script, anything, the team picked it apart. &quot;Why is this file so long? Why did it pass these arguments? This is way more complicated than it needs to be. Look how I can simplify this function.&quot;</p><p>That last line, I heard a hundred times. &quot;Look how I can simplify this function.&quot;</p><p>And underneath it, the unspoken word was always the same. AI coding doesn&apos;t work, Axel. Stop dreaming.</p><p>It took me two years to realise the resistance wasn&apos;t really about the code. It was about identity.</p><p>If you&apos;ve spent years building muscle memory for what good code looks like, and someone walks in saying &quot;let the machine write it,&quot; you don&apos;t hear &quot;use a new tool.&quot; You hear &quot;your craft no longer matters.&quot; That&apos;s the real reason. Not hallucinations. Identity.</p><p>I kept pushing. They kept pushing back. For three years.</p><h2 id="the-first-crack">The First Crack</h2><p>Six months ago, things started to shift. I noticed it first in the small things.</p><p>We needed a marketing automation script. One of our mid-level developers, the same person who&apos;d been mocking my AI scripts twelve months earlier, opened Claude Code, wrote a thorough prompt, and the script came out clean. Worked first try. He didn&apos;t tell me he&apos;d used AI. I had to ask.</p><p>Around the same time, one of our senior backend developers, the one who&apos;d called AI coding unreliable for the previous two years, started insisting on detailed technical specs for every new feature. Working with our PM on the PRD first, then writing the spec sheet himself. As if that&apos;s just how you do it now.</p><p>Why? Because once we have a good spec, AI can handle far more of the implementation than before. We move reliably faster.</p><p>I asked him why we couldn&apos;t just let AI write all of We UC. And he said something that stuck with me.</p><p>&quot;We UC has been built over four years by different people, without a clearly defined coding standard from day one. So whenever AI looks at our code, it sees five different opinions about the right way to do things. Of course it gets confused.&quot;</p><p>That was honest. And he was right.</p><h2 id="ai-coding-exposes-it-doesnt-fix">AI Coding Exposes, It Doesn&apos;t Fix</h2><p>Here&apos;s the reframe that took me three years to see. AI coding doesn&apos;t fix bad engineering practices. It exposes them. And then it forces you to fix them properly.</p><p>The problem wasn&apos;t AI. We had never written down what good code should look like inside our company. So now we have. We&apos;re building a comprehensive coding standards document. We&apos;re refactoring our backend services into a monorepo so everything lives in one place: code, docs, tests. Where any developer, or any AI, can navigate it.</p><p>We had also been under-documenting our architecture decisions for years. The why behind choices, not just the what. So when we feed our codebase into AI now, we have something to feed in beyond the raw code. Without documented decisions, the AI was filling in the gaps with its own guesses. That&apos;s where the problems were starting.</p><p>We&apos;ve improved our security stack too. Docker hardened images for the attack surface. Context7 MCP inside Claude Code so the AI uses the latest version of every package, not whatever was current at its training cutoff. Aikido running for the last month, scanning containers and deployments for vulnerabilities.</p><p>But none of this is really about AI. It&apos;s about wanting to write good code as an organisation. Bad packages get shipped by humans too. Insecure code gets written by humans too. The question isn&apos;t &quot;is AI safe?&quot; The question is, are we set up to produce good code, regardless of who or what wrote it?</p><p>We&apos;ve started treating AI like another developer on the team. I think that&apos;s the right approach.</p><h2 id="permission-from-skeptics">Permission from Skeptics</h2><p>Why did my team finally come round? Honestly, three things hit at once.</p><p>I&apos;d been hammering the same drum for three years. They were tired of hearing it from me.</p><p>Claude Code itself got dramatically better. The models stepped up significantly over the last twelve months.</p><p>And the third one, which surprised me. The developers my team follows online started talking about the tools seriously. Not as evangelists. As skeptics. ThePrimeagen, the YouTuber my team trusts most, is still cautious about AI coding. But cautious is different from dismissive. When the practitioners my team respects moved from &quot;this is hype&quot; to &quot;this is a real tool with real trade-offs,&quot; that gave my team permission to do the same.</p><p>They didn&apos;t get converted by hype. They got permission from skeptics.</p><p>Sometimes you don&apos;t win the argument. You outlast it. And you let other people make it for you.</p><h2 id="two-generations-of-developer">Two Generations of Developer</h2><p>The process of converting my team has made me think about something much bigger.</p><p>There&apos;s a fork in the road in software development right now. Two generations of developer. One shaped before AI existed. One being shaped now. The gap between them is going to define the next decade.</p><p>On one side: developers who learned to code before AI was useful. That&apos;s my team and probably yours. They learned the syntax. They learned languages by typing them out, character by character. Their craft is in their fingers.</p><p>I call them hand coder software engineers. Or hand coders, for short.</p><p>On the other side: developers learning to build software now, with AI in the editor from day one. They won&apos;t memorise JavaScript or Python or Rust syntax, because they don&apos;t need to. AI handles that. What they will learn is the concepts. The architecture. Computer science principles. How memory gets allocated. How a system scales.</p><p>I call them AI native software engineers. They become managers of agents. They define the system, write the spec, set a fleet of agents loose, review the output. They&apos;re responsible for what the agents produce. But they don&apos;t write the code by hand. They don&apos;t need to.</p><p>I think I&apos;m an early version of how this works. I never learned to code in the syntax sense. I learned to build software with AI from the start. I architect the system, write the spec, pass it to Claude Code, then test the output.</p><p>That&apos;s how I built The Scheduler. It started as an internal tool at one of my other companies. Now it&apos;s a fully working product, in production, used by real customers. Not a demo. I didn&apos;t write a single line by hand. I built it the way I think an AI native software engineer is going to be building everything.</p><p>I&apos;ve done it twice. Before The Scheduler I built a search tool that pulled customer data from across our CRM, our phone system, and several internal servers. Two days. Working app. I&apos;m not a developer.</p><p>If you&apos;re hiring a junior developer in two years time, the people applying for those jobs are going to look very different from the hand coders you&apos;ve hired before. We&apos;re going to be hiring AI native software engineers. People who don&apos;t need to know how to write code in the syntax sense, but who absolutely know how to build software. Real software. Production grade.</p><h2 id="what-this-means-if-youre-hiring">What This Means If You&apos;re Hiring</h2><p>If you&apos;re a CEO or CTO trying to push AI coding into a team of hand coders, keep pushing. Be patient. Pick AI native engineers when you hire.</p><p>Most of the rest will come around when the evidence is loud enough. Probably faster if it&apos;s coming from someone other than you.</p><p>And if you&apos;re where I was a year ago, don&apos;t be discouraged. Their mindset will change. Their work will change. Mine did.</p><p>A year ago they called it bad code. Today they&apos;re using it daily, in production. The argument resolves itself. If you outlast it.</p><p>Watch the video:</p><figure class="kg-card kg-embed-card"><iframe width="200" height="113" src="https://www.youtube.com/embed/PE02K1OqNGQ?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen title="What 3 years pushing AI coding did to my dev team"></iframe></figure>]]></content:encoded></item><item><title><![CDATA[The Invisible Line Between Vibe Coding and Professional AI Coding]]></title><description><![CDATA[Vibe coding is for prototypes. Professional AI coding is for production. The line between them is invisible to most founders, until something breaks.]]></description><link>https://axelmolist.com/vibe-coding-vs-pro-ai-coding/</link><guid isPermaLink="false">69ed0e9d85883c00014ee223</guid><category><![CDATA[AI]]></category><category><![CDATA[Coding]]></category><category><![CDATA[Software]]></category><category><![CDATA[Business]]></category><category><![CDATA[Technology]]></category><dc:creator><![CDATA[Axel Molist Cordina]]></dc:creator><pubDate>Sat, 25 Apr 2026 19:48:20 GMT</pubDate><media:content url="https://axelmolist.com/content/images/2026/04/ChatGPT-Image-Apr-25--2026--07_57_00-PM.png" medium="image"/><content:encoded><![CDATA[<img src="https://axelmolist.com/content/images/2026/04/ChatGPT-Image-Apr-25--2026--07_57_00-PM.png" alt="The Invisible Line Between Vibe Coding and Professional AI Coding"><p>Last week I got on a call with a customer who&apos;d built a working app for his business in a week. When I asked him what database it was running on, he didn&apos;t know.</p><p>That&apos;s vibe coding.</p><figure class="kg-card kg-embed-card"><iframe width="200" height="113" src="https://www.youtube.com/embed/cutcJRspRhQ?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen title="I found the line splitting AI coding"></iframe></figure><p>And there&apos;s a line, currently invisible to most people, between vibe coding and what I think of as professional AI coding. Same tools on both sides. The code can look identical on the surface. The difference doesn&apos;t show up until something breaks. And by then, it&apos;s usually too late.</p><p>I&apos;m running a 20-person dev team at We UC, our unified communications platform. I founded circle.cloud, the telecoms business behind it. I spend most of my days either building software with AI or watching my customers try to do the same, and what I&apos;m seeing is a line forming between two completely different disciplines. One side is genuinely transformative for small businesses. The other side is a time bomb waiting to go off in production.</p><p>This post is about where that line sits, and which side of it your business needs to be on.</p><h2 id="a-customer-who-built-an-app-in-a-week">A Customer Who Built an App in a Week</h2><p>Back to that phone call.</p><p>The guy on the other end of the video call runs a commercial refurbishment business. He fits out schools, hospitals and offices. His biggest operational headache was managing contractors. Sending out jobs, collecting quotes, tracking documents. The off-the-shelf tools were either too generic or required four separate products duct-taped together.</p><p>So he opened Claude Code and tried to build the thing himself.</p><p>He isn&apos;t a developer. His background is in web design, so he knows Figma and Photoshop. He knows what good user experience looks like. He doesn&apos;t know software engineering.</p><p>A week later, he had a working app; with login, contractor onboarding, job offers &amp; bidding for his contractors, document uploads, messaging, everything he needed for a v1.</p><p>That&apos;s when I asked the question.</p><p>&quot;What database are you using?&quot;</p><p>He paused. Then logged into Vercel to check. Came back and said Supabase.</p><p>That&apos;s pure vibe coding. He&apos;d built an app, and he had no concern about the architecture or the infrastructure. The AI was handling all of it, and for his internal use case, that was fine. It&apos;s brilliant, in fact. Five years ago, this person couldn&apos;t have built a single screen of that app, let alone the whole thing. Now he&apos;s solving a real operational problem in his own business in a week.</p><p>But if he ever opens that app to real customers, or starts holding data that matters, he&apos;s going to find a line he didn&apos;t know was there.</p><h2 id="the-line-explained">The Line, Explained</h2><p>Vibe coding is the practice of describing what you want and accepting what the AI gives you. The AI picks the database and the infrastructure. The person vibing doesn&apos;t need to know any of it. For an internal tool sitting behind a corporate network or Cloudflare Access, that&apos;s a perfectly reasonable trade-off.</p><p>Professional AI coding is something else. The AI still writes the code, but before it writes a single line, three things have already happened.</p><h3 id="1-a-detailed-prd-and-technical-spec">1. A Detailed PRD and Technical Spec</h3><p>Not an agile user story on a Post-it note. A proper product requirements document, paired with a technical spec. It explains, in the least ambiguous way possible, what the software does, why it needs to exist, how it integrates with other systems, what it doesn&apos;t do, and every edge case you can think of.</p><p>The best test I can think of is this: if you handed those documents to three separate engineers in isolation, they should all build roughly the same thing. If the spec leaves more room for interpretation than that, it isn&apos;t tight enough.</p><h3 id="2-a-human-engineer-has-made-the-architectural-decisions">2. A Human Engineer Has Made the Architectural Decisions</h3><p>The db, data structure, API endpoints, security, whether there&apos;s a queueing system or message bus like RabbitMQ or Apache Kafka in the mix, etc.</p><p>These aren&apos;t handed off to the AI agent. They&apos;re handled by a professional who understands what those choices will cost six to twelve months down the line, when your customer base has grown, the product has evolved, and a design decision made in week one is suddenly the bottleneck.</p><h3 id="3-the-ai-confirms-its-plan-before-it-writes-anything">3. The AI Confirms Its Plan Before It Writes Anything</h3><p>You feed in your docs, and instead of letting the model start coding straight away, you ask it to come back with its implementation plan first. It should return something like: &quot;Here&apos;s what I understood from your request, and here&apos;s what I&apos;m going to build.&quot; A human then reads that plan and confirms it&apos;s correct before any code is generated.</p><blockquote><strong>The AI is the muscle. The human is the brain.</strong><br><br><em>That&apos;s the line. Everything else is a consequence of it.</em></blockquote><p>Same AI tools on both sides. The code may even look similar at first glance. The difference is invisible on the surface until something breaks.</p><h2 id="what-professional-ai-coding-looks-like-in-practice">What Professional AI Coding Looks Like in Practice</h2><p>At We UC, we&apos;re in the middle of building a serious upgrade to our analytics module. Custom dashboards, with the option to pull data from external sources. Effectively a mini BI tool built into the platform. Because of what we&apos;ve learned, we&apos;re approaching this one very differently from how we&apos;ve built things before.</p><p>First, we&apos;ve written a properly detailed PRD. What the module does, why it exists, how it integrates, what it explicitly doesn&apos;t do, every edge case.</p><figure class="kg-card kg-image-card"><img src="https://axelmolist.com/content/images/2026/04/Axel-screenshot-010569.png" class="kg-image" alt="The Invisible Line Between Vibe Coding and Professional AI Coding" loading="lazy" width="2000" height="1891" srcset="https://axelmolist.com/content/images/size/w600/2026/04/Axel-screenshot-010569.png 600w, https://axelmolist.com/content/images/size/w1000/2026/04/Axel-screenshot-010569.png 1000w, https://axelmolist.com/content/images/size/w1600/2026/04/Axel-screenshot-010569.png 1600w, https://axelmolist.com/content/images/2026/04/Axel-screenshot-010569.png 2000w" sizes="(min-width: 720px) 720px"></figure><p>Second, our lead software architect is writing the technical specification. Data models, API contracts, state diagrams, error handling. The things AI coding tools aren&apos;t qualified to decide on their own.</p><p>Third, we&apos;ll use Claude Code to actually generate the implementation. With the architecture documented and the spec unambiguous, the AI should be able to handle that part with discipline.</p><p>There&apos;s a fourth idea I want to test as part of this project. I&apos;ve been calling it an &quot;anti-ambiguity agent&quot;. The idea is simple: we feed our documentation into a sequence of agents whose job is to look for ambiguity in the spec. Anything unclear comes back with a short list of possible interpretations, and our architect either picks one or proposes a better alternative. The output is a specification so unambiguous that whatever writes the code has no room for doubt.</p><p>It&apos;s slower to start than vibe coding. The PRD takes time. The spec takes time. The back-and-forth with the architect takes time. But once the foundation is in place, the AI moves fast, and the code that comes out is something we can actually deploy to paying customers.</p><h2 id="the-wave-is-already-hitting-small-businesses">The Wave Is Already Hitting Small Businesses</h2><p>The other phone call I had recently was with a dentist. Not my dentist, a customer of ours. He owns two dental practices, but between them they do the patient volume of five, because he&apos;s automated most of the usual admin away. His whole thing is business efficiency through technology.</p><p>And he&apos;d hit the same problem as the refurb guy. He wanted a single piece of software that did exactly what his practices needed. The only off-the-shelf answer was to stitch together four or five different subscriptions.</p><p>So instead, he built the thing himself. A CRM with lead tracking and marketing. A finance dashboard that integrates with Dentally. A built-in learning management system. All in one platform, running production-quality code. He isn&apos;t doing it solo. He hired a developer with about ten years of experience who&apos;s now all-in with AI coding. Together they wrote the documentation first, then fed it into Claude Code. Eight weeks later, they&apos;ve got a working prototype, and he&apos;s planning to launch it as a SaaS to other dental practices.</p><p>This isn&apos;t a one-off. Right now at We UC, we&apos;ve got three open integration requests from customers who&apos;ve either built their own custom CRM from scratch or are in the middle of doing it. Three, just from our own customer base. People who, a few years ago, would never have imagined themselves building software at all.</p><p>This is the thing I want small business owners and founders to understand. It&apos;s happening everywhere, behind the scenes, inside ordinary SMBs. Every one of those founders is going to run straight into the vibe-versus-professional line at some point. Usually the moment they sign up real customers, or something breaks under load, or they need to add a feature the prototype can&apos;t support.</p><h2 id="where-this-fits-in-the-bigger-picture">Where This Fits in the Bigger Picture</h2><p>There&apos;s a useful framework from Dan Shapiro that maps this territory. He describes five levels of AI coding, running from &quot;spicy autocomplete&quot; at level zero to what he calls the &quot;dark factory&quot; at level five, where software is generated fully autonomously from specifications with no human in the writing loop. A company called StrongDM claims to be operating at level five already. They only hire developers who don&apos;t write code.</p><p>Most dev teams I talk to are sitting at level zero or one without realising it. Most vibe coders, meanwhile, are actually operating somewhere around level four, writing specifications in plain English and directing the AI without ever touching the code. The gap isn&apos;t the level of autonomy. The gap is engineering discipline.</p><h2 id="know-which-side-you-need-to-be-on">Know Which Side You Need to Be On</h2><p>I&apos;m not anti-vibe-coding. I vibe code things on the side for fun. I love it. It&apos;s a genuinely useful skill for prototypes, internal tools and low-stakes builds.</p><p>But if your business is shipping software to real customers, or holding data that matters, or running on the assumption that more users will join next month, vibe coding alone will eventually bite you. The foundation simply isn&apos;t built for the weight you&apos;re going to put on it.</p><p>The businesses that win with AI coding over the next few years will be the ones that recognise this line early, and plan the transition from vibe coding to professional AI coding before it&apos;s forced on them by an outage or a security incident. That transition is exactly what we&apos;re working through at We UC, piece by piece, starting with the analytics module.</p><p>Vibe coding is for prototypes. Professional AI coding is for production.</p><p>The line is almost invisible right now. The founders who learn to see it will ship better software, for longer.</p><p>Be one of them.</p><hr><p>The video version of this drops on YouTube tomorrow. Same content, different format. If you&apos;re not subscribed to the channel already, that&apos;s where to find it: <a href="https://www.youtube.com/@axelmolist?ref=axelmolist.com">youtube.com/@axelmolist</a>.</p><p>If running a business through the AI transition is on your plate, I also wrote The CEO Operating System, the framework I use to run multiple companies without burning out. It&apos;s free. <a href="https://axelmolist.com/ceo-os">axelmolist.com/ceo-os</a></p><p>Got thoughts, pushback, or a story of your own on this? Hit reply. I read every email.</p><p>Thanks,</p><p>Axel.</p>]]></content:encoded></item><item><title><![CDATA[What 6 Months of AI Coding Did to My Dev Team]]></title><description><![CDATA[Six months of AI coding inside a 20-person dev team, and what it means for anyone building software right now.]]></description><link>https://axelmolist.com/the-future-of-software-engineering-what-every-founder-needs-to-know/</link><guid isPermaLink="false">69e497d285883c00014edb9c</guid><category><![CDATA[Software]]></category><category><![CDATA[AI]]></category><category><![CDATA[Building]]></category><dc:creator><![CDATA[Axel Molist Cordina]]></dc:creator><pubDate>Sun, 19 Apr 2026 09:28:12 GMT</pubDate><media:content url="https://axelmolist.com/content/images/2026/04/IMG_4500.jpeg" medium="image"/><content:encoded><![CDATA[<img src="https://axelmolist.com/content/images/2026/04/IMG_4500.jpeg" alt="What 6 Months of AI Coding Did to My Dev Team"><p>If your business builds software - even a little - your dev team is changing faster than you realise. Not the people. The work itself.</p><figure class="kg-card kg-embed-card"><iframe width="200" height="113" src="https://www.youtube.com/embed/h0hdaHPKDdI?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen title="What 6 months of AI coding did to my dev team"></iframe></figure><p>I&apos;m running a 20-person team building We UC, our unified communications platform. And over the last six months, I&apos;ve watched something strange happen. The bottleneck in software development isn&apos;t where it used to be. It&apos;s moved.</p><p>And if you&apos;re hiring developers right now - or trying to figure out why your team isn&apos;t shipping faster despite using AI tools - you need to understand this shift.</p><p>This is not just for tech CEOs. If you have two developers and a Claude Code subscription, this applies to you. If you run a services business that hired a dev to build an internal tool, this applies to you. If you are a founder vibe-coding your own MVP in Replit, Lovable or Cursor, this applies to you. Anywhere software is being built, the shape of the work has moved.</p><h2 id="how-software-development-used-to-work">How Software Development Used to Work</h2><p>Here&apos;s how it worked when I started building We UC.</p><p>You hired developers to write code. You measured their output in lines committed, features shipped, story points closed. Code review was the quality gate. If it passed review, it shipped.</p><p>The craft was the code itself.</p><p>But now with We UC, something fundamental shifted. We started using AI coding tools - Claude Code primarily, with some of the team using Cursor. And the entire rhythm broke.</p><p>The code started arriving faster than we could process it. Therefore the job changed.</p><h2 id="the-question-that-started-everything">The Question That Started Everything</h2><p>Three months ago, one of my senior engineers came to me visibly frustrated. He&apos;d spent two days reviewing pull requests from a junior developer using Claude Code. Thousands of lines. Feature worked perfectly. Tests passed.</p><p>But he looked at me and said: &quot;I didn&apos;t actually read the code. I couldn&apos;t. There was too much of it. What&apos;s my job now?&quot;</p><p>That question landed. Because I&apos;d been feeling the same thing but couldn&apos;t name it.</p><p>Around the same time, I came across findings from a Thoughtworks retreat - senior engineering leaders from the biggest tech companies, brought together to figure out what happens when AI writes the code. They didn&apos;t leave with answers. They left with a map of fault lines. Places where traditional software development is cracking right now.</p><p>And reading through it felt like reading my own notes from building We UC.</p><h2 id="where-the-work-migrated">Where the Work Migrated</h2><p>Here&apos;s what nobody tells you about AI writing code: the engineering quality doesn&apos;t vanish. It just moves upstream.</p><p>Think about a normal user story: &quot;As a user, I want to upload a photo.&quot;</p><p>Your developers know what that means. JPEG, PNG, reasonable file size, progress bar. Cultural context fills in the gaps automatically.</p><p>But an AI doesn&apos;t have that context.</p><h3 id="the-50000-email-problem">The 50,000 Email Problem</h3><p>We learned this at We UC the hard way. One of our developers asked an agent to build a notification system. Simple request. The agent built it. Worked beautifully in testing.</p><p>Went to production. Started sending 50,000 emails in three minutes.</p><p>Because there was no rate limit in the specification.</p><p>The engineering rigour we used to apply after the code was written now has to happen before a single line exists.</p><p>We&apos;ve gone back to techniques that felt dead - structured requirements, state machines, decision tables. The kind of formal documentation agile was supposed to kill.</p><p>But here&apos;s the thing - that rigour makes the AI incredibly effective. When we feed an agent a state machine showing exactly what states are allowed and what transitions can happen, the code it generates is almost always correct.</p><p>The specification became the product. The code? Disposable.</p><blockquote><strong>The code died. The spec won.</strong><br><br><em>That is the shift. Everything else is a consequence of it.</em></blockquote><p>If we have a perfect test suite and decide to rewrite our backend from Python to Rust, we just feed the tests to an agent and say: make these pass.</p><p>This is a complete inversion of how software used to be built.</p><h2 id="the-layer-nobody-named-yet">The Layer Nobody Named Yet</h2><p>There&apos;s a layer of work emerging in my team that doesn&apos;t have a name yet. It sits between writing code and shipping to production.</p><p>I call it supervisory work.</p><p>Breaking problems into agent-sized chunks. Knowing when to let the agent run and when to step in. Fixing output not by rewriting code but by adjusting the prompt or the constraints.</p><p>And here&apos;s what surprised me. My team split into two groups.</p><p><strong>Group one: the seniors who understand the whole system.</strong> They&apos;re drowning. The juniors and agents generate code at 10x speed, but code doesn&apos;t ship itself. It needs architectural review. It needs to fit legacy systems. It needs to be unblocked. My senior engineers became traffic controllers, too busy reviewing AI output to actually build anything themselves.</p><p><strong>Group two: the juniors who just started.</strong> They&apos;re thriving. No muscle memory telling them to write code a certain way. They treat the AI as a teammate, not a threat to their identity.</p><p>And the net-negative phase is gone. We used to hire a junior and they&apos;d drain productivity for six months whilst learning where everything is. Now? A junior with Claude Code ships useful code in week one.</p><h3 id="the-danger-zone-mid-level-engineers">The Danger Zone: Mid-Level Engineers</h3><p>But there&apos;s a danger zone nobody&apos;s talking about. The mid-level engineers. Three to five years of experience. Just enough skill to be set in their ways. Not enough to be true architects.</p><p>Retraining them - teaching them to supervise agents instead of writing syntax - that&apos;s the hardest organisational challenge we&apos;re facing as a company.</p><p>So here&apos;s what I&apos;m learning as a CEO hiring developers. The job description just changed. If you&apos;re looking for people who write code fast, you&apos;re hiring for the wrong skill.</p><p>You need people who can architect systems, write unambiguous specifications, and supervise non-deterministic agents. That&apos;s a completely different person.</p><h2 id="what-breaks-the-tribal-knowledge-problem">What Breaks: The Tribal Knowledge Problem</h2><p>Last month, our server went down at 2am. Error code 503: Service unavailable.</p><p>On-call engineer - sharp, capable - asked an AI assistant for help. AI read the documentation. Said: restart the server.</p><p>He did. Crashed again five minutes later. Restarted. Crashed. Restarted. Crashed.</p><p>By the time he escalated to me, we&apos;d restarted the server six times.</p><p>I looked at the logs for 30 seconds and knew exactly what it was. Database connection pool was full because a marketing batch job was running.</p><p>That&apos;s not documented anywhere. It&apos;s tribal knowledge. Lived experience.</p><p>An AI doesn&apos;t have that. It sees 503, reads the manual, restarts the server. Over and over.</p><p>This is why all the hype about &quot;self-healing systems&quot; is rubbish right now. To make an agent effective during an outage, you need to build what the Thoughtworks retreat called an &quot;agent subconscious&quot; - a knowledge graph of every incident, every weird edge case, every bit of undocumented institutional knowledge that lives in your senior engineers&apos; heads.</p><p>We&apos;re starting to build that at We UC. Every time something breaks, we document not just what happened but why someone with experience would know what to do.</p><h3 id="the-yes-man-problem">The Yes-Man Problem</h3><p>But there&apos;s another problem. AI agents are trained to be helpful. They&apos;re yes-men.</p><p>During an incident, you don&apos;t want a yes-man. You want someone to challenge your assumptions. One engineer at the Thoughtworks retreat suggested we need &quot;angry agents&quot; - specifically prompted to poke holes in your theory. Because otherwise the human and the agent will just agree with each other whilst the server burns.</p><p>Here&apos;s the point. If your business is betting on AI to make your software team faster, you need the prerequisites first.</p><p>Documentation that actually captures how things work. Seniors who can architect, not just code. And a system for preserving institutional knowledge before the AI makes everyone forget how things actually work.</p><h2 id="the-graphics-card-analogy">The Graphics Card Analogy</h2><p>So here&apos;s what I&apos;ve learned running a dev team in the age of AI agents. The work isn&apos;t disappearing. It&apos;s moving from execution to supervision.</p><p>Think about graphics programming in 1992. Engineers hand-coded the maths to draw a single polygon on the screen. Calculating exact pixel positions. By 1994, the GPU arrived. Hardware did the polygons.</p><p>If you insisted on hand-coding polygons in 1995, you weren&apos;t a specialist. You were obsolete.</p><p>The engineers who survived became lighting engineers, animators, physics programmers. They weren&apos;t telling the computer how to draw a triangle. They were telling it how light reflects off a wet street.</p><p>Nobody hand-codes polygons anymore. We all work in game engines.</p><p>Software engineering is hitting that exact moment right now.</p><h2 id="what-to-look-for-when-hiring">What to Look for When Hiring</h2><p>So if you&apos;re hiring developers, here&apos;s what to look for. Not coding skills. Architectural thinking. Judgement under uncertainty.</p><p>Can they write a specification tight enough that an AI can&apos;t misinterpret it?</p><p>Can they design a test suite that catches hallucinations before production?</p><p>Can they debug a system they didn&apos;t personally write?</p><p>At We UC, that&apos;s what we hire for now.</p><h2 id="the-cognitive-debt-problem">The Cognitive Debt Problem</h2><p>And here&apos;s what keeps me up at night. For decades, code review wasn&apos;t just about catching bugs. It was how developers learned the system. If agents write all the code and your team stops reading it, they become strangers in their own codebase.</p><p>When something breaks at 3am, they&apos;re staring at code written by a machine, trying to reverse-engineer the logic whilst your customers are screaming.</p><p>We&apos;re building tools for what we call continuous comprehension. AI that summarises architectural changes. Weekly sessions where the team architects together even though agents write the code.</p><p>Because you have to schedule time to understand your own software now. It won&apos;t happen naturally anymore. The speed of AI demands it.</p><h2 id="what-this-means-if-software-is-built-anywhere-in-your-business">What This Means If Software Is Built Anywhere in Your Business</h2><p>So look, if software is being built anywhere in your business - or you are thinking about starting - the ground is shifting.</p><p>Your seniors are drowning in review. Your juniors are thriving with AI. Your mid-levels don&apos;t know which way to jump.</p><p>The companies that win will be the ones that see this shift coming and retrain before it&apos;s too late.</p><p>I&apos;m not pretending I have all the answers. We&apos;re figuring this out in real time at We UC. Making mistakes. Adjusting. Learning what works and what doesn&apos;t when you&apos;re leading a dev team through this transition.</p><p>But one thing is clear: the best founders I know aren&apos;t panicking. They&apos;re adapting.</p><p>Be one of them.</p><hr><p>If running a business through the AI transition is on your plate, I wrote The CEO Operating System - the framework I use to run multiple companies without burning out. It is free. <a href="https://axelmolist.com/ceo-os">axelmolist.com/ceo-os</a></p>]]></content:encoded></item><item><title><![CDATA[The Principles That Guide Me in Business and Life]]></title><description><![CDATA[My guiding principles I use for business and life.]]></description><link>https://axelmolist.com/the-principles-that-guide-me-in-business-and-life/</link><guid isPermaLink="false">69d2af4585883c00014edb37</guid><category><![CDATA[Founder Philosophy]]></category><category><![CDATA[Business]]></category><category><![CDATA[Principles]]></category><category><![CDATA[Reflection]]></category><dc:creator><![CDATA[Axel Molist Cordina]]></dc:creator><pubDate>Sun, 05 Apr 2026 19:08:50 GMT</pubDate><media:content url="https://axelmolist.com/content/images/2026/04/IMG_2615.jpg" medium="image"/><content:encoded><![CDATA[<img src="https://axelmolist.com/content/images/2026/04/IMG_2615.jpg" alt="The Principles That Guide Me in Business and Life"><p>I am in Spain right now, spending a few days with the family. And when I get time like this - away from the day-to-day, away from the noise - I tend to reflect.</p><p>I thought I would put together a list of my fundamentals. The guiding principles I use for business and life in general. Not because I have it all figured out. I definitely do not. But because I think there is value in hearing how other people think about these things. Maybe some of it resonates. Maybe it helps you put into words something you already felt but had not formalised yet.</p><figure class="kg-card kg-embed-card"><iframe width="200" height="113" src="https://www.youtube.com/embed/dT6BQrUz0Oc?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen title="25 life and business principles I live by"></iframe></figure><p>A bit of context if this is your first time here. My name is Axel Molist Cordina. I am originally from Spain, and I have been living in the UK since 2008. I founded a telecoms services company called circle.cloud - built it from scratch to about 140 people - and I now run a telecoms software company called We UC, which we are in the process of launching as a SaaS product. So I have been building for over a decade. Everything I am about to share comes from that experience.</p><p>These principles are not for everyone. They are what works for me. But if the rationale behind any of them feels right, then perhaps they will be useful for you too.</p><h2 id="1-love-what-you-do">1. Love What You Do</h2><p>This is the foundation for everything else.</p><p>I genuinely believe the only way to do great work is to love what you do. Building something - a company, a product, anything worthwhile - is incredibly hard. There are countless moments where a rational person would simply walk away.</p><p>The only people who push through are the ones who actually love the work itself. Not the money. Not the status. The work.</p><p>Steve Jobs put it well in his 2005 Stanford commencement speech: &quot;The only way to do great work is to love what you do.&quot; He also said that only the people crazy enough to think they can change the world are the ones who actually do. I think he was right. You have to be obsessive. You have to love it.</p><p>And if you do great work, money follows. Not immediately. Not always on your timeline. But it follows. The mistake is chasing money first and hoping quality comes later. It does not work that way.</p><h2 id="2-keep-your-word">2. Keep Your Word</h2><p>There is a line from Scarface that has always stuck with me: &quot;All I have in this world is my balls and my word, and I don&apos;t break &apos;em for no one.&quot; It resonated because there is genuine truth in it.</p><p>You have to keep your word. If you say you are going to do something, do it. It does not matter how small the commitment seems. If you said you would call on Tuesday, call on Tuesday. People remember when you follow through. And they remember even more clearly when you do not.</p><p>I stay true to my word. Always. It is not negotiable. Your reputation is built one kept promise at a time.</p><h2 id="3-do-the-right-thing">3. Do the Right Thing</h2><p>This one sounds obvious until the moment arrives when the right thing is also the harder thing. The slower thing. The less profitable thing in the short term.</p><p>I have watched people cut corners because they could see a quick win. But that quick win sometimes meant hurting someone, or doing something ethically grey, or going down a path that bypassed lessons they actually needed to learn.</p><p>Do not take the shortcut. Even if doing the right thing takes three times longer to get you where you are going, you will arrive with your integrity intact. And that matters more than speed.</p><h2 id="4-be-patient-but-relentlessly-persistent">4. Be Patient but Relentlessly Persistent</h2><p>There is an old saying that a woodpecker does not peck a thousand trees once - it pecks one tree a thousand times and gets dinner. I love that because it is exactly how building a business works. You pick a thing. You commit to it. And you keep going.</p><p>Most things take longer than you expect. That is fine. The people who stay the course - who do not jump to the next idea every time things get hard - are the ones who eventually break through.</p><h2 id="5-ask-for-the-order">5. Ask for the Order</h2><p>Do not be shy. Ask for what you want.</p><p>I have lost deals simply because I did not ask for the order. I was waiting for the customer to say yes. They did not. Sales is not just about building relationships. At some point you have to say, &quot;Let&apos;s do this.&quot; That is it. Assume you have the order. That is the part most salespeople avoid.</p><p>It is the same outside of sales. If you want something - a meeting, a favour, an introduction - ask. If you do not ask, you do not get. It really is that simple.</p><h2 id="6-mueve-el-culo-move-your-arse">6. Mueve el Culo (Move Your Arse)</h2><p>This one is related but different. Do not wait for things to come to you.</p><p>Some companies build their entire model on referrals and word of mouth. That is fine. But I believe you also need to go and get the business. Pick up the phone. Show up. Speak to people. Meet new people. Move. Be proactive.</p><p>The phone is not going to ring itself. And opportunities do not land on your lap. You have to go out and create them.</p><h2 id="7-set-unrealistic-deadlines">7. Set Unrealistic Deadlines</h2><p>I set myself deadlines for everything, and I make them optimistic on purpose.</p><p>When you give yourself a tight amount of time, you fill that time with focused work. Give yourself two weeks, it takes two weeks. Give yourself five days, you find a way. That is Parkinson&apos;s Law in action.</p><p>Many of my projects have overrun their original timeline. That is fine. The deadline is not there to punish me. It is there to create urgency. Without a deadline, things drift. And drifting is what kills most projects.</p><h2 id="8-think-ten-x">8. Think Ten X</h2><p>However big you are thinking, think bigger.</p><p>Whenever I come up with a goal or an idea, I ask myself: can we do ten times this? Can we make it bigger, better, bolder? That does not mean every idea needs to be massive. It means you should test the ceiling before accepting the floor.</p><p>Most people set goals based on what feels safe. Safe goals produce safe results. Push the number. You can always scale back. If the idea does not scare you a little, you are probably not pushing far enough.</p><h2 id="9-get-out-of-your-comfort-zone">9. Get Out of Your Comfort Zone</h2><p>Your comfort zone is your limiting zone.</p><p>Every significant thing I have done - the first cold call, hiring my first employee, stepping back from the company I built, making videos like this one - felt uncomfortable at the time. That discomfort was not a warning. It was a signal that it mattered.</p><p>If you are not regularly doing things that make you uncomfortable, you are not growing. It is that simple. Push yourself out of the comfortable space. That is where progress lives.</p><h2 id="10-action-trumps-inaction">10. Action Trumps Inaction</h2><p>Move. Act. Stop thinking about it.</p><p>Overthinking kills more progress than bad decisions ever will. There is a real cost to inaction. A wrong decision gives you information - you learn, you correct, you move forward. No decision gives you nothing. You are just stuck.</p><p>I would rather make a move and get it wrong than sit and analyse until the moment passes. If you got it wrong, you will figure it out. But you have to move first.</p><h2 id="11-follow-your-gut">11. Follow Your Gut</h2><p>They say your gut is your second brain. There is real science behind it - neurons exist in your gut, and that is what people call the &quot;gut feeling.&quot;</p><p>I think it is how you connect your conscious mind to your subconscious. In so many decisions I have made in business and life, I have made them when the decision felt right - not when the spreadsheet told me to act.</p><p>Our brains are far more powerful than we give them credit for. I believe your gut is your gateway to that deeper level of intelligence. Your intuition. I trust my gut on every major decision, and so far it has served me well.</p><h2 id="12-dont-trust-no-one">12. Don&apos;t Trust No One</h2><p>My father always told me something his mother used to say.</p><p>&quot;No et fiis ni de la teva mare.&quot; That is Catalan. It means &quot;do not trust even your mother.&quot;</p><p>It sounds extreme - and it is extreme - but the principle behind it is sound. Be careful with people. Especially when money is involved. I have seen people do surprising things when the stakes are high. People I thought were solid.</p><p>Trust with limits. Do not trust anyone entirely.</p><h2 id="13-hire-based-on-attitude">13. Hire Based on Attitude</h2><p>When hiring, attitude beats skills. Every time.</p><p>Skills can be taught. You can teach someone a system, a tool, a process. But attitude - which is based on their perspective on life - determines how they show up, how they handle pressure, whether they actually care. All of that is rooted in how they see the world. And you cannot teach that. It is who they are.</p><p>I have learned this the hard way. I have hired people with incredible CVs who simply did not have the right attitude. And I have hired people with very little experience who turned out to be brilliant because they genuinely wanted to learn and improve.</p><p>Find people who care. Teach them the rest.</p><h2 id="14-learn-to-delegate">14. Learn to Delegate</h2><p>This one is hard. Genuinely hard.</p><p>I founded circle.cloud. Built it from nothing. Did the telemarketing, the sales, the installations, the billing, the support - all of it. But in order to grow the business, I had to step back. I hired an operations manager, an engineering manager, a sales manager, and eventually a board of directors and a CEO. I moved to chairman. The business operates without me day to day now.</p><p>For a founder, letting go feels like losing control. But it is the opposite. It is gaining freedom.</p><p>And I believe your leadership team needs to be genuinely invested. The only way I have found to make the key people in your business feel like owners is through equity. Give them a minority stake. Something that aligns their incentives with the long-term success of the business, not just a salary. Never give away control. But give them something to care about.</p><h2 id="15-empathy-is-your-superpower">15. Empathy Is Your Superpower</h2><p>This one is underrated.</p><p>Being able to see things from someone else&apos;s perspective - understanding how they actually feel in a situation, not how you think they should feel - gives you a genuine edge. It changes how you lead, how you sell, how you handle conflict. Everything.</p><p>Most people listen to respond. Very few people listen to understand. There is a massive difference.</p><h2 id="16-make-time-to-think">16. Make Time to Think</h2><p>I have a policy: no meetings before 11 AM, unless completely necessary.</p><p>The morning is when my brain is sharpest. That is when I think, plan, and work on the hardest problems. Most people fill their mornings with meetings and emails - other people&apos;s agendas - and by lunchtime they have spent their best cognitive hours on things that could have waited.</p><p>I use my mornings to putter. To think about business direction, company structure, whatever the biggest challenges are. Sometimes I do not produce anything visible. But that thinking compounds over time.</p><p>Spend time alone. Ruminate. Let your mind work through the hard problems before the day takes over.</p><h2 id="17-one-thing-at-a-time">17. One Thing at a Time</h2><p>When your to-do list is a mile long and everything feels urgent, the worst thing you can do is try to deal with it all at once.</p><p>One thing at a time. Give your full attention to the thing in front of you. Finish it, or get it to a point where you can move on, and then - and only then - shift to the next thing.</p><p>This is not about productivity. It is about preventing overwhelm. When you try to hold ten problems in your head at once, your stress rises and your output drops. Deal with one. Then the next. It sounds too simple to work, but it does.</p><h2 id="18-focus-on-the-signal">18. Focus on the Signal</h2><p>Every day there is noise. Emails, messages, requests, small fires. Most of it does not matter.</p><p>The signal is the one or two things that actually move you forward. Everything else is noise. And the hard part is not ignoring the things you do not want to do - it is ignoring the things you do want to do.</p><p>There is a story about Steve Jobs. Jony Ive said Steve used to ask him how many things he had said no to. And when Jony listed a few, Steve was not impressed, because Jony did not want to do those things anyway. That is not focus. Focus is saying no to the things you want to do with every fibre of your body - because the signal matters more.</p><p>Increase the signal-to-noise ratio. Say no to everything that is not the main thing. And do the main thing until it is done.</p><h2 id="19-the-8020-rule">19. The 80/20 Rule</h2><p>When deciding what to work on, do the work that will produce the majority of the results first.</p><p>That is the Pareto Principle - roughly 80% of your results come from 20% of your effort. So when prioritising, ask yourself: what is the thing that will get me the biggest result in the least amount of time?</p><p>Start there. Because that early progress gives you momentum. It gives you a feeling of accomplishment that you can carry forward - either onto the next task or to keep pushing on the one you are on.</p><p>Most people spread their effort evenly across everything. Do not. Find the 20% that produces 80% of the output. Hit that first. Then reassess.</p><h2 id="20-prioritise-sleep">20. Prioritise Sleep</h2><p>I think sleep is the most underrated performance tool there is.</p><p>I aim for seven and a half hours every night. I do not always hit it, but I know the difference it makes. Everything deteriorates when you are under-slept. Your decisions, your mood, your patience, your clarity, your ability to handle stress. Everything.</p><p>And the data supports it. Sleep deprivation has been shown to impair cognitive function to the same degree as having a few drinks. That is not a small thing.</p><p>I have learned to treat sleep as infrastructure. Not a reward for finishing work. Not something to sacrifice to get more done. It is the thing that makes everything else possible.</p><h2 id="21-eat-well">21. Eat Well</h2><p>This one is straightforward. Eat good food. Cut out the processed stuff. Do not overeat - that is one I still struggle with.</p><p>And do not eat within four hours of bed. That has been massive for me. Eating late wrecks sleep quality, and then everything cascades from there.</p><p>I am not extreme about diet. I do not follow any particular plan. I just try to eat real food, eat reasonable amounts, and give my body time to digest before sleeping. It is simple, but the impact on how I feel day to day has been enormous.</p><h2 id="22-train-every-day">22. Train Every Day</h2><p>I try to train at least five days per week. Weights. Ideally I would do something every single day, even if it is just a lighter session.</p><p>I am not perfect at this. Travel disrupts my routine. Bad sleep undermines my motivation. But I am working on making it non-negotiable. Because when I am consistent with training, everything else improves - my energy, my focus, my resilience, my mood and my sleep.</p><p>Your body is the engine for everything else. If the engine is not looked after, nothing else runs properly.</p><h2 id="23-ditch-the-alcohol-trap">23. Ditch the Alcohol Trap</h2><p>Alcohol is a trap. And I say that from experience.</p><p>A few years ago I read a book called This Naked Mind and it made me think about something simple. We were all happy as kids. No alcohol. Perfectly content. So why do we believe we need it as adults? We do not. We are habituated to it.</p><p>I stopped drinking for over a year. I felt amazing. Then on holiday, my wife suggested I have a beer. And I thought, well, I will just have one. Within a few months I was back to drinking almost daily.</p><p>January of this year I stopped again. Currently just over two months in. I feel great. No plans to go back.</p><p>Not drinking has improved my sleep, my clarity, my productivity, my mood - everything. If there is one thing on this list that has made the biggest difference for me recently, it is probably this one.</p><h2 id="24-practise-gratitude">24. Practise Gratitude</h2><p>I have a lot already. More than I sometimes realise. More than I ever imagined as a kid. And I take it for granted more than I should.</p><p>But when I actually stop and remind myself of what I have - where I am, who I am with, what I have built - I feel genuinely happy. Not in a forced way. In a real way.</p><p>It is easy to always be chasing the next thing. Gratitude is the counterbalance. It is what stops ambition from becoming a treadmill.</p><h2 id="25-embrace-being-different-and-stop-caring-what-others-think">25. Embrace Being Different and Stop Caring What Others Think</h2><p>Last one.</p><p>Everyone is different. Embrace what makes you different. There is nobody out there like you, or like me. Which makes it pointless to compare your life to someone else&apos;s.</p><p>I think we have fallen into this trap because of social media. We see other people&apos;s highlight reels and believe we are falling behind. But you are not behind. You are on your own path.</p><p>And the freedom that comes with genuinely accepting this is enormous. Stop caring so much about what other people think. We are only here for a short amount of time. Everyone is busy with their own lives. They are not thinking about you anywhere near as much as you imagine.</p><p>I used to care a lot more than I do now. And that freedom has changed how I make decisions, how I work, and how I live.</p><hr><h2 id="final-thought">Final Thought</h2><p>Those are my guiding principles. Twenty-five things I come back to, especially when I need to make a decision or when things get complicated.</p><p>I am not perfect at all of them. Some I have followed for years. Some I am still working on. But having them clear in my head helps. And I hope putting them into words helps someone else too.</p><p>If you want to go deeper into how I structure my days and my decision-making, I have put together something called the CEO Operating System. You can find it at <a href="https://axelmolist.com/ceo-os">axelmolist.com/ceo-os</a>.</p>]]></content:encoded></item><item><title><![CDATA[Five Things I Learned at the Cavell Summit Europe]]></title><description><![CDATA[Sovereignty, voice AI, and where the telecoms industry is heading]]></description><link>https://axelmolist.com/five-things-i-learned-at-the-cavell-summit-europe/</link><guid isPermaLink="false">69c9214185883c00014edaca</guid><category><![CDATA[Telecoms]]></category><category><![CDATA[AI]]></category><category><![CDATA[Business]]></category><category><![CDATA[Technology]]></category><category><![CDATA[Voice AI]]></category><category><![CDATA[Sovereignty]]></category><dc:creator><![CDATA[Axel Molist Cordina]]></dc:creator><pubDate>Sun, 29 Mar 2026 14:08:41 GMT</pubDate><media:content url="https://axelmolist.com/content/images/2026/03/cavell-presentation.jpg" medium="image"/><content:encoded><![CDATA[<img src="https://axelmolist.com/content/images/2026/03/cavell-presentation.jpg" alt="Five Things I Learned at the Cavell Summit Europe"><p>Last week I attended the Cavell Summit Europe in central London - a one-day conference that brings together the major telecoms providers, carriers, and product builders across the UK and Europe. The room was full of founders, CEOs, and market analysts. The day was packed with talks, panel discussions, and live audience polling.</p><figure class="kg-card kg-embed-card"><iframe width="200" height="113" src="https://www.youtube.com/embed/t-kg1SU9Z1I?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen title="The state of telecoms &amp; AI in 2026 from Cavell Summit Europe"></iframe></figure><p>I went in expecting a conversation about the state of the telecoms industry. I came out thinking about something much bigger. Five themes kept surfacing throughout the day - and they tell you a lot about where this industry is heading.</p><h2 id="1-data-sovereignty-is-no-longer-optional">1. Data Sovereignty is No Longer Optional</h2><p>Sovereignty was one of the headline topics of the conference, and rightly so.</p><p>The concept is straightforward: data should stay within the country or region it originates from. But in practice, particularly in telecoms, it gets complicated quickly.</p><p>If you are running a voice service and your session border controllers sit in the public cloud - Amazon Web Services in the US, for example - it is entirely possible that a phone call made by your customer in London traverses the Atlantic before coming back. The call itself may be encrypted, so eavesdropping is unlikely. But the moment you introduce AI into the equation - transcription, call analysis, sentiment scoring - the data starts moving. A call recording might be sent to OpenAI for transcription. That transcription might then be processed by another service for analysis. Each hop is a potential sovereignty issue.</p><p>And the risk is not just theoretical. A US-based AI provider could receive a subpoena from the Department of Justice, and suddenly the contents of a business phone call are in the public domain. That is not a far-fetched scenario - it is a legal reality of hosting data in another jurisdiction.</p><p>The large carriers are responding by establishing physical data centres in every country they operate in. They guarantee to customers that their data does not leave that geography. When it does, the customer is told explicitly. Google announced a partnership with Mistral, a French AI company, to deliver a sovereign AI product for the European market. If a company the size of Google is partnering with a French company specifically to address European sovereignty concerns, something significant is happening. There is regulation being implemented over the coming months that will make this even more prominent.</p><p>For anyone running voice services to businesses - enterprise or SME - the question &quot;where does my data go?&quot; is no longer theoretical. Customers are asking it. They understand enough about the cloud to know that &quot;the cloud&quot; is not one place. They want specifics. And they are right to ask.</p><p>We self-host our infrastructure at We UC. Our servers sit in the UK. We run data centres in London and on the South Coast, and we even run our own AI service on our own infrastructure. All the call recording transcription, analysis, and summarisation happens locally. You do not need the most powerful models in the world to do transcription and summarisation - that is a common misnomer. We have managed to do this on our own infrastructure, keeping all data within the UK. It is one of the decisions we made early on, and watching this conversation unfold at the conference reinforced that it was the right one.</p><h2 id="2-ai-is-not-a-featureit-is-the-new-electricity">2. AI is Not a Feature - It is the New Electricity</h2><p>There was a lot of talk at the conference about how AI is going to disrupt the workplace. How AI will impact telecoms. How businesses should plan for AI.</p><p>It struck me that the conversation is framed incorrectly.</p><p>AI is not a feature you bolt on. It is not a module you activate. It is closer to electricity - so fundamental, so omnipresent, that discussing &quot;how electricity will impact our business&quot; would sound absurd. Yet that is essentially how parts of the telecoms industry are still treating AI. As something new. Something to plan for. Something to discuss at conferences.</p><p>The reality is that AI has already changed how most knowledge workers operate. It has already rewritten the economics of software development, customer service, content production, and data analysis. Treating it as an upcoming disruption misses the point. It is the new baseline.</p><p>I think this reflects a divide that has been growing for years - between traditional telecoms companies and modern software companies.</p><p>Traditional telecoms providers are, by nature, infrastructure businesses. They operate on BSS and OSS systems that were built decades ago. Their software development practices prioritise stability and basic functionality over innovation. The interfaces are over-complicated. The architecture is legacy. The appetite for rapid change is low - not because the people are not smart, but because the systems and culture were built for a different era.</p><p>On the other side, you have companies like ElevenLabs. Born in the modern era. Running on Kubernetes. Advanced CI/CD workflows. AI woven into every part of how they build and ship. They care about design, about user experience, about craft. They do not have twenty years of technical debt weighing them down. They move at a completely different speed.</p><p>The telecoms industry is full of companies operating like it is still 2010. Meanwhile, modern software companies are building products that interact with the same customers, solve the same problems, and move ten times faster. That creates a gap - and it is widening.</p><h2 id="3-voice-ai-was-the-real-story">3. Voice AI Was the Real Story</h2><p>The conference organisers positioned sovereignty as the main theme. And it was well covered. But the topic the audience actually wanted to discuss - overwhelmingly, based on a live poll at the start of the day - was voice AI.</p><p>It is not hard to see why.</p><p>One of the demonstrations came from Bandwidth, an international carrier with a strong presence in Europe. They partnered with a hotel chain and implemented a voice AI solution that handles the front desk. Guest calls about room service orders, booking modifications, general enquiries - all handled by AI with access to the hotel&apos;s booking system. The problem it solved was simple: during busy periods, the hotel did not have enough staff to answer every call. Guests were left waiting. With voice AI, the constraint disappears. You can have thousands of agents handling calls simultaneously, freeing human staff to focus on face-to-face interactions.</p><p>Another example: a restaurant chain facing the same problem. At peak hours, waiters cannot answer the phone. Customers calling to book a table, modify a reservation, or ask about the menu are left on hold or unanswered. A voice AI solution with access to the restaurant&apos;s systems solves this immediately.</p><p>These are not theoretical use cases. They are live deployments.</p><p>The interesting tension in this space is between two camps. On one side, tech startups are building voice AI solutions rapidly but often know nothing about telecoms. They do not understand session border controllers, call switches, or quality of service at the network level. They route calls through an API to something like Twilio so they can make and receive phone calls, and they ship the product. They know the customer. They win the deal. But the quality of service cannot be as good as if they owned the whole stack. If these startups understood how a soft switch works, how to route calls on-premise, how to run phone calls at scale on their own network - the call quality would be better, the troubleshooting faster, and the whole thing cheaper and more stable long-term.</p><p>On the other side, traditional telecoms providers understand the infrastructure deeply but are too slow to build these solutions themselves. They provide the telecom services but not the value-added solutions on top. Meanwhile, the startups are putting voice AI products in front of the telco solution and extracting margin from providers who should be delivering it themselves.</p><p>There is a gap between the two. And I believe We UC sits in that gap. We have the software skills and the pace of a modern company. We also have the telecoms experience - the soft switch experience, the network we are running ourselves. We are positioned at the intersection of a modern software company and a traditional telco. That middle ground is where the opportunity is. It is also where we are building Ringup, our voice AI product that will be built directly into We UC.</p><h2 id="4-voice-is-going-to-zero">4. Voice is Going to Zero</h2><p>A recurring message at the conference: the traditional telephony pricing model is dying.</p><p>The argument is straightforward. Services like WhatsApp have normalised free communication. A WhatsApp call costs nothing because it does not touch the public telephone network - both endpoints are controlled by the same company within a closed environment. But that creates a perception that all voice communication should be free. The ten or fifteen pounds per user per month model, with bundled minutes and a standard feature set, is gradually losing its value.</p><p>Businesses still have phone numbers. That is still the universal method for communicating with businesses through voice. But the pricing pressure is real.</p><p>So how do telecoms companies remain profitable?</p><p>The answer that emerged clearly from the conference: value-added services.</p><p>What does that mean in practice? Three things stood out.</p><p>First, data analytics and reporting. Connecting a customer&apos;s CRM, financial system, and phone platform so that data appears in one place - dashboards and scheduled reports that cover not just call activity but business performance.</p><p>Second, voice AI. Tools like Ringup, which we are building into We UC, that give businesses the ability to implement AI agents within their phone system. Not just agents that answer calls and take voicemails, but agents that can perform actions - booking appointments, modifying reservations, updating records - because they plug into the CRM integrations already in place.</p><p>Third, integrations themselves. Most businesses run a CRM or a financial system or some kind of platform to manage their operations. Integrating into these platforms allows a productivity boost, an efficiency boost, and allows customers to do their best work by having access to the best technology for their business.</p><p>The core voice licence becomes the entry point. The real margin lives in the solutions built on top of it.</p><p>For anyone building in the telecoms space, the message was clear: the commodity is the phone line. The value is everything you build around it.</p><h2 id="5-specialisation-is-the-only-way-to-stand-out">5. Specialisation is the Only Way to Stand Out</h2><p>The final theme that stayed with me is about focus.</p><p>We are preparing to sell We UC as a software-as-a-service product. In a crowded market - and unified communications is a very crowded market - having a product that solves many problems for many people is not a differentiation strategy. It is a path to invisibility.</p><p>I remember a marketing brochure from about ten years ago, when &quot;cloud&quot; was the buzzword. The headline was: &quot;How do you stand out from the cloud?&quot; It was a clever line then. It is even more relevant now, because the market is noisier than it has ever been.</p><p>The approach we are evaluating is straightforward: specialise.</p><p>In order to stand out, you need to understand the customer and understand their workflow. You need to know how they operate day to day and know what problems they have so well that you can create a solution that removes friction - so they can solve those problems faster and better with your product. The only way to do that at scale is to specialise.</p><p>Either you verticalise - specialise in a particular industry and solve a problem that industry has, because you understand it deeply enough to solve it well. Or you specialise in a particular solution that applies across multiple industries, but you solve the problem within that solution extremely well.</p><p>We are evaluating both paths right now. But the principle is clear: in a noisy market, the businesses that succeed are the ones that are laser-focused on solving one problem better than anyone else. Not something generic. Not &quot;we do everything for everyone.&quot; Something specific for one specific type of customer - and being the best in the world at it.</p><p>That is what we are going to focus on with We UC. Once we have made the decision on which segment, every piece of marketing and every product decision will be shaped by it.</p><h2 id="what-i-took-away">What I Took Away</h2><p>The Cavell Summit condensed a lot of the themes I have been thinking about into a single day. Sovereignty is real and getting more urgent. AI is not a feature - it is the foundation. Voice AI is the most immediate disruption in telecoms. Traditional pricing models are eroding. And the only way to build something visible in a crowded market is to be specific about what you do and who you do it for.</p><p>None of these ideas exist in isolation. They overlap. The company that builds a communication platform with AI at its core, that handles data in a sovereign way, that is able to solve really specific problems better than anyone else, and that specialises in a particular vertical or solution - those are the companies that will win.</p><p>That is what we are building with We UC. And conferences like this one remind me that we are heading in the right direction.</p><hr><p><em>If you want my operating framework for running at full capacity as a founder and CEO, it is free at </em><a href="https://axelmolist.com/ceo-os"><em>axelmolist.com/ceo-os</em></a><em>.</em></p><hr>]]></content:encoded></item><item><title><![CDATA[The Battle You Never Fully Win]]></title><description><![CDATA[A lifelong journey with weight, dopamine, and the battle between short-term pleasure and long-term goals.]]></description><link>https://axelmolist.com/fat-thin-fat-journey/</link><guid isPermaLink="false">69bd75e685883c00014eda6e</guid><category><![CDATA[Dopamine]]></category><category><![CDATA[Fasting]]></category><category><![CDATA[Alcohol]]></category><category><![CDATA[Bodyweight]]></category><category><![CDATA[Gym]]></category><category><![CDATA[Fitness]]></category><dc:creator><![CDATA[Axel Molist Cordina]]></dc:creator><pubDate>Fri, 20 Mar 2026 16:59:28 GMT</pubDate><media:content url="https://axelmolist.com/content/images/2026/03/blog-thumbnail-1.jpg" medium="image"/><content:encoded><![CDATA[<img src="https://axelmolist.com/content/images/2026/03/blog-thumbnail-1.jpg" alt="The Battle You Never Fully Win"><p>I have been fat. I have been thin. I have been somewhere in between. And the honest truth is that I have never stayed in one place for very long.</p><figure class="kg-card kg-embed-card"><iframe width="200" height="113" src="https://www.youtube.com/embed/WkuNYVkErng?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen title="I Lost 43kg in 10 Weeks. Then Gained It All Back."></iframe></figure><p>My weight has fluctuated my entire life - from childhood through my twenties, through building a business, through a wedding, through fatherhood - and it continues to fluctuate now. I am not writing this because I have solved it. I am writing this because I have not.</p><h2 id="the-earliest-memory">The Earliest Memory</h2><p>The first time I remember being aware of my weight, I was about seven or eight years old. I did not feel fat. I only realised it when I compared myself to the other kids. Looking back, the explanation is straightforward: I was eating more than I was burning. That is always the explanation.</p><p>I do not believe genetics make weight loss impossible. Metabolism varies between people, and a smaller body burns fewer calories than a larger one - that is basic thermodynamics. But the principle is always the same. Calories in versus calories out.</p><p>The more interesting question is not why I was fat. It is why I was eating so much.</p><h2 id="food-as-dopamine">Food as Dopamine</h2><p>Food is a dopamine release mechanism. Everyone knows this on some level, but not everyone experiences it the same way. For me, food has always been connected to pleasure in a way that goes beyond hunger. It is comfort, reward, and ritual.</p><p>As a child, I think I was chasing that dopamine without understanding what it was. My mother used to hide the biscuits around the house because I would find them and eat them all. She hid the mayonnaise for the same reason. At the same time, she would tell me to finish everything on my plate - food should not go to waste. That combination of abundance and obligation likely planted something deep.</p><p>This is not blame. It is observation. If my own son had the same tendencies, I would try to intervene, but I am not sure I could prevent it either.</p><h2 id="the-obsessive-personality">The Obsessive Personality</h2><p>I recognise something about myself that connects all of this: I am obsessive. When something gets into my head, I cannot shift it until I have either completed it, learned everything about it, or experienced everything I can about it. I am all in or not in at all.</p><p>This trait has served me well in business. It is the same quality that allowed me to build circle.cloud from nothing, working eighteen-hour days because I knew exactly what needed to be done.</p><p>But with food and weight management, it is more of a liability than an asset. The same intensity that drives productive obsession also drives destructive patterns. The dopamine chase that makes me relentless at work is the same one that makes me eat twelve hundred calories at half past ten at night when I know I do not need them.</p><h2 id="the-alcohol-parallel">The Alcohol Parallel</h2><p>I stopped drinking alcohol a few months ago, and this is not the first time. A couple of years ago, I spent just over a year without drinking. It was a year of clarity - calm, collected, sharp thinking. I did not want or fancy alcohol in any form.</p><p>Then my wife suggested I have a beer with her at lunch on holiday. Just one. It would not hurt. And she was right - one beer did not hurt. But one beer became another, and another, and slowly I returned to the same patterns that made me want to stop in the first place.</p><p>Alcohol follows a predictable cycle. You have a drink and your mood lifts from baseline to somewhere above it. When the effect wears off, you do not return to where you started - you land slightly below baseline. So the next time you drink, you are starting from a lower point, and you need slightly more to reach the same feeling. Over time, the baseline keeps dropping.</p><p>I do not know anyone who has been drinking consistently for ten years and drinks the same amount today as they did at the start. The trajectory is always upward. Alcohol is a net negative to peace of mind, and I include it here because it operates on the exact same dopamine principle as food.</p><h2 id="the-timeline">The Timeline</h2><p>At fourteen, I decided I wanted to lose weight. I started skateboarding, running, swimming. I told my mother to give me less food. I made my own plates instead of having them served to me.</p><p>I remember walking downhill toward town one afternoon, probably around four o&apos;clock, having skipped lunch. I was so hungry I felt like my body was consuming itself. That feeling has stayed with me. Every time I lose weight now, I remember it, and I think: this hunger means my body is burning fat. This is progress.</p><p>The problem is that this state is not sustainable. You cannot restrict yourself severely and expect the result to hold. Heavy restriction leads to heavy compensation later.</p><p>I fluctuated between sixty-five and seventy-five kilograms through my late teens and twenties - small ups and downs, nothing dramatic. Then I started my business, entered a long-term relationship, and stopped paying attention.</p><p>By 2017 or 2018, the weight started creeping up. Seventy-five. Eighty. Eighty-five. Ninety. At ninety, I essentially gave up. The business needed all my attention. I told myself I would deal with my body later.</p><p>Later arrived in late 2020 at a hundred and ten kilograms.</p><h2 id="the-juicing-experiment">The Juicing Experiment</h2><p>My son was two. My wedding celebration was coming up in October 2021. I watched a documentary about an Australian man who spent three months driving across America, consuming nothing but freshly juiced vegetables and fruit. He lost a tremendous amount of weight.</p><p>The approach appealed to my obsessive nature perfectly: extreme action, extreme results, clear rules, defined timeline. I bought a juicer and started.</p><p>After a couple of weeks, I found the process messy and time-consuming, so I discovered a London company called Prescription Juices that delivered freshly pressed juice frozen to my door each week. Their formulations were designed by dietitians and doctors - each day included juices with dates, nuts, celery, kale, oranges. Proteins, fats, carbohydrates, micronutrients. Around five hundred calories per day.</p><p>I juiced for ten weeks and went from a hundred and ten kilograms to sixty-seven. I felt on top of the world.</p><p>After the wedding, I hired a dietitian. That worked for three or four months. Then the old habits crept back in. Beer after work. Nuts with the beer. Wine with dinner. By 2023, I was back at eighty-five.</p><p>I hired a personal trainer, cut out most of the poor food choices, stopped drinking. Dropped to seventy-five. I have been fluctuating around that number since - down to seventy-two, up to seventy-eight, back to seventy-four.</p><p>Right now, I am at seventy-seven. My goal is sixty-five at around twelve percent body fat. I am currently at twenty-two percent. There is work to do.</p><h2 id="last-night">Last Night</h2><p>Here is where the self-awareness becomes both useful and frustrating.</p><p>Last night, I was at a boardroom event with a group of founders and CEOs. It ran from half six to half nine. I did not get back until half ten. I was not particularly hungry - I had eaten some snacks at the event - but I had not had dinner, and my brain decided that meant I deserved something.</p><p>I did not need a meal. I could have gone to bed. Instead, I walked to the shop and bought a wrap, peanuts, a yoghourt, a protein drink, and a chocolate bar. Instead of a hundred or two hundred calories, I consumed twelve hundred.</p><p>Why? Because my body wanted a small hit of dopamine before sleep. A comfort. A ritual to close the day. And I gave in.</p><p>This is the part that demoralises me. I am fully aware of what I am doing. I can describe the mechanism in detail. I know I am trading short-term pleasure for long-term progress. And I still do it.</p><p>Does this mean I do not care enough about the goal? Does it mean immediate gratification matters more to me than long-term results? I do not think so, not in the grand scheme. But something in the moment overrides what I know to be true.</p><p>I have not mastered this. I am still working on it.</p><h2 id="the-types">The Types</h2><p>One thing I have observed, and perhaps this is obvious but worth naming, is that people fall into distinct categories with weight:</p><ol><li>You carry extra weight and struggle to lose it</li><li>You are thin and struggle to gain it</li><li>You fluctuate - a tendency toward one direction, interrupted by intense correction in the other</li></ol><p>I am the third type. I have a tendency toward gaining weight because I have a tendency toward overeating. But I also have the capacity for extreme restriction - juicing for ten weeks, fasting for seven days, cutting out entire food groups overnight. The result is a life spent oscillating between states rather than settling into one.</p><p>Everybody is different. That is not a revelation. But naming the pattern you belong to is the first step toward working with it instead of against it.</p><h2 id="fasting-as-clarity">Fasting as Clarity</h2><p>The juicing journey introduced me to fasting, and fasting gave me something I did not expect. It was not the weight loss - although that helped. It was the mental clarity.</p><p>When I fast, I enter a state of enlightenment that I do not experience in normal life. There is peace in not having to think about food. There is a sharpness that arrives somewhere around the twenty-four-hour mark and intensifies at forty-eight hours.</p><p>This makes evolutionary sense. When our ancestors needed to hunt, they did so while hungry. The body adapted to be sharper when fasted - alertness was a survival advantage.</p><p>The longest fast I have done was seven days. Water and black coffee only, while working alone in Dubai. Physically, I felt incredible - like God, honestly. Mentally, every single day was harder than the last. Being surrounded by people eating in a hotel cafe while you are on day four of not eating takes a toll that is difficult to describe.</p><p>I broke the fast with a steak. It was probably the nicest tasting steak I have ever had, even though it was not a great steak. I followed it with a salted caramel iced coffee, which was so good I immediately had another one.</p><p>That experience was so intense it has actually put me off long fasts since. It was mentally draining in a way I was not expecting. But I will fast again. Fasting is no longer a weight loss tool for me - it is a reset. A way to achieve a temporary state of clarity and discipline that recalibrates everything.</p><p>If your doctor approves and you are healthy enough, I would recommend trying it. Start with a day. See how it feels. The sharpness alone is worth the discomfort.</p><h2 id="where-i-am">Where I Am</h2><p>I am at seventy-seven kilograms. I want to be at sixty-five. I have cut out alcohol again. I know what I need to do. I know the mechanisms that work against me. I know my obsessive personality will drive me to extreme measures and then pull me back toward excess.</p><p>I am closer to peace with this than I have ever been. Not because the battle is over, but because I finally understand the battlefield. The dopamine. The obsessiveness. The short-term override. The restriction-compensation cycle.</p><p>I do not have the answer yet. But I have the awareness. And I think awareness, honestly pursued, is the only foundation from which an answer can eventually come.</p><p>This is my journey. It is ongoing. And I suspect it always will be.</p>]]></content:encoded></item><item><title><![CDATA[I Spent Five Years Building Something Nobody Asked For]]></title><description><![CDATA[The story of building We UC from scratch.]]></description><link>https://axelmolist.com/building-we-uc/</link><guid isPermaLink="false">69b6fe9085883c00014ed9f6</guid><category><![CDATA[We UC]]></category><category><![CDATA[Building]]></category><category><![CDATA[Technology]]></category><category><![CDATA[Craft]]></category><category><![CDATA[Broadsoft]]></category><category><![CDATA[Kazoo]]></category><category><![CDATA[Business]]></category><dc:creator><![CDATA[Axel Molist Cordina]]></dc:creator><pubDate>Sun, 15 Mar 2026 18:54:59 GMT</pubDate><media:content url="https://axelmolist.com/content/images/2026/03/we-messages.png" medium="image"/><content:encoded><![CDATA[<img src="https://axelmolist.com/content/images/2026/03/we-messages.png" alt="I Spent Five Years Building Something Nobody Asked For"><p>Everyone tells me the same thing. Just resell someone else&apos;s platform. It would be cheaper. It would be faster. It would make more business sense.</p><p>They are not wrong about any of that.</p><p>But they are wrong about what matters.</p><figure class="kg-card kg-embed-card"><iframe width="200" height="113" src="https://www.youtube.com/embed/CDppK3k7RKw?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen title="I built a phone system nobody asked for"></iframe></figure><h2 id="selling-boxes-under-desks">Selling Boxes Under Desks</h2><p>My journey in telecoms started in 2012. I was working for a company that sold Siemens phone systems - physical boxes the size of three shoeboxes, plugged into walls underneath desks or shoved into corridors. On-premise PBXs for small businesses with five to ten users.</p><p>I could see that cloud was the future. It was obvious to me. I went to the owners and told them we needed to be selling cloud telephony. They disagreed - there was not enough money in it.</p><p>So I set up a company on the side. I got sacked for it. And that company became circle.cloud.</p><p>That decision - following my gut when the economics said otherwise - set a pattern I have repeated ever since.</p><h2 id="the-search-for-the-right-platform">The Search for the Right Platform</h2><p>When I started circle.cloud, I needed a platform to resell. The obvious choice was Horizon by Gamma - solid, well-known, built on Broadsoft under the hood. But it was what everybody else was selling. I wanted something different.</p><p>I found a company called The Voice Factory, run by a man named Paul Harrison. Paul used to work at Broadsoft, and after he left he set up The Voice Factory and invested in his own Broadsoft platform. He believed in me at a time when I was just a person with a brand new company. Getting a reseller agreement with a telecoms carrier in 2015 was not as easy as it is today. You needed trading history, investment, industry connections. I had none of that. Paul took a chance on me anyway, and I have a tremendous amount of appreciation for that.</p><p>What drew me to Broadsoft was its architecture. The platform separated every service into its own cluster - one for the application layer, one for the database, one for media, and so on - all isolated, all horizontally scalable across multiple zones, meaning multiple data centres. You simply stack more servers in each zone when you need more capacity. It was the industry standard for good reason. Companies like Telefonica, Vodafone, and BT run their telephony on Broadsoft. You needed around four million pounds in capital to get a carrier-grade Broadsoft installation and licences, which was well beyond our reach at the time.</p><p>The initial years went well. We grew. But our billing costs grew too. We were spending around twenty thousand pounds a month on licence fees.</p><p>That made me start looking for alternatives.</p><h2 id="the-outages-that-changed-everything">The Outages That Changed Everything</h2><p>I found a company called Bicom Systems that built their own cloud PBX on Asterisk. The licence fees were dramatically lower - charged per server rather than per user, with each server handling around 1,500 users. We made the switch.</p><p>At first, our software ran on Bicom&apos;s servers in their data centre. Then they had an outage in Milton Keynes. Two to three hours of no service for our customers. It made my blood boil. Their infrastructure standards were not where ours needed to be.</p><p>So we found our own data centre - a company called Netwise Hosting in central London, run by two founders who had built something remarkable. Small team, but the quality was extraordinary: diverse network paths, multiple carriers, Cisco routers in the core, multiple generators, multiple fuel contracts. We bought a quarter rack, installed our own servers, and ran the Bicom software on our hardware.</p><p>Then Netwise got hit with a DDoS attack. Not targeting us - targeting another customer. But because we shared the network, our service went down for three to four hours.</p><p>That was the moment I decided we would never again run our infrastructure on someone else&apos;s network. We invested in our own routers, our own switches, and established direct relationships with carriers for connectivity into our data centre.</p><p>Looking back, the evolution was a staircase:</p><ol><li>First, we got our own software licences instead of paying per user per month</li><li>Then we hosted that software in a data centre we controlled</li><li>Then we ran it on our own network</li><li>Then we replaced the third-party software with our own</li></ol><p>Step four is where the real story begins.</p><h2 id="finding-kazoo">Finding Kazoo</h2><p>I knew what I wanted: a platform with the scalability of Broadsoft but without the four-million-pound licence fee. Broadsoft had been acquired by Cisco by this point. I actually inquired heavily about obtaining a Broadworks platform, but the economics did not work.</p><p>The breakthrough came almost by accident. I was on a call with a telecoms consultancy from Argentina. Our requirements did not quite match what they could offer, but at the end of the conversation, one of them mentioned a small company in San Francisco called 2600 Hz that had built something called Kazoo. I had never heard of it. I made a note and moved on.</p><p>Months later, I hired a systems administrator named Konstantins - highly skilled, had built software products before. When I told him my goals, he said we could build something with one developer and have it in the market within six months. That turned out to be optimistic, to say the least.</p><p>What made Kazoo compelling was that it was architected as an open-source alternative to Broadsoft. Multiple application servers, multiple media servers, multiple SBCs, a distributed message bus - all capable of running across geographical zones. You could have a cluster in London and another in Amsterdam, failing over between them seamlessly. It was built for carriers and for scale. And it was open source, which meant no licence fees and full control.</p><p>We installed Kazoo, set it up in a distributed architecture, and started building.</p><h2 id="becoming-a-software-company-by-accident">Becoming a Software Company by Accident</h2><p>The original plan was modest. Kazoo came with an open-source frontend called Monster UI, and we started by building a call recording application on top of it. That was meant to be the missing piece.</p><p>Within two months, Konstantins saw something bigger. Instead of bolting applications onto Monster UI, we should build our own platform from scratch - our own API, our own interface, our own product. One that talked to Kazoo for the PBX features but was entirely ours in terms of the user experience.</p><p>That decision changed everything.</p><p>We called it Circle UC at first. Then one day, the name We UC came to me. I was in the circle.cloud office and overheard Adam, one of the sales team, say, &quot;I am just going to transfer this call to my director.&quot; Not our director. My director. We had grown fast - from ten employees to fifty or sixty in a few months - and somewhere in that growth, people had stopped thinking of the company as a team. It became &quot;us and them.&quot;</p><p>The name &quot;We&quot; came from that realisation. It is inclusive. It promotes collaboration, not just communication. It makes people think of a company as a single force rather than separate departments. That is exactly what a unified communications platform should do. We paired it with UC - unified communications - and We UC was born.</p><p>What started as building a custom proposition for circle.cloud turned into something much bigger. We hired more developers. We set up sprints, CI/CD pipelines, infrastructure, DevOps processes. We registered We UC Ltd. We built native iOS and Android apps, a desktop app, a web app. We now have a team of over twenty people.</p><p>We became a software company almost by accident. And I love it.</p><h2 id="what-we-uc-is">What We UC Is</h2><p>We UC is a modern business phone system. A unified communications platform that handles calls to telephone numbers via audio, internal calls via audio or video, messaging, meetings, call reports, and analytics - all in one application.</p><p>The basics are now solid. We are on par with our previous platform in terms of features and stability, and we are onboarding customers. One recruitment business is already running on We UC, with more to follow.</p><p>But the basics are just the foundation. What excites me is what comes next.</p><p>We are building customisable dashboards that do not just display telephony data but pull in information from CRMs, support systems, and accounting platforms - a small business BI tool that gives founders a 360-degree view of their operation in a single screen. We are building voice AI agents that sound human, connect to business systems via MCP servers, and can handle tasks like restaurant bookings or appointment scheduling. We are building omnichannel messaging that brings WhatsApp, email, Facebook Messenger, and Google My Business conversations into a single interface alongside internal chat.</p><p>These are not features for the sake of features. They are tools that will genuinely impact small businesses&apos; efficiency and profitability.</p><p>Enterprise companies have had this technology for years - data warehouses, Power BI, AI assistants, omnichannel support. Small businesses are still logging into six different platforms every morning and lack a centralised view of their data and operations. I want to change that.</p><p>That is the real answer to why I built this. Not because someone asked. Because someone should have. As Steve Jobs put it: &quot;People don&apos;t know what they want until you show them.&quot;</p><h2 id="what-i-have-learned">What I Have Learned</h2><p>Five years of building something nobody asked for has taught me a few things.</p><p><strong>Follow your gut, even when the economics say otherwise.</strong> Every major decision I have made - leaving my first job to start circle.cloud, moving off Broadsoft, investing in our own infrastructure, choosing to build from scratch on Kazoo - looked questionable on a spreadsheet. Every single one turned out to be right.</p><p><strong>Control your stack.</strong> When something goes wrong and your service runs on someone else&apos;s network, on someone else&apos;s software, on someone else&apos;s servers, you cannot fix it. You can only wait. That is an unacceptable position. The buck has to stop with us.</p><p><strong>Building it yourself takes longer but lasts longer.</strong> We could have hired consultancies to build everything and moved faster. Instead, we learned Kazoo ourselves, hired expertise in-house, built the knowledge internally. It took more time. But now we own every layer of understanding, not just every layer of technology.</p><p><strong>Craft is not a luxury.</strong> We care about details nobody will ever see. The architecture of the codebase, the elegance of the API, the precision of the UX. That care comes through in the final product, even when the customer cannot point to exactly why it feels different.</p><p><strong>You do not need permission to build what you believe in.</strong> Nobody asked for We UC. The market did not demand it. A consultant would have told me to keep reselling. But the best products are built by people who see something that does not exist yet and refuse to accept that gap.</p><p>Kazoo itself is open-source software, and we are actively contributing back to it - working alongside carriers from all over the world, maintaining a shared codebase. That is the beauty of open source. You build on something great and make it greater. But for us, Kazoo is just the PBX engine. On top of it sits everything from messaging to video calling, online meetings, call recording transcription and summarisation, and much more - all wrapped around a user experience that is entirely ours.</p><h2 id="the-road-ahead">The Road Ahead</h2><p>I have no plans to sell We UC. I want to build it and keep building it. That is what I enjoy doing.</p><p>We are launching in the UK first, then the US, Europe, and potentially Australia. We are selling through circle.cloud&apos;s existing sales engine and, soon, via a self-service SaaS model - which is entirely new territory for me and genuinely exciting.</p><p>I want We UC to become a recognised name in unified communications. Not because it is the biggest, but because it is built with more care, more craft, and more attention to detail than anything else in the market.</p><p>That is what five years of building something nobody asked for has given me. Not just a product, but a conviction: the things worth building are rarely the things that make obvious sense at the start. They are the things you cannot stop thinking about. The things that keep you working not because you have to, but because you genuinely want to.</p><p>And I have never wanted anything more.</p>]]></content:encoded></item><item><title><![CDATA[On Taste, Simplicity, and the Courage to Make Something Beautiful]]></title><description><![CDATA[Beauty has structure. Taste is not preference - it is a skill. And simplicity is not laziness but the highest expression of mastery.]]></description><link>https://axelmolist.com/on-taste-simplicity-and-the-courage-to-make-something-beautiful/</link><guid isPermaLink="false">69adf20c85883c00014ed986</guid><category><![CDATA[Simplicity]]></category><category><![CDATA[Taste]]></category><category><![CDATA[Apple]]></category><category><![CDATA[Business]]></category><category><![CDATA[Beauty]]></category><category><![CDATA[Design]]></category><category><![CDATA[Picasso]]></category><dc:creator><![CDATA[Axel Molist Cordina]]></dc:creator><pubDate>Sun, 08 Mar 2026 22:07:54 GMT</pubDate><media:content url="https://axelmolist.com/content/images/2026/03/dieter-simplicity.jpg" medium="image"/><content:encoded><![CDATA[<img src="https://axelmolist.com/content/images/2026/03/dieter-simplicity.jpg" alt="On Taste, Simplicity, and the Courage to Make Something Beautiful"><p>We are told that beauty is subjective. In the eye of the beholder. That there is no right or wrong.</p><p>But is it? Because nature does not seem to think so.</p><figure class="kg-card kg-embed-card"><iframe width="200" height="113" src="https://www.youtube.com/embed/ntFTxZl4vYU?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen title="Most people have no taste (and don&apos;t know it)"></iframe></figure><p>Look at a shell. Look at the spiral on it. Now look at the spiral of a galaxy. They are the same shape. That is not a coincidence. What makes a face beautiful? Symmetry - one side mirrors the other. What makes a flower beautiful? The geometry, the way the petals are arranged. What makes great architecture? The way the shapes and the sizes complement each other.</p><p>These are mathematical patterns. And they keep showing up across nature, across history, across everything we find beautiful.</p><p>Beauty has structure. It is not random. And two things arrived in the same week that gave me the language for something I have felt my entire life but never quite managed to put into words.</p><p>The first was Paul Graham - the founder of Y Combinator, one of the sharpest minds in technology - resharing an essay he wrote in 2002 called Taste for Makers. I read it and sat quietly for a minute afterwards, because someone had articulated the idea that taste is not preference. It is real, it is identifiable, and it is a skill that can be developed.</p><p>The second was the Steve Jobs Archive publishing a collection called Letters to a Young Creator. Over thirty letters from the people who knew Steve, worked alongside him, were shaped by him. Released on what would have been his 71st birthday. And Jony Ive - the man who designed the iPhone, the iMac, the iPad alongside Jobs for fifteen years - wrote a letter about what it actually means to care about making something beautiful.</p><p>Together, they point at something I think is the most important conversation happening in technology right now. Not about tools. Not about speed. About what we believe the people who use our work actually deserve.</p><h2 id="the-comfortable-lie">The Comfortable Lie</h2><p>We are told from childhood that taste is personal, subjective, that there is no right or wrong.</p><p>It sounds generous. It sounds democratic. But it is a comfortable lie we tell each other to avoid conflict.</p><p>Graham opens his essay with a question that sounds almost naive: is there such a thing as good taste, or is taste just personal preference? And then he answers it in a way that stopped me cold. He says if taste were just preference, then everyone&apos;s taste is already perfect. There would be no way to get better at designing things. No direction to improve towards. But we all know that is not true. We know when we are looking at something genuinely beautiful versus something that has just been assembled. We feel it. We just lack the confidence to trust that feeling.</p><p>And then he goes further. He identifies the principles that keep appearing across every field - mathematics, architecture, painting, writing, engineering. Simplicity. Symmetry. Resemblance to nature. As if beauty is not subjective at all. As if there is a deeper truth to it that transcends medium and era and culture.</p><p>Steve Jobs believed it too. He famously said that Microsoft had no taste. People thought that was arrogant. But I do not think he was being cruel. He was being precise. He was saying: they do not ask whether something is good - they ask whether it works and whether it sells. Those are not the same question.</p><p>Taste is the ability to know the difference.</p><h2 id="the-bull">The Bull</h2><p>For me, Picasso is the most powerful illustration of what simplicity actually means.</p><p>In 1945, he made a series of eleven lithographs called The Bull. He starts with a detailed, realistic bull - muscular, anatomically complex. The kind of drawing that makes you think: this person can really draw.</p><p>But then - over eleven iterations - he strips it. Removes muscle. Removes shadow. Removes everything that is not essential. Until at the end he has five or six lines. And those lines contain the entire essence of a bull - the power, the weight, the character - more completely than the detailed version ever could.</p><p>That process - that brutal, disciplined act of subtraction - is what decades of mastery actually earns you. Not the ability to add more. The ability to know what to take away. The confidence to take it away. And the skill to make what remains feel not sparse, but complete.</p><p>Graham makes the same observation across fields. In mathematics, a shorter proof is a better proof. In writing, say what you mean and say it briefly. In architecture, beauty depends on a few structural elements, not a profusion of decoration. Good design uses symmetry. Good design resembles nature. And good design looks easy - even though getting there is incredibly hard.</p><p>Most people think simplicity is the easy option. That minimalism is about doing less. It is the opposite. Simplicity is the hardest version of the thing - the version where there is nowhere to hide. Where every single element has to earn its place.</p><p>That is what Jobs did to the phone. That is what Ive did to every product they made together. And it is no coincidence that Ive&apos;s greatest influence was Dieter Rams - the German designer whose philosophy fits in three words: less, but better.</p><h2 id="protecting-what-is-fragile">Protecting What Is Fragile</h2><p>Ive&apos;s letter from the archive is not what you might expect. He does not talk about products. He barely mentions the iPhone or the Mac. He talks about how Steve thought. He says: &quot;The way he thought was profoundly beautiful.&quot; He describes Jobs&apos;s curiosity as &quot;ferocious, energetic and restless&quot; - not limited by his knowledge, not casual or passive, but practiced with intention and rigor.</p><p>And then he writes something I keep coming back to: &quot;Ideas are fragile. If they were resolved, they would not be ideas - they would be products. It takes determined effort not to be consumed by the problems of a new idea.&quot;</p><p>We live in a world obsessed with shipping. Validate fast. Move fast. Get feedback fast. There is wisdom in that. But there is also a kind of violence in it if applied too early.</p><p>There is a moment in the creative process where an idea is alive but not yet strong enough to survive scrutiny. It exists as a feeling, a direction, an instinct - before it has the language or form to defend itself. Expose it to criticism too soon and you kill it. Not because the criticism is wrong, but because the idea has not had time to become what it could be.</p><p>Jobs and Ive understood this. They spent their afternoons in what Ive calls &quot;the sanctuary of the design studio.&quot; Protected space where ideas could evolve before they were tested.</p><p>I think about this in my own work building We UC. There is constant pressure to ship, to show progress, to validate early. That pressure is mostly healthy. But I have also killed ideas by letting the committee into the room before the thing had legs. The skill is knowing when something needs protecting and when it needs testing. I am still learning that.</p><p>Graham says great design is redesign. Leonardo&apos;s drawings often show five or six attempts at a single line. The Porsche 911 only emerged from the redesign of an awkward prototype. First answers are almost never the best answers.</p><h2 id="taste-as-love-for-the-craft">Taste as Love for the Craft</h2><p>Tim Cook&apos;s letter describes the moment he decided to join Apple. The company was struggling. Most people thought it would not survive. Then he heard Steve speak.</p><p>Cook writes that when Jobs spoke, &quot;any trepidation I harboured instantly dissolved.&quot; Not because Steve had a perfect plan. Because he had complete clarity of purpose. Cook says he had never met someone with so much passion and vision. And he says he traded a job for a purpose the day he joined.</p><p>That distinction matters. A job is a set of tasks. A purpose is a reason. People will do extraordinary things in service of a genuine reason in a way they never will for a task list.</p><p>And I think that is what taste really is. It is not snobbery. It is love for the craft. It is caring so deeply about what you are making that you refuse to accept anything less than beautiful. Not because you want to show off. But because you believe the person on the other end deserves it. And because you want to apply your own style to it - to make it not just functional but uniquely, thoughtfully yours.</p><p>Ive understood this. He closes his letter with something I think is the most important line in all of this. He writes: &quot;He truly believed that by making something useful, empowering and beautiful, we express our love for humanity.&quot; And then: &quot;My sincere hope for you and for me is that we demonstrate our appreciation of our species by making something beautiful.&quot;</p><p>That is not a design philosophy. That is an ethical position. When you choose the good-enough option - the it-works-so-why-bother option - you are making a choice about how much you value the person on the other end.</p><h2 id="why-this-matters-now">Why This Matters Now</h2><p>I do not think this is just a conversation about Apple or Picasso or Dieter Rams. I think it is the most urgent conversation in technology right now.</p><p>Because we are drowning in output. AI can generate volume. It can generate competence. What it cannot generate is taste - the love for the craft that makes someone obsess over getting something right. The intolerance for ugliness that comes from a person who has stared at their work long enough to hear the voice that says: there must be a better way.</p><p>That voice is the thing. Not the tools. Not the frameworks. Not the ability to produce faster and cheaper. The voice. The one that looks at something functional and says: this is not good enough.</p><p>Graham wrote his essay twenty-three years ago. Before the iPhone. Before AI could write code or generate images. Every word is more relevant today than when he wrote it. Because the cheaper it becomes to produce things, the more valuable taste becomes. When anyone can generate output, the differentiator is whether someone cared enough to make it right.</p><p>Nature&apos;s ratios. Simplicity. Symmetry. These are not trends. They are truths. Picasso&apos;s five-line bull took a lifetime to earn. Jobs spent decades obsessing over details most people would never notice. Dieter Rams designed products in the 1960s that still look contemporary because the principles underneath them are true.</p><p>The world does not need more output. It needs more people who refuse to accept that good enough is good enough. People who understand that simplicity is not the absence of effort but the highest expression of it. People whose taste comes not from judgement but from genuine love for what they are making and genuine respect for the people experiencing it.</p><p>I still get this wrong. I still ship things I know could be better. But I never stop hearing that voice. And the message I take from all of this - from Graham, from Ive, from Jobs - is: do not explain it away. Cultivate it. It is the most valuable thing you have.</p>]]></content:encoded></item></channel></rss>