What even is an AI Agent?… Isn’t it just an API Call?If you’ve been hearing “agents will do everything” and thinking… “Isn’t this just a GPT API with a fancy wrapper?” You’re not alone. Here’s the simple truth: An LLM (like GPT-5) is like a very poweMar 31, 2026·9 min read
How to Create and Publish an Android Library for BeginnersIn this article, we will explore the simplest way to create and publish an open-source Android library. This guide is divided into three parts: How to push an Android project to GitHub How to create an Android Library How to publish the library ...Jan 11, 2025·3 min read
Step by Step guide to create basic MVVM Application in AndroidMachine Coding LLD Android - MVVM-Hilt-RetrofitJun 24, 2024·7 min read
Singleton: How to create?In this article, we will understand the Singleton class, the pros and cons of using Singleton, and finally, the ways of writing a Singleton class in Kotlin. What is Singleton? Singleton is a creational design pattern that ensures a single instance of...Jun 2, 2024·4 min read
Understanding Kotlin’s Any, Unit, NothingKotlin offers unique types that can be quite different from what developers are used to in Java. In this blog, we will explore three such types: Any, Unit, and Nothing. Any //SOURCE CODE package kotlin /** * The root of the Kotlin class hierarchy. E...May 20, 2024·3 min read
Ketch — Android File Downloader LibraryAn Android File downloader library based on WorkManager with pause and resume supportMay 5, 2024·4 min read
Inline Function — When to use?In this article, we will investigate the Kotlin inline function in detail and come to a conclusion on when and why to use the inline function. What are inline functions? To make the function inline, we will add the inline keyword before fun to conver...Apr 29, 2024·4 min read