Systems | Development | Analytics | API | Testing

Bridging the Gap Between Oracle Operational Reporting and Analytics with Angles for Oracle ERP

As Business Intelligence (BI) tools, data warehousing solutions, and enterprise data and application landscapes have advanced, it’s worth taking the time to rethink that old model, starting with the dichotomy between operational reporting (OR) and strategic analytics. There is a clear difference between operational reporting and BI, but they can and should work together. Companies use one or the other, and if they have both, there is a gap between them.

10 Critical E-commerce Metrics To Track Unified Customer Insights

Digital industries have come a long way in recognizing the value of their customers' data for making well-informed and timely decisions. Businesses invest a lot in implementing innovative strategies, but they also need some metrics to observe the effectiveness or success of those strategies to drive future decisions. Like any other industry, metrics in the e-commerce industry are quantifiable measures of an online business's performance.

Snowflake's New Engine and Platform Announcements

Snowflake’s Data Cloud is powered by a single engine. From day 1, we have been focusing on consistently evolving and improving this engine to allow existing workloads to run more efficiently and enable new workloads to run on Snowflake. The single engine approach translates into a single experience—from one consistent pricing model to an integrated approach combining performance, security, governance, and the foundation to seamlessly enable cross-region or cross-cloud scenarios.

MLOps NYC Summit: Building an Automated ML Pipeline with a Feature Store using Iguazio & Snowflake

In this session, we will describe the challenges in operationalizing machine & deep learning. We’ll explain the production-first approach to MLOps pipelines - using a modular strategy, where the different components provide a continuous, automated, and far simpler way to move from research and development to scalable production pipelines. Without the need to refactor code, add glue logic, and spend significant efforts on data and ML engineering.

Managing user profiles in your applications with SCIM2 #Identityin15

In today's episode, we will discuss how you can manage your user profiles with SCIM by using WSO2 Identity Server as a SCIM service provider in just 15mins. The System for Cross-domain Identity Management (SCIM) specification is designed to manage user identity in cloud-based applications and services in a standardized way to enable interoperability, security, and scalability.

How to Write a Functor in Elixir

There’s a function called Enum.map in Elixir that works on multiple collection types, but it's not without its issues. In this post, I will introduce you to a concept from functional programming called a functor. We’ll make a Functor protocol with a function called fmap that will aspire to be a better version of Enum.map. Note: The article is inspired by the Witchcraft library, which we covered in one of our previous posts. But first: what's the problem with Enum.map exactly?