TO THE NEW Blog PAGES

AndroidConnected TVMedia & Entertainment

An introduction to SMAF

With the recent advancements in Smart TV ecosystems, almost one million Smart TVs are estimated by 2017.  Most of these Smart TVS belong to HTML / CSS / Javascript platforms. However, few Android TVs are based on java  platforms whereas Roku TVs apps are developed on Brightscript platform. Though all Smart TV‘s provide their own API’s […]

Android

YouTube Player Integration in Android

YouTube allows you to play it’s video in your app using the youtube player. It also provides data APIs to put like, dislike, or rate comments on a video. To integrate youtube player you need API key from google console and you can get it using following steps: 1. Get SHA1 fingerprint first by executing “keytool […]

Technology

Up and Running with Neo4J

 Neo4J is a NoSQL database that stores information in the form of a huge property graphs where tuples/rows (nodes) are connected to each other with relationships (edges) both of which can have variable number of properties associated with them. Traversing data in the form of graphs implies that we can explore highly connected neighbouring data […]

Front End DevelopmentTechnology

[INFOGRAPHICS] 10 Pragmatic UX Techniques for Building Smarter Products

Designing an interface is not all child’s play! It’s not just about how good looks and great features! It is more about the overall usefulness and usability of a website or application, which is determined by how well it is performing the desired functions and how easily accessible it is. Every design has unique requirements […]

Connected TVMedia & Entertainment

Amazon TV Introduction and Configuration for Development

Introduction Amazon Fire TV, developed and released by AMAZON in April 12, 2014. it’s a powerful streaming media device which helps to enable app and game developers to reach more customers in the living room. Availability The new Amazon Fire TV is mainly available to customers in US, UK, Germany, and Japan. Specifications Amazon Fire TV has […]

Drupal

[INFOGRAPHICS] 10 key features to be excited about Drupal 8

Drupal 8 is a fast and widely used enterprise web CMS across the globe. It is flexible and packed with out-of-the-box features that help you manage and deliver web content across various channels and devices efficiently. It has over 200 new built-in features that can be used to streamline work and achieve incredible digital experiences. […]

DevOps

Using Docker Compose to Migrate WordPress Website on Docker

Docker is a like your mini virtual machine that is very light on your host resources. Unlike virtual machines, which need their own kernel, Docker creates virtualized experience on top of your running kernel. The mini virtual machines provided by Docker are called “containers”. These containers are platform independent and can be reused for deploying […]

AWSDevOps

AWS Autoscaling group configured with ELB and Alarms in Boto (Python)

Autoscaling is a service in AWS, which is used to launch or terminate an instance based on user-defined policies, health checks, and schedules. There are several ways to configure an auto-scaling group in AWS, here we are focusing on implementing it in python using AWS python module boto. Before Creating  an Autoscaling Group  we have to […]

AWSDevOps

AWS Security Re-Check

Security is of prime importance for any cloud vendor including AWS. AWS follows a Shared Responsibility Model for security. As the name Shared Responsibility Model suggests, security on AWS is not the sole responsibility of either AWS or the customer. It is a combined effort from both parties. The responsibility of AWS includes providing a […]

Technology

How to aggregate data by referring to multiple sheets in Google Spreadsheet using multiple functions

  Problem Statement: Suppose you are running a small business or creating a timesheet based cost calculations in any organization as a Lead, then you may need to refer data from different sheets within a single google spreadsheet to get the desired output/result. Also, there might be a case where you want to see and […]

Technology

Content Migration to Adobe Experience Manager (AEM)

Content migration is the process of moving your website with all its content and digital assets from one platform to another. This data migration can either be done manually or in an automated manner. One of the most effective CMS (Content Management Solution) available today is the Adobe Experience Manager (AEM). AEM implementation is done […]

Technology

StringJoiner in Java 8

Being a programmer, at some point of time we encountered a situation in which you wanted to join (not concat) multiple strings of delimited items in Java. Worst can be if you are provided multiple string literals. Just think for a second and how will you build a string of delimited items using these literals. […]

Services