<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Stella Penso</title>
    <description>The latest articles on DEV Community by Stella Penso (@stella_penso).</description>
    <link>https://dev.to/stella_penso</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F4039579%2Fb75b70a7-5438-4976-a906-9a5a88be5a6f.png</url>
      <title>DEV Community: Stella Penso</title>
      <link>https://dev.to/stella_penso</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/stella_penso"/>
    <language>en</language>
    <item>
      <title>300 Customer Interviews Before Writing a Line of Code - The Discovery Process Behind Omnea</title>
      <dc:creator>Stella Penso</dc:creator>
      <pubDate>Fri, 07 Aug 2026 07:21:56 +0000</pubDate>
      <link>https://dev.to/stella_penso/300-customer-interviews-before-writing-a-line-of-code-the-discovery-process-behind-omnea-474</link>
      <guid>https://dev.to/stella_penso/300-customer-interviews-before-writing-a-line-of-code-the-discovery-process-behind-omnea-474</guid>
      <description>&lt;p&gt;Most "how we built it" write ups start with the tech stack. This one starts earlier: with 300 conversations a founder had with procurement leaders before deciding what to build at all. &lt;br&gt;
Omnea's founder, Ben Freeman, spent that discovery phase hearing some version of the same complaint repeatedly, that procurement processes were widely disliked and the tools available were clunky, but nobody had actually rebuilt the stack from scratch.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why this matters more than the eventual tech choices
&lt;/h2&gt;

&lt;p&gt;It's tempting, especially as an engineer, to treat product discovery as a soft skill separate from the "real" work of building. But the actual technical decisions Omnea made afterward, betting on a two way data orchestration layer instead of a simple dashboard, prioritizing natural language intake over form based requests, only make sense in light of that discovery process. &lt;br&gt;
If you skip straight to architecture without understanding the actual failure mode users are living with, you tend to build a technically impressive solution to the wrong problem.&lt;/p&gt;

&lt;h2&gt;
  
  
  From validated pain point to funding
&lt;/h2&gt;

&lt;p&gt;The pattern that followed is a fairly clean funding trajectory worth noting for anyone tracking how enterprise SaaS companies scale post discovery: a $20 million Series A once the initial product had traction, followed roughly a year later by a $50 million Series B after the company had grown revenue roughly 5x and more than tripled headcount, bringing total funding north of $75 million. &lt;br&gt;
Enterprise customers including Spotify, Wise, and MongoDB came on during that window, which is a meaningfully different growth signal than early consumer traction, enterprise sales cycles are slower and more scrutinized, so revenue growth at that pace usually reflects genuine operational value rather than a viral feature.&lt;/p&gt;

&lt;h2&gt;
  
  
  The discipline of staying narrow
&lt;/h2&gt;

&lt;p&gt;One detail worth flagging for engineers specifically: Omnea didn't try to become a general purpose enterprise workflow tool. It stayed scoped to the supplier lifecycle, intake, approvals, risk management, renewals, rather than expanding sideways into adjacent problems the moment funding arrived. &lt;br&gt;
That kind of scope discipline is hard to maintain once you have the resources to build more, and it's frequently the difference between a product that does one thing reliably and one that becomes brittle trying to do everything.&lt;/p&gt;

&lt;h2&gt;
  
  
  The takeaway
&lt;/h2&gt;

&lt;p&gt;The unglamorous part of this story, the hundreds of unpaid conversations before a single line of production code, is usually the part that gets compressed into a single sentence in startup founder stories, right before the section about the funding round. But it's the part that actually determined whether the eventual architecture solved a real problem or an imagined one. &lt;br&gt;
If you're building anything for an enterprise audience, the lesson generalizes cleanly: the discovery work isn't preamble to the engineering, it's the spec.&lt;/p&gt;

</description>
      <category>startup</category>
      <category>beginners</category>
      <category>marketing</category>
      <category>uk</category>
    </item>
    <item>
      <title>What Happens to Your Integration When Your Payments Vendor Gets Acquired</title>
      <dc:creator>Stella Penso</dc:creator>
      <pubDate>Tue, 04 Aug 2026 07:14:05 +0000</pubDate>
      <link>https://dev.to/stella_penso/what-happens-to-your-integration-when-your-payments-vendor-gets-acquired-2kcg</link>
      <guid>https://dev.to/stella_penso/what-happens-to-your-integration-when-your-payments-vendor-gets-acquired-2kcg</guid>
      <description>&lt;p&gt;If you follow UK tech news, fintech M&amp;amp;A shows up often enough that it's worth planning for as an engineering risk, not just a business one. A few recent examples make the pattern pretty clear.&lt;/p&gt;

