Saturday, March 25, 2017

Compress html, json, css and js resources

Standard
Hello All:

We use static resources like html, css, js or json in multiple places to convey information. When we write these files they contain lots of white spaces which can increase the file size as a whole. Here I am going to share a simple tip to reduce the file sizes of static resources.

Monday, February 27, 2017

Tuesday, January 31, 2017

Infrastructre as a code for Nodejs, Ubuntu and Nginx

Standard
Hello All:

Hosting a web application on a cloud platform (like AWS, Azure etc) requires lots of housekeeping task involving server provisioning, installing software etc.

Infrastructure as a code is a paradigm in which the necessary infrastructure is brought up with the help of code.

Wednesday, January 4, 2017

Tuesday, February 2, 2016

RetroClient- Library for making HTTP calls using Retrofit and OkHttp

Standard
Hello All:

Interaction with back-end using REST based API is very common in application development.
There are multiple libraries to make network calls on Android. Following two are most used.
  1. Volley
  2. Retrofit
In this tutorial I will share a library which can be helpful in making network calls on Android.