Systems | Development | Analytics | API | Testing

Latest Posts

Five Common Pitfalls on the Path to Becoming a Data-Driven Enterprise

Your company collects data from different sources and then you analyze the data to help make the right decisions. But you aren’t quite getting the results that you expect. Maybe the insights aren’t accurate. Perhaps the process is time consuming and cumbersome. Or you are only currently using data for a few use cases and struggle to implement organization wide.

Testing techniques - QA Therapy episode highlights

In the fast-paced world of software development, quality assurance, and testing have evolved into critical components of the development process. Navigating this complex landscape has become a challenge for many, especially when deciding which tests to perform, what to automate, and how to ensure the highest quality in software releases. Our recent episode on the QA Therapy Podcast delved deep into these pressing questions, and today, we're excited to bring you the highlights.

Business Process Management vs. Workflow: The Difference, Explained

Business process management (BPM) and workflow are both commonly used terms in discussions about business operations. While they’re related, they’re not the same. What’s the difference? Business process management (BPM) is a discipline designed to manage processes across an entire organization, from as small as tracking a team budget to as large as supply chain management for a company. Workflow is how a process is concretely represented in tasks, assignments, decision logic, etc.

Using Action Policy for a Ruby on Rails App: The Basics

To keep your app secure, you need to control who and what can access it. Access control can be categorized into authentication — "who" to allow — and authorization — "what" they can access. Authentication is a subject for another day, but when it comes to user authorization, you generally have two ways to go about it: using a role-based or resource-based strategy. In this two-part series, we'll take a deep dive into using the Action Policy gem for a Ruby on Rails blog application.

Collaboration is futile without these UX best-practices

More aspects of our work and life are online than ever before, and the trend towards remote work and increasingly remote teams is set to continue. Whilst we enjoy the freedom and flexibility that remote work provides, remote teams also face a significant challenge: establishing (and desiring) a sense of connection despite the physical distance between individuals.

Building with Unity software on Bitrise: The best mobile offering for Apple Vision Pro Spatial Computing

Bitrise now offers comprehensive support for building with Unity software, streamlining the development for Apple Vision Pro spatial computer mixed realities, mobile gaming, metaverses, and immersive AR/VR worlds.

Top 10 Best Integration Testing Tools On The Market

Software testing does not stop at checking individual components. Even if those components are working perfectly fine individually, issues can still arise when we combine them together into a unified system. Integration testing ensures that components communicate well with each other to form a complete application, and QA teams usually leverage integration testing tools to achieve that.

Troubleshooting an Intermittent Failure in CI Tests on ARM64

The Kong Gateway CI was failing intermittently (about once every 100 runs) on the ARM64 platform with a strange error: “attempt to perform arithmetic on local 'i' (a function value)”. The variable i in the context is an integer but at runtime, it was sometimes a function value. This is caused by an error in the LuaJIT ARM64 JIT compiler. We’ve investigated and found the issue and the fix is merged in the LuaJIT upstream. This document describes how we fixed the error.