Systems | Development | Analytics | API | Testing

Latest Blogs

Fighting Financial Crime and Earning Trust Using Data-Driven Compliance

One of the most challenging and complex elements of operating a financial services institution is compliance. Managing risk, security and privacy to earn customers’ trust has long been at the core of financial services, but this foundation has been shaken over recent years.

Testers Should Absolutely Be Part of the Scrum Teams

As a pragmatist, one thing that bothers me in movies is when characters withhold critical information from each other. Don’t get me started on all the secret plans that did and didn’t work in The Last Jedi. On the other hand, I realize that this is done by the writer to build drama and add tension to the story. It’s often a necessary evil to advance the plot. Well, friends, life is not a movie.

4 Tips for Recognizing and Avoiding Analytics Bias

One of the key cornerstones of the emerging field of ethical, explainable AI is recognizing and avoiding bias. As AI takes on a greater role in organizations with sometimes opaque calculations, there is an increased urgency in many businesses to get ahead of these challenges, and companies, such as IBM, Salesforce and Microsoft, have already added roles specifically with the aim of ensuring that ethics are a key consideration of AI.

A Finance Leader's Guide to Data Modernization

In today’s tech-forward companies, CFOs are tasked with managing and overseeing an increasingly expansive domain of systems and technologies to thrive. The rise of regulatory considerations, novel market drivers and a globally connected business environment is creating an entirely new set of pressures on both the structure of the department and on leadership.

KuppingerCole API Management and Security Leadership Compass Names WSO2 an Overall Leader

In the KuppingerCole API Management and Security Leadership Compass 2021, Lead Analyst and CTO Alexei Balaganksi states, “Our general recommendation for customers remains the same: both API management and API security should not be considered as standalone, isolated components of your IT infrastructures.

Building the RealWorld API in Low-code

RealWorld is a popular open-source project known as the mother of all demo apps. It is an exact clone of Medium.com (called Conduit) and can be built using any front-end and back-end. This article will share the journey to replicating the RealWorld REST API (Conduit) from scratch using Linx, a low-code developer tool. All stacks that integrate with Conduit will integrate with the newly created API. Technologies and tools used to develop RealWorld API: Notes

Why you should start improving the images on your website

At LoadFocus, we’ve implemented an easy way to monitor the rendering of websites on desktop and mobile devices, this helps you get hints on how to improve the images that you load on your website. Your website’s or blog’s speed is a very important metric in ranking in search engines Try to keep that in mind when developing new features and adding fancy images and animatios to your pages.

How to Handle Unhashable Type List Exceptions in Python

The Python TypeError: unhashable type: 'list' usually means that a list is being used as a hash argument. This error occurs when trying to hash a list, which is an unhashable object. For example, using a list as a key in a Python dictionary will cause this error since dictionaries only accept hashable data types as a key. The standard way to solve this issue is to cast a list to a tuple, which is a hashable data type.

How to Catch Multiple Exceptions in Python?

When a program encounters an exception during execution, it is terminated if the exception is not handled. By handling multiple exceptions, a program can respond to different exceptions without terminating it. In Python, try-except blocks can be used to catch and respond to one or multiple exceptions. In cases where a process raises more than one possible exception, they can all be handled using a single except clause.