Urgent.News

the world's headlines, one feed

Editions

Tech

Airtable joins Evernote, Brightcove, WeTransfer and AOL in Bending Spoons portfolio

Bending Spoons has snapped up Airtable to add to its portfolio of software companies, alongside AOL, Evernote, WeTransfer, Brightcove and Vimeo Airtable made its name as a builder of low/no code database services , aimed particularly at non-technical staff, but is now one of many vendors facing financial difficulties in the face of the SaaS/AIpocalypse . The arrival of AI coding tools, which…

Airtable joins Evernote, Brightcove, WeTransfer and AOL in Bending Spoons portfolio

Bending Spoons has acquired Airtable as part of its growing portfolio of software companies, which also includes AOL, Evernote, WeTransfer, Brightcove, and Vimeo. Airtable is renowned for creating low/no code database services, primarily targeting non-technical employees. However, the rise of AI coding tools has negatively impacted demand for Airtable's services.

Bending Spoons purchased Airtable for $1.285 billion, significantly lower than the technology company's peak valuation of $11.7 billion. The portfolio developer targets once-prosperous businesses that have failed to adapt to new technologies or have been overshadowed by more agile competitors. Bending Spoons aims to streamline their operations, market them effectively, and eventually return them to profitability.

Luca Ferrari, Bending Spoons CEO and co-founder, expressed the company's commitment to long-term investment in Airtable, emphasizing the platform's core strength in unifying teams and workflows in a flexible workspace. The article first appeared on InfoWorld.

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

Read the original at computerworld.com →

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.