Systems | Development | Analytics | API | Testing

Latest News

AI and Privacy: 3 Things Leaders Should Know for 2024

In the rapidly emerging artificial intelligence economy, organizations will split into two groups: those who are good at AI and those who are bad at business. Most experts agree that AI won’t replace humans, but instead augment us in a world of mixed autonomy. You’ll need new structures to harness AI’s transformative potential while managing its very real risks—the biggest of which is data privacy. So how can leaders handle AI and privacy risks?

Building Bridges Across Blockchains for Seamless Connectivity

As blockchain networks specialize, interoperability between chains has become integral to scalability. Bridges enable disconnected cryptocurrency protocols to communicate and share data or assets seamlessly. This article explores the technical workings of blockchain bridges and innovations like Defi Way pushing the envelope in decentralized interoperability.

Behaviour Driven Development in Ruby with RSpec

RSpec is a library for writing and running tests in Ruby applications. As its landing page states, RSpec is: "Behaviour Driven Development for Ruby. Making TDD productive and fun". We will return to that last part later. This post, the first of a two-part series, will focus on introducing RSpec and exploring how RSpec especially helps with Behaviour Driven Development in Ruby. Let's dive in!

The iOS Developer's Playbook: Mastering SwiftUI Forms

In this article we’re going to examine how a SwiftUI Form can used in our SwiftUI apps. This will be a very technical article useful for any iOS developer, during which we’ll take a deep-dive into the code and then create a SwiftUI Form that combines a user profile with a settings screen. Table of Contents.

Choosing the Right API: REST vs. RESTful for Integration

Choosing between REST API vs RESTful API is pivotal for efficient and scalable business solutions in data integration. Application Programming Interfaces (APIs) are critical in data integration, enabling diverse systems to communicate and data exchange seamlessly. In this landscape, REST (Representational State Transfer) APIs have emerged as a standard, known for their simplicity and effectiveness in handling network requests.

How to Fix "Function Object is Not Subscriptable" in Python

“Subscriptable” is just a fancy way of saying "something you can use square brackets on to get parts from it.” For example, my_list accesses the element at 0 and key, respectively. In Python you can only use square brackets [] to access elements of a list, array, or dictionary. If you try to do the same thing with a function, you get the “function object is not subscriptable” error.