&lt;h2&gt;
  
  
  The pattern shows up more than you'd think
&lt;/h2&gt;

&lt;p&gt;When Visa acquired Plaid in a deal reported at $5.3 billion, the acquisition itself didn't break anything overnight, but it changed the trajectory of the product: enterprise first commercial terms became more prominent, and smaller teams increasingly found onboarding heavier than with leaner competitors. &lt;br&gt;
TrueLayer's own migration from its Payments v2 API to v3 required developers to handle new mandatory request signing and restructure how pay-in creation and authorization were split into separate steps, a non-trivial integration change for anyone on the old version. And GoCardless's acquisition of the open banking provider Nordigen in 2022 came with a scaled-back free tier not long after, which pushed a chunk of smaller developers and indie fintechs to re-evaluate their stack entirely.&lt;/p&gt;

&lt;p&gt;None of these are edge cases. If you build on a third-party payments API, at some point you are statistically likely to be on the losing end of an acquisition, a pricing change, or a forced migration.&lt;/p&gt;

&lt;h2&gt;
  
  
  Practical mitigation, not paranoia
&lt;/h2&gt;

&lt;p&gt;You don't need to avoid third-party payment APIs, that's not realistic, but a few patterns meaningfully reduce your exposure:&lt;/p&gt;

&lt;p&gt;Build a thin abstraction layer. Don't let your business logic call the vendor SDK directly from a dozen places in your codebase. Wrap payment initiation, mandate management, and webhook handling behind your own internal interface. When a provider changes its API surface or you need to swap providers, you're editing one adapter instead of hunting through your entire codebase.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Store your own canonical payment state&lt;/strong&gt;. Don't treat the vendor's dashboard or API as your only source of truth. Persist mandate IDs, payment statuses, and webhook events in your own database, keyed by your internal references, not just theirs. &lt;br&gt;
If a migration forces you to re-point to a new API version, or a new company entirely post-acquisition, you want your historical data intact and queryable without depending on the old vendor's API still working.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Watch for signal, not just announcements&lt;/strong&gt;. Free-tier scale-backs, slower support response times, and increasingly enterprise-flavored sales conversations tend to precede bigger platform shifts. They're not proof of anything on their own, but they're worth tracking if a huge chunk of your revenue runs through one payment provider.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Budget migration time into your roadmap&lt;/strong&gt;, even speculatively. Teams that treat "our payments provider might change" as a real possibility instead of a hypothetical tend to handle forced migrations (like the TrueLayer v2 to v3 move) in days instead of months, because the abstraction layer was already there when they needed it.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The underlying lesson isn't really about payments specifically.&lt;/strong&gt; It's about recognizing that any vendor API you depend on is a dependency with its own business risk attached, and a little architectural distance up front is cheap insurance against a migration you didn't choose the timing of.&lt;/p&gt;

</description>
      <category>startup</category>
      <category>tutorial</category>
      <category>business</category>
    </item>
    <item>
      <title>The Indie Hacker's Guide to UK Business Banking in 2026</title>
      <dc:creator>Stella Penso</dc:creator>
      <pubDate>Sat, 01 Aug 2026 07:55:17 +0000</pubDate>
      <link>https://dev.to/stella_penso/the-indie-hackers-guide-to-uk-business-banking-in-2026-3kba</link>
      <guid>https://dev.to/stella_penso/the-indie-hackers-guide-to-uk-business-banking-in-2026-3kba</guid>
      <description>&lt;p&gt;If you're building a SaaS or side project as a solo founder in the UK, your bank account is infrastructure as much a part of your stack as your hosting bill. Most founders pick a bank in five minutes because a friend mentioned it, then spend the next two years quietly overpaying or missing tooling they didn't know existed.&lt;/p&gt;

&lt;p&gt;Here's what actually matters if you're bootstrapping, and which of the five main UK digital business accounts fits which kind of indie founder in 2026 because banking is one of those unglamorous decisions that quietly shapes how well you operate inside the wider &lt;a href="https://www.figma.com/@epplusuk" rel="noopener noreferrer"&gt;UK startup ecosystem&lt;/a&gt;, long before anyone's talking about your product.&lt;/p&gt;

