Arun Chandravanshi

Android Glide Library Example

On loading the list of images manually these three problems encounter i.e OutOfMemoryError, slow loading and UI unresponsiveness(flickering). To come out from these problems we can use Glide library. In this article, we will talk about Glide in brief, how glide solved the above problems and also build a simple image gallery app where all the […]

Android Glide Library Example Read More »

Android Handler with Example

In the previous article, we have talked about Thread . As we know it is possible to access UI components inside the worker thread using some of the methods like Activity.runOnUiThread(Runnable),  View.post(Runnable)  View.postDelayed(Runnable, long)  But there is one more alternative in android i.e Handler which also allows you communicate back with the UI thread from other background thread.

Android Handler with Example Read More »

Android Thread Example

In this article, we will talk about what is thread and how to create a separate worker thread in our android application to achieve asynchronous processing with a basic example. Thread Android follows a multitasking design. This allows a number of applications to run at the same time. Let’s say you are playing a song in

Android Thread Example Read More »

Getting started with SSH

In this article, we will talk about what is SSH, how it works. We will also talk about when we use SSH and the different encryption techniques used in SSH in detail. SSH Introduction SSH  or secured shell is a protocol. Now, what does it mean? You may have heard about other protocols like HTTP,

Getting started with SSH Read More »

Getting Started with Android Application

In this article, we will talk about how to get started with the very first android application HelloWorld. So step by step we will talk about how to install Android Studio, how to create android application HelloWorld, its initial project structure and then we will talk about how to create and run your first Android

Getting Started with Android Application Read More »

ReactJS|State

In the previous article on ReactJS|Props  we have talked about What are props? Now What if we want to manage some data inside the component that may change over time. To achieve this React comes with State. Now, what is state? In this article, we will talk about react state in greater detail. What is State?

ReactJS|State Read More »

ReactJS|Props

What if we want to pass data from one component to another that’s because we don’t want the component to display static data instead we want to pass dynamic data to the component and render it over the webpage. To achieve this React comes with props. Basically props are used to pass data from component

ReactJS|Props Read More »

ReactJS|Introduction to JSX

In this article we will talk about what is JSX and why do we need JSX in react applications.We will also talk about basics of JSX and how to work with JSX . What is JSX? JSX (JavaScript XML) is an XML-like syntax extension of JavaScript. Here “syntax extension” means that JSX is not valid Javascript.

ReactJS|Introduction to JSX Read More »

ReactJS|Creating First React Component

In this article we will talk about what is component and how to create our first react component with simple example. React applications are made out of components.Components let you split the entire application into independent, reusable pieces which can then be composed together to form complex UI.   What is component? A component is a

ReactJS|Creating First React Component Read More »