Systems | Development | Analytics | API | Testing

%term

S1.E7: What is quality engineering? | QA Therapy Podcast

Today, we're joined by our expert QA Therapist, Antoine Craske, who's here to diagnose and prescribe solutions for symptoms related to Quality Engineering. Hailing from France and working as a Software Engineer at La Redoute, Antoine brings a wealth of experience to the table. He emphasizes that quality isn't the responsibility of just one person or team; it's a collective company goal. To achieve this, leveraging tools is essential.

How to Craft and Sign a Custom JWT in Kong Konnect

The JSON Web Token (JWT) is an open standard that allows information to be transferred securely between different parties. The token is digitally signed by using a private key (HMAC) or a public/private key (RSA) by building a JSON Web Signature (JWS). It guarantees that the JWT hasn’t been modified since its creation.

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().

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.

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.

SAP Signavio, SAP Cloud ALM and SAP Test Automation by Tricentis: The perfect combination for secure and fast releases

In the modern era of AI-based innovations and cloud transitions, businesses face the challenge of managing complex processes across multiple systems — and the rate of change is only accelerating. At the same time, businesses need to ensure that the introduction of new innovations driven by accelerated business transformation doesn’t break existing processes and systems.

White Box Testing: All You Need To Know

White box testing is a testing method where testers evaluate the quality of a system with full knowledge of its internal structures. Here, the testers have access to the system's source code and understand how it operates internally. They know not only what the software does but also how it achieves those results. In this article, we’ll learn more about white box testing in-depth, the common techniques used, and white box testing best practices.

Generative AI vs Predictive AI: Knowing the Differences

Generative AI has received the lion’s share of the press. With good reason—it’s revolutionizing the way we do work and do business. But it’s not the only game in town. Predictive AI also places a role across enterprise use cases like demand forecasting, maintenance, and customer experience. This blog will discuss these two types of AI: generative AI and predictive AI.

Creating an Oracle API in Minutes with DreamFactory

Handwriting code for database APIs can be a time consuming and expensive process that often exposes organizations to a variety of risks relating to quality, consistency, and developer effort. DreamFactory specialises in REST API generation for a range of databases that gives you the ability to generate a secure, fully documented API in minutes.

Navigating Django Logging: From Basics to Best Practices

Django is designed to be secure by default, which means that its got a number of featured out of the box to protect against common Web vulnerabilities, including SQL injection, cross-site scripting (XSS), and cross-site request forgery (CSRF). Its extensive documentation, active community, and strong ecosystem of reusable apps and libraries make it a common choice for developers looking to create scalable and maintainable Web applications.