Latest blogs from us

Setting up a simple performance test with Jmeter

Introduction Performance tests can be daunting for the first-timer with little to no experience. Hopefully, this blog will help you to get started. We are going to use a simple open source API https://catfact.ninja/fact. Catfact is one of the most popular free APIs on which a simple performance test will be done. First Steps We … Continue reading Setting up a simple performance test with Jmeter

Product listing and detail – Part 1

https://youtu.be/8qgLdGqrBL0 In this blog we are going to see how we can display list of products fetched from an API and the product detail screen. We are going to use Retrofit to make the api call. Add these dependencies to add retrofit to our project. Follow the retrofit doc to add the dependencies - https://square.github.io/retrofit/ Continue reading Product listing and detail – Part 1

Testing

https://youtu.be/slNApFY0w7Q Testing your app is an integral part of app development. By running tests against your app consistently, you can verify your app's correctness, functional behavior, and usability before you release it publicly. Testing also provides you with the following advantages: Rapid feedback on failures.Early failure detection in the development cycle.Safer code refactoring, letting you … Continue reading Testing

MVVM architecture pattern

In this blog we are going to see about the importance of architecture pattern and MVVM architecture pattern in android application development. Let's dive in.... https://youtu.be/AaCslcvvufc Architecture pattern Architecture is an integral part of any application development. It helps in writing a clean , testable and manageable code. Following an architectural pattern will benefit in … Continue reading MVVM architecture pattern

Sound Classifiers: Here is how to build them

If your objective is to identify only 1 particular sound among all the other sounds, or it is to identify if the sound source is ObjectA or ObjectB; you are in the right place. At the end of this blog, you will know enough to get started on your classifier. We will take the example … Continue reading Sound Classifiers: Here is how to build them