Systems | Development | Analytics | API | Testing

Latest Blogs

How to set up Firebase Crashlytics for a Unity Android app

TL;DR: To add events monitoring with Crashlytics to a Unity Android app, you’ll first need to prepare a Firebase project, then add the Firebase plugin to Unity and configure Unity to work with Firebase. Finally, you also need to update your CI/CD pipeline to support the changes. Let’s see how to integrate Firebase Crashlytics into a Unity Android app to monitor and troubleshoot errors easily!

The next level of the CIAM journey towards digital transformation from Level 0/2

Anybody interested in providing products and services to consumers dreams of building a start-up. For any entrepreneur who aspires to create a market-leading product, this is the first step. In the post-covid pandemic era, you may easily start a digital business by simply creating a website. However, exposing all of your services and products on an internet platform has become a requirement. You will not be able to survive in the market if you do not do so.

Interview with Katie King, CEO of AI in Business

For the newest instalment in our series of interviews asking leading technology specialists about their achievements in their field, we’ve welcomed Katie King, CEO of AI in Business, a firm that specializes in AI consultancy and training. With over 30 years of experience, Katie has advised many of the world's leading brands and business leaders, including Virgin, o2, Orange and Accenture.

4 Most Common Myths Around Test Automation

A common theme among most software testing organizations is their escalating interest in Test Automation. While test automation has grown in popularity, there are still many myths and biases surrounding it. Such myths can unknowingly create a self-limiting boundary and negatively impact the possibilities of test automation. In this article, I will discuss some common test automation myths and biases that people have towards test automation.

Top 8 Machine Learning Resources for Data Scientists, Data Engineers and Everyone

Machine learning is a practice that is evolving and developing every day. Newfound technologies, inventions and methodologies are being introduced to the community on a daily basis. As ML professionals, we can enrich our knowledge and become better at what we do by constantly learning from each other. But with so many resources out there, it might be overwhelming to choose which ones to stay up-to-date on. So where is the best place to start?

A Real-Time Data Integration Fabric for Active Intelligence

Greek philosopher Heraclitus wasn’t talking about the challenge of today’s enterprise IT landscape but the quote certainly fits. From the advent of the first digital computer in the 1940s to the emergence of first public cloud in 2004, the rate of change has only accelerated. In fact, over 60% of corporate data resides in the cloud in 2022, up from 50% last year.

How to Resolve the Instantiation Exception in Java

The InstantiationException is a runtime exception in Java that occurs when an application attempts to create an instance of a class using the Class.newInstance() method, but the specified class object cannot be instantiated. Since the InstantiationException is an unchecked exception, it does not need to be declared in the throws clause of a method or constructor.