Systems | Development | Analytics | API | Testing

Blog

Mastering StudioAssist: Your Essential Guide to Data-Driven Testing and Reusing AI-Generated Test Cases

As a software tester, you constantly look for ways to streamline your workflow and enhance your testing capabilities. StudioAssist, an intelligent feature in Katalon Studio, is designed to make your life easier by automating repetitive tasks and generating efficient test scripts. This blog will serve as your cookbook, providing you with step-by-step instructions on how to harness the full potential of StudioAssist.

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.

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.

Volumes Technical Preview: Blazing-fast NVMe SSD for Your Data

Ready? Day three of Koyeb launch week is on! When you deploy your apps on Koyeb, your data is on ephemeral disks. While this works great for stateless applications, this is challenging for stateful workloads like databases. Just in time to save the day, we are launching the technical preview of Volumes! You can now use Volumes to persist data between deployments, restarts, and even when services are paused. We're gradually onboarding users to ensure the best experience for everyone.

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 Create a MySQL REST API in 6 Easy Steps

According to StackOverflow’s 2022 survey, 46% of professional developers rate MySQL as the most popular database to use in the workspace. As programmers, we should not be bothered with repeatedly writing code which is otherwise readily available, robust, and well-tested. Yet this problem remains persistent in the REST API space, despite the implementation process being by this point in time rote, repetitive, and prone to error and oversight. This oversight is costly for several reasons.

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.

Database generated events: LiveSync's database connector vs CDC

Ably LiveSync is a product we launched last month to help developers deliver live updates in their applications by automatically keeping their database and frontend clients in sync. LiveSync is made of two components, the Models SDK that runs on the client, and the database connector that listens to changes in your database and syncs those changes to your clients.

New in PHP 8.4: engine optimization of sprintf() to string interpolation

PHPs compiler and bytecode cache OPcache not only cache the compile step from PHP source code to virtual machine bytecode, they also include optimizations that can produce faster bytecode: For example PHP can: For PHP 8.4 Tideways sponsored the work of our colleague Tim to add another compiler optimization for the function sprintf().