&lt;h2&gt;
  
  
  The five accounts, briefly
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Starling Business&lt;/strong&gt; — free, unlimited UK transfers, FSCS protected up to £85,000, real-time feeds into Xero, QuickBooks, and FreeAgent. As a fully licensed bank, it's the only one on this list that offers overdrafts and lending as you scale. The catch: it runs a hard credit check, which shows up on your credit file and can affect other lending applications if you're raising or applying for a mortgage around the same time.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Tide&lt;/strong&gt; — built for speed. Account opens in under five minutes with no credit check, and the free plan includes three invoices a month plus categorisation. If you invoice clients directly (a lot of solo SaaS and consultancy founders do), this is the account that removes the most friction from getting paid. Transfers cost £0.20 each after the first five free ones monthly — at 50 transfers a month that's roughly £9.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Mettle&lt;/strong&gt; — free forever, no transaction fees, and it bundles FreeAgent (normally around £150/year) at no extra cost. This is the strongest pick for a UK-only sole trader who wants accounting software handled without adding another subscription. Limitation: no international payments, single-user access, no overdraft — so it doesn't scale well past a one-person operation.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Monzo Business&lt;/strong&gt; — Lite tier is free with FSCS protection up to £120,000 and a built-in Making Tax Digital tax tool. Pro tier (£9/month, first month free) unlocks invoicing and full accounting integrations. If you're GBP-only and want a bank-grade safety net without complexity, this is a clean option — just know invoicing sits behind the paywall.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Revolut Business&lt;/strong&gt; — the one to reach for if you're selling internationally. Holds 25+ currencies at interbank rates for your first £1,000 monthly on the Basic plan, then charges 0.6% FX on weekdays. It's also the only account here with proper API access for automating payments and reconciliation relevant if you're building your own billing logic rather than relying purely on Stripe payouts. Costs £10/month minimum, so it's not the right pick if you're GBP-only.&lt;/p&gt;

&lt;h2&gt;
  
  
  Matching the account to your stage
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Pre-revenue, testing an idea:&lt;/strong&gt; Mettle or Monzo Lite. Zero cost, zero risk, and you can switch later without much pain.&lt;/li&gt;
&lt;li&gt;First few paying clients, invoicing directly: Tide. The built-in invoicing pays for itself in time saved.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Scaling past £1k MRR, want lending headroom eventually:&lt;/strong&gt; Starling. The credit-check trade-off starts making sense once overdraft or lending matters.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Selling to US/EU customers, getting paid in USD or EUR:&lt;/strong&gt; Revolut. Multi-currency isn't a nice-to-have here, it's the whole point.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  What nobody tells you about "free" banking
&lt;/h2&gt;

&lt;p&gt;Every account on this list has a free tier, but "free" only means free at your specific transaction pattern. Tide's free plan turns expensive fast if you're doing 50+ transfers a month. Starling's Post Office cash deposit fee (0.7%, minimum £3) matters if you're taking cash payments. Read the fee schedule against how you'll actually get paid not against the marketing page.&lt;/p&gt;

&lt;h2&gt;
  
  
  The one-line takeaway
&lt;/h2&gt;

&lt;p&gt;There's no universally "best" account here — there's a best account for how you get paid. Map your typical month (how many transfers, whether you invoice, whether you touch foreign currency) against these five before you commit, because switching banks mid-year is its own kind of tax on your time.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Fees, limits, and integration details current as of mid-2026 — always confirm directly with the provider before opening an account, as fee structures shift.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>fintech</category>
      <category>uk</category>
      <category>startup</category>
    </item>
    <item>
      <title>Allica Bank Just Hit Unicorn Status, Here's What's Actually Interesting About the Round</title>
      <dc:creator>Stella Penso</dc:creator>
      <pubDate>Tue, 21 Jul 2026 08:29:27 +0000</pubDate>
      <link>https://dev.to/stella_penso/allica-bank-just-hit-unicorn-status-heres-whats-actually-interesting-about-the-round-1773</link>
      <guid>https://dev.to/stella_penso/allica-bank-just-hit-unicorn-status-heres-whats-actually-interesting-about-the-round-1773</guid>
      <description>&lt;p&gt;A bank hitting a $1.2B valuation isn't usually dev.to material. But the shape of this raise where the money's going and what it signals about scaling a fintech internationally is worth a look, especially if you've ever wondered how "buy vs build" plays out at the company level, not just the codebase level.&lt;/p&gt;

&lt;h2&gt;
  
  
  The number
&lt;/h2&gt;

