Systems | Development | Analytics | API | Testing

Latest News

Master StudioAssist: A quick guide to summarizing and explaining code in Katalon Studio

As a software testing professional, you know that efficiency is key. Whether you're reviewing your team's code or trying to understand complex test scripts, having a tool that simplifies these tasks can be a game-changer. Enter StudioAssist, an invaluable feature in Katalon Studio that can help you summarize and explain code easily. In this guide, we'll walk you through two essential use cases: generating a code summary and explaining your web test script. Let’s get started.

The future of realtime Fan Engagement in sports and media [with video]

As a veteran of the sports media industry with 35 years of experience at Deltatre, Carlo De Marchis recently delivered a thought-provoking keynote at our Fan Engagement Summit exploring the current state of fan engagement, the challenges faced by organizations, and the potential scenarios for the future of realtime fan engagement in sports and media. In the following video and post, Carlo shares what he presented at the Ably Summit with a re-recorded version of his presentation, and summary of key points.

How to Perform Data Validation in Node.js

Data validation is essential to avoid unexpected behavior, prevent errors, and improve security. It can be performed both on a web page — where data is entered — and on the server, where the data is processed. In this tutorial, we'll explore data validation in the Node.js backend. Then, you'll learn how to implement it in Express using the express-validator library. Get ready to become a Node.js data validation expert!

Celebrating 18 Years of Innovation: Talend Studio's Exciting New UX

In 2006, a revolutionary data solution emerged from France: Talend Studio. Over the years, it has become the worldwide industry standard in Data Transformation, Big Data, Application Integration, and API low-code design. Fast forward to 2023/2024, and Talend Studio proudly serves over 10,000 unique users worldwide.

Empowering Enterprise Generative AI with Flexibility: Navigating the Model Landscape

The world of Generative AI (GenAI) is rapidly evolving, with a wide array of models available for businesses to leverage. These models can be broadly categorized into two types: closed-source (proprietary) and open-source models. Closed-source models, such as OpenAI’s GPT-4o, Anthropic’s Claude 3, or Google’s Gemini 1.5 Pro, are developed and maintained by private and public companies.

Resque v Sidekiq for Ruby Background Jobs Processing

Background job processing is integral to modern software architecture. Background jobs allow resource-intensive tasks to be handled asynchronously, improving your application’s responsiveness and efficiency. You can use background processing for tasks such as sending emails, data processing, and batch jobs. If you were to run these synchronously, they could significantly degrade the user experience and system performance. Thus, most frameworks have libraries for running background jobs.

A guide to PHP attributes

When building web applications in PHP, there may be times when you want to add metadata to annotate your code that can be read by other parts of your application. For example, if you've ever used PHPUnit to write tests for your PHP code, you'll have likely used the @test annotation to mark a method as a test in a DocBlock. Traditionally, annotations like this have been added to code using DocBlocks. However, as of PHP 8.0, you can use attributes instead to annotate your code in a more structured way.