Systems | Development | Analytics | API | Testing

July 2023

4 lessons from scaling a startup: Matthew O'Riordan on the Code Story podcast

Code Story is a podcast that invites tech leaders to reflect on their journeys, the products they’ve created, their successes, and their mistakes. Our CEO Matthew O’Riordan recently spoke with host Noah Labhart to share more about Ably’s story and the lessons he’s learned along the way. You can listen to the full episode here, but we’ve pulled out a few highlights below.

Top 3 Tools for Managing an Online Store's Inventory

If you are building an online store that just has a few products, or you are looking to create an online store that rivals Amazon in what it can deliver to the customers, you have probably noticed that there is a problem with keeping your inventory in check with what your customers want to purchase. There are a lot of issues that online stores can run into, especially since online stores are designed to be slightly divorced from the companies that produce the various products that they are selling.

Data Warehouse Modernization: Diving Deeper into Qlik Talend Data Integration and Quality Scenarios

Step right up, ladies and gentlemen, and witness the grand spectacle of the digital age! In a world where data is king, where information reigns supreme, and cloud data warehouses are multiplying like rabbits, there's a technology initiative like no other— Data Warehouse Modernization! This article is the second in the series "Seven Data Integration and Quality Scenarios for Qlik and Talend," and answers everything you wanted to know about Data Warehouse Modernization but were afraid to ask.

OOP Concepts in C#: Code Examples and How to Create a Class

Object-oriented programming (OOP) is a paradigm (a sort of “style”) of programming that revolves around objects communicating with each other, as opposed to functions operating on data structures. C# is the flagship language of the.NET ecosystem. Despite being a multi-paradigm language, its forte is certainly OOP. OOP is a recognized programming paradigm, but programming languages differ in how they interpret and implement its tenants.

Mobile A/B Testing and Conversion Rate Optimization in Product Analytics

Product analytics, as a pivotal component in the modern digital business ecosystem, empowers organizations with data-driven insights to make informed decisions and craft superior user experiences. Particularly, A/B testing and conversion rate optimization (CRO) are critical techniques for fine-tuning mobile applications. This article delves into the technical aspects of implementing and analyzing these strategies, specifically within a mobile context. ‍

The Collaboration of Code: JavaScript, TypeScript, and CoffeeScript

In the vast universe of coding, JavaScript has earned itself a reputation of being a dynamic, high-level, interpreted language, often employed for enhancing user experiences on the web. However, as the complexity of web applications increased, developers craved more structure, static typing, and syntax variations. Enter the JavaScript dialects. They can be seen as extensions of the original JavaScript, with each one providing alternatives suited to diverse needs and preferences.

.Net Core Dependency Injection

Dependency Injection (DI) is a pattern that can help developers decouple the different pieces of their applications. It provides a mechanism for the construction of dependency graphs independent of the class definitions. Throughout this article, I will be focusing on constructor injection where dependencies are provided to consumers through their constructors.