&lt;p&gt;In February 2026, Allica closed a $155 million Series D (about £111 million), pushing its valuation to roughly $1.2 billion. That puts it in a pretty small UK club — Revolut, Monzo, Starling, and Zilch are the only other UK fintechs to cross the billion-dollar mark.&lt;/p&gt;

&lt;p&gt;The investor lineup is arguably more interesting than the valuation itself. New money came from Ventura Capital, GLG, and Sona AM. But two existing backers TCV (in since 2022) and Blue Owl (in since 2021) doubled down too. Existing investors re-upping is usually a stronger signal than new logos showing up; it means the people who've had visibility into the real numbers for years are still buying in.&lt;/p&gt;

&lt;h2&gt;
  
  
  Where this sits in the funding timeline
&lt;/h2&gt;

&lt;p&gt;Quick context: back in December 2022, Allica closed a £100 million Series C, backed by Warwick Capital Partners and Atalaya Capital Management (Atalaya had actually come in earlier, in November 2021). That round ran alongside a separate debt facility from British Business Investments worth noting because it shows two funding tracks running in parallel: equity to build the company, debt to actually fund the loan book.&lt;/p&gt;

&lt;p&gt;Three years later, at the Series D, Allica had scaled to over 30,000 customers and about 5% penetration of its target market (established SMEs with 5–250 employees). Their own stated goal is to double that to 10% by 2028.&lt;/p&gt;

&lt;h2&gt;
  
  
  The part that makes this round different: it's funding expansion, not just more of the same
&lt;/h2&gt;

&lt;p&gt;Every previous round funded UK lending. This one doesn't. A chunk of the Series D is explicitly earmarked for expansion outside the UK — reportedly Northern Europe and Allica appears to be leaning toward acquiring a bank there rather than building a new licence from scratch.&lt;/p&gt;

&lt;p&gt;That tracks with how they've operated domestically. Both the Tuscan Capital and Kriya acquisitions point to a company that consistently chooses to buy capability rather than build it slowly in-house. &lt;br&gt;
It's the same instinct playing out at a bigger scale: instead of spending 18 months getting licensed and building trust in a new market, buy an entity that already has both.&lt;/p&gt;

&lt;p&gt;If you've ever made the buy-vs-build call on infrastructure do you stand up your own auth system or just buy Auth0 this is the company scale version of that same tradeoff.&lt;/p&gt;

&lt;h2&gt;
  
  
  AI gets a specific line item
&lt;/h2&gt;

&lt;p&gt;The funding announcement also called out continued investment in Allica's proprietary tech stack, specifically AI applied to lending decisions. This lines up with earlier comments from CEO Richard Davies about using AI to speed up the lending pipeline and cut consultancy costs — not customer-facing AI features, just faster and cheaper decisioning under the hood.&lt;/p&gt;

&lt;p&gt;So this raise isn't funding a new AI initiative, it's funding more of a discipline that was already underway, at a bigger scale.&lt;/p&gt;

&lt;p&gt;There was also a government nod here: Economic Secretary to the Treasury Lucy Rigby pointed to the round both new and returning international investors as a signal of confidence in UK fintech more broadly.&lt;/p&gt;

&lt;h2&gt;
  
  
  Does "unicorn" actually change anything?
&lt;/h2&gt;

&lt;p&gt;Not operationally. Allica isn't lending differently or running differently day-to-day because of a valuation number. What it does change is optionality easier access to future capital, and more credibility walking into acquisition conversations abroad. &lt;br&gt;
It also puts Allica in the same sentence as Revolut, Monzo, and Starling in press coverage, even though its actual business (relationship-driven SME lending) looks nothing like theirs.&lt;/p&gt;

&lt;h2&gt;
  
  
  The real story
&lt;/h2&gt;

&lt;p&gt;Zoom out and Allica's funding history has quietly shifted purpose three times:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Early equity + debt — build the domestic lending book&lt;/li&gt;
&lt;li&gt;2022 Series C — scale that book further&lt;/li&gt;
&lt;li&gt;2026 Series D — fund AI investment and the first move outside the UK
The valuation is the headline everyone will repeat. The actual news is that redirection a fintech that spent five years heads-down on one country and one customer segment now has a war chest earmarked for doing the same thing somewhere else.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Whether "buy a bank instead of building a licence" works as cleanly abroad as the domestic acquisitions did is the open question. But it's a genuinely different playbook than most challenger banks have tried.&lt;/p&gt;

</description>
      <category>startup</category>
      <category>banking</category>
    </item>
  </channel>
</rss>
