Picasso Image Loader Library in Android

Picasso A powerful image downloading and caching library for Android download the image and display on imageView //Initialize ImageView ImageView imageView = (ImageView) findViewById(R.id.imageView); //Loading image from below url into imageView Picasso.with(this) .load(“YOUR IMAGE URL HERE”) .into(imageView); https://github.com/codepath/android_guides/wiki/Displaying-Images-with-the-Picasso-Library Displaying Images with the Picasso Library READ MORE

Data Binding MvvM

https://barta.me/android-mvvm-pattern/ Android MVVM pattern August 28, 2016 by Milan Bárta In my last post, I’ve introduced the Android data binding support library which helps to get rid of unnecessary boiler-plate code related to view-model binding. In this post, I’d like to introduce you to the Android MVVM READ MORE

Incremental vs differential backup – what is the difference?

http://novabackup.novastor.com/blog/differential-incremental-backup/ Differential and Incremental  backups are called “Intelligent” backups. Because only a small percentage of information on a computer changes on a daily basis, running a full-sized backup every day can result in wasted time and disk space. Differential and Incremental backups READ MORE