TO THE NEW Blog PAGES

MobilityTechnology

STACK VIEW IN iOS 9

Gone are the days when every scrollable grid is either TableView or CollectionView. Enter StackView.! Stack view is a simple class that allows to stack layout views in either a column or a row. What makes it more helpful is the elimination of the need to add the constraints. It applies Auto Layout to the […]

Ashish Jain
Ashish Jain
Read

Android

Introduction to Android ExoPlayer

ExoPlayer as the name suggests is a type of media player built on top of Android’s low level media API’s. It is a better replacement for traditional MediaPlayer that Android framework provides as it has some enhanced features such as Dynamic Adaptive Streaming over HTTP (DASH), HLS adaptive streams etc. It can be used to play […]

Md. Asif Khan
Md. Asif Khan
Read

AWSDevOpsTechnology

Leveraging AWS Read Replica for minimal downtime

It is really a very big problem to apply indexing or executing any query on a table containing millions of records. There is a large probability of query taking locks on the table. A few people just wait for the query to execute while some just end up killing important background queries. Both the above-mentioned […]

Java/JVMTechnology

#Hazelcast : Enhance throughput of Java apps performance by optimization of object deserialization and distributed query

Hazelcast is a popular solution for In-Memory Data Grid that is often used with Databases in order to improve performance of applications, to distribute data across servers, clusters and geographies and to manage very large data sets. Here’s a quick reference to integrate hazelcast with grails  . Since Hazelcast is a distributed system, we need to put serialized […]

Bijoy Paul
Bijoy Paul
Read

Technology

Create your custom Icon Fonts with Icomoon

In the modern web, everybody wants their site should response quick and fast. This blog is not related to any web performances, but it will talk one key factor of web performance which is using CSS icon fonts instead of images. Nowadays using icon fonts is very popular and useful. The purpose of creating a […]

Services