Urgent.News

the world's headlines, one feed

Editions

Tech

Chip startup Olix raises $312M, Mobilise launches investment arm, and a deep dive into July funding

This week, we tracked more than 35 tech funding deals worth over €1 billion and 5 exits, M&A transactions, rumours, and related news stories across Europe.If email is more your thing, you can alwa...

Chip startup Olix raises $312M, Mobilise launches investment arm, and a deep dive into July funding

UK chip startup Olix recently secured a substantial $312 million investment, bringing its valuation to an impressive $3.3 billion. In parallel, Volta raised $300 million at a $2.4 billion valuation, garnering support from tech giants Nvidia and Dell. Meanwhile, HappyRobot secured $150 million in Series C funding to expand its agentic AI capabilities for enterprise operations.

Notable acquisitions and mergers were also reported. Apple acquired PlasmaSolve, a startup specializing in durable coatings for its devices, while Rebuy closed the acquisition of Zeercle, setting its sights on entering the brick-and-mortar book trade.

Investors have shown continued interest in the tech sector, even after exits from AOL, Eventbrite, and the IPO of Bending Spoons. Bending Spoons has now embarked on its first post-IPO deal, closing a $1.3 billion acquisition by Verb Ventures.

Mobilise, a notable player in the telecom software space, has launched its own investment arm. This strategic move aims to scale telecom software companies through partnerships with other industry leaders. Additionally, White Star Capital successfully closed $250 million in Fund IV, backing global startups from Series A through B.

Looking at the broader funding landscape, European startups collectively secured €8.6 billion in funding during July, with exit activity accelerating. A total of 35 significant tech funding deals worth over €1 billion were tracked, along with five exits and related news stories across Europe. To explore these funding rounds, investor activity, company profiles, and market trends in greater detail, the free, open-access Tech.eu Funding Explorer is available for perusal.

Written by urgent.news from Tech.eu's reporting — not their text. Machine-written — it may contain errors, so check the original before relying on it.

Read the original at tech.eu →

More in Tech

What I Learned Building a Production LMS with Node.js, MongoDB & AWS in 2026

Building an LMS looks simple at the beginning. You need users, classes, payments, attendance, recordings, homework, notifications, and reports. Then you move into production.

  • Building a production LMS with Node.js, MongoDB, and AWS proved more complex than anticipated.
  • Proper system design matters more than technology choice.
  • Avoid treating schema design in MongoDB as optional; use dedicated collections for data growth.

How ReactJS Can Improve User Experience and Boost Your Bottom Line?

Most content about ReactJS and business value follows the same template: virtual DOM makes it fast, components make it reusable, fast and reusable means good for business.

  • ReactJS improves user experience with virtual DOM updating only changed components.
  • Component reusability speeds development, reduces bugs, and enhances codebase stability.
  • React Native enables cross-platform app development, lowering maintenance costs.

Three checks in our codebase that could not fail

Last night I found three checks in our own codebase that could not fail. Not checks that were failing to catch things. Checks that were structurally incapable of ever going red, while reporting green…

  • Three code checks in the system are structurally incapable of failing
  • First check uses verifier with line-for-line copy of the rule it enforces
  • Second check asserts its own arithmetic, reporting PASS with mismatched assertions

Head-of-Line Blocking in HTTP

An asynchronous HTTP/1.1 server can handle many connections concurrently while still serializing work within each connection.

  • Head-of-line blocking delays fast HTTP requests in slow connections
  • HTTP/2 solves this at application layer with independent streams
  • HTTP/3 uses QUIC transport-level streams to avoid blocking

ATProto for Distributed Systems Engineers: How Bluesky's Protocol Reimagines Social Infrastructure

Bluesky's AT Protocol is often dismissed as "just another Twitter alternative." But if you read the new technical deep dive aimed at distributed systems engineers, you'll find something much more…

  • ATProto reimagines social platforms from the ground up, challenging conventional web architecture.
  • Uses a federated model with user-controlled data stores and cryptographically signed repositories.
  • Separates app view from personal data store, allowing multiple app types to run on the same data.