Systems | Development | Analytics | API | Testing

%term

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.

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.

Streamlit in Snowflake: Improved Customization, Performance and AI Capabilities

Snowflake’s mission is to mobilize the entire world’s data, and there are millions of data scientists and developers who don’t have access to full-stack engineering teams. It’s been our endeavor to bring the power of the AI Data Cloud to every individual developer, data scientist and machine learning engineer, so that they can build and share world-class data apps — all by themselves. Streamlit is an open source library that turns Python scripts into shareable web apps.

Insightful: Mastering Workforce Analytics for Growth

In the dynamic world of technology, managing and optimizing workforce productivity is a challenge for many organizations. Insightful, a leading workforce analytics and productivity software, is designed to address this challenge by providing actionable data insights. This review will delve into the features, pricing, pros, and cons of Insightful, a tool that is transforming the way organizations manage their teams.

How to Turn a REST API Into a Data Stream with Kafka and Flink

In the space of APIs for consuming up-to-date data (say, events or state available within an hour of occurring) many API paradigms exist. There are file- or object-based paradigms, e.g., S3 access. There’s database access, e.g., direct Snowflake access. Last, we have decoupled client-server APIs, e.g., REST APIs, gRPC, webhooks, and streaming APIs.

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.

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.