Systems | Development | Analytics | API | Testing

Transforming E-commerce with Spaces & Tech - With Tyler Scriven, Saltbox | The Innovation Blueprint

Welcome to Episode 15 of The Innovation Blueprint! In this episode, Yurii Rudakov from ORIL chats with Tyler Scriven, Co-founder & CEO of Saltbox, a unique platform transforming e-commerce with spaces that combine warehousing, co-working, and tech-driven logistics. Tyler shares his journey from startup struggles to scaling Saltbox into a thriving business with 12 locations across major U.S. cities.

Ultimate Guide to API Audit Logging for Compliance

API audit logging is essential for tracking API interactions, securing sensitive data, and meeting compliance standards like GDPR, HIPAA, and PCI DSS. It records who accessed data, what actions were taken, when it happened, and more. Proper logging can reduce data breach risks by up to 70% and improve regulatory compliance by 90%.

An Introduction to Testing in Python Flask

So, you've built a Flask application — congratulations! You've crafted routes, connected databases, and perhaps even deployed it to a server. But have you tested it thoroughly? Testing isn't just a checkbox on a developer's to-do list: it's an essential part of building robust and reliable applications. So, in this article, we'll describe why testing is important for Flask applications and how you can effectively implement tests.

WSO2 APK + Moesif API Analytics: Drive API Performance and Adoption

WSO2 APK (WSO2 API Platform for Kubernetes) provides a robust, Kubernetes-native platform for managing APIs. It’s purpose-built for cloud-native teams requiring fine-grained control over APIs in modern, distributed environments. With support for microservices architecture, secure ingress, and service discovery, APK solves the infrastructure side of the API equation.

How AI Transforms the Pharmaceutical Labeling Process

Pharmaceutical labeling is an ideal use case for AI because it’s a complex process that requires high levels of accuracy. Inaccurate labeling can result in: With recent breakthroughs in AI technology, pharmaceutical companies have rushed to explore its potential. But many have not seen the impact they expected. The problem isn’t the AI. It’s how pharma companies are using AI.

Introducing Kong's New MCP Server to Access Your API System of Record

MCP is a new way to integrate LLMs and AI agents with third-party data sources and APIs. It significantly improves how we build tool integrations by eliminating duplicated code and providing a centralized interface for multiple agents to access shared tools. Today, we’re excited to announce the release of Kong’s MCP Server for the Kong Konnect platform. This empowers customers to integrate AI agents and query LLMs to discover APIs, services, and traffic analytics in real time.

How Node.js Handles Async Operations

Node.js is designed to be asynchronous and non-blocking, making it highly efficient for handling multiple operations at once. Unlike traditional multi-threaded architectures, Node.js operates on a single-threaded event loop, meaning it executes JavaScript code in a single thread but can still handle multiple tasks concurrently. This is achieved through asynchronous I/O and event-driven programming, allowing Node.js to remain lightweight and performant even under heavy workloads.

What is Libuv: The Engine Powering Node.js and Beyond

Libuv is one of the most crucial components behind Node.js, yet many developers aren't fully aware of its role in enabling asynchronous I/O operations. As a high-performance, cross-platform support library, Libuv is at the heart of event-driven programming in Node.js, but its impact extends far beyond that. Santiago Gimeno is a Libuv maintainer and Senior Software Architect at NodeSource.