Systems | Development | Analytics | API | Testing

%term

How B2B CIAM Solutions Give Your Business a Competitive Edge

In the digital age, we interact with countless applications, whether for personal, professional, or recreational purposes. Many of these applications appear consumer-oriented but are, in fact, business-to-business (B2B) applications. For example, when accessing healthcare services, payroll systems, or school management platforms, you are likely using applications where your provider (such as your GP or employer) is a business customer of a larger B2B application.

From Check-In to Arrival: The Role of AI-Powered BOTs in Streamlined Baggage Handling

The evolution of baggage handling has long been a complex challenge for airports, airlines, and travelers alike. With millions of bags processed daily worldwide, ensuring each reaches its destination efficiently and securely is critical for passenger satisfaction and operational efficiency.

Getting your iOS apps ready for Apple Intelligence

This year, Apple Intelligence will be available in beta. It's a set of artificial intelligence features that Apple will add to macOS, iOS, and iPadOS devices to offer consumers a more personalised experience designed to help improve their efficiency and productivity. There's a lot of excitement around what Apple Intelligence will bring to developers, consumers, and the ecosystem as a whole. You can read more about the possibilities our CEO believes it will unlock here.

S1.E27: Combining performance testing and exploratory testing with Leandro Melendez

The team is thrilled to welcome back Leandro Melendez, aka Señor Performo, for his second appearance on the show! Last time, it was all about performance testing, but now, Leandro is here to explore the powerful combination of performance testing AND exploratory testing. With nearly 20 years of IT experience and a decade dedicated to performance testing using top-tier tools like Roller, NeoLoad, and more, Leandro shares his insights on.

Ably's four pillars: no scale ceiling

This is one of a series of posts that explain Ably’s four pillars of dependability. The four pillars project at Ably is about making concrete, objectively verifiable, statements about the technical characteristics of the service. We aim to ensure that our claims about service performance are expressed clearly in terms of explicit metrics, and we explain in technical terms how those performance levels are met.

Avoiding False Positives in Node.js Tests

When running tests, it's a great feeling to see dozens of green check marks indicating that a test suite is passing. It's especially gratifying after tackling a tricky bug or slogging through a tough feature. But those passing tests may be giving you a false sense of security. Often, bugs lurk in passing tests, undermining trust in the test suite and your application. Such tests can cause more harm than good, giving you a hearty pat on the back while hiding broken functionality.

How to migrate from Kafka to Confluent Cloud with limited downtime

In this short video, a Confluent Solutions Engineering will run through the high-level steps on how to get started with your migration. And even better, once you’re done watching, you can download our comprehensive migration kit for a step by step guide of everything I’ve talked about and more.

EP 1: Exploring the Dark Ages of Data with R "Ray" Wang

Companies have access to more data than ever before – according to IDC, worldwide data will grow 61% by 2025. However, when it comes to adopting AI, there is a difference between companies who merely have internal data and those who have precise, accurate data. The first step to delivering trusted AI is having the right type of data. R "Ray" Wang, principal analyst and founder of Constellation Research, joins The AI Forecast to discuss the value of precision data as we enter what he calls “the dark ages of data”.

Understanding setImmediate() vs process.nextTick() in Node.js

Node.js is a powerful runtime environment that allows you to handle asynchronous I/O operations efficiently using its event-driven architecture. Asynchronous operations in Node.js rely heavily on the event loop, and understanding how certain functions like process.nextTick() and setImmediate() interact with the event loop is essential for building fast, responsive applications.