Have you heard about RoboGuice? Well, don’t be surprised. It is now getting familiar like other things in Android development. RoboGuice uses Google Guice library, a simple framework and easy-to-use dependency injection to Android. Just think about casting a view using findViewById() and it is so necessary, for which you have a one new thing i.e. […]
“mappedBy” is a static map which is used to determine and change the way two associated domain classes interact with each other. Let’s start with the role of “mappedBy” in one-to-many relationships. Consider the following Example:- [code]class Team { static hasMany = [members: TeamMember] }[/code] [code]class TeamMember { Team memberOf Team captainOf }[/code] The Team […]
Prediction Analysis is the practice of extracting information from existing data sets in order to determine patterns and predict future outcomes and trends. There are various analytic and machine learning tool available in the market for predictive analysis. This post includes introduction of Knime followed by a sample use case of clustering using Knime and […]
Big Data in itself brings many challenges; as is the case with anything related to data. Predictive Analysis is one part which takes up much effort and attention as well. One of the foremost challenge which one comes across is how to get started with the “subject”. I would first like to highlight the basic […]
Grails gives us the freedom to create web applications quickly and with maximum productivity, but with the fast development, we often leave the basic code quality rules and after a few months of project we end up so much messy code that even we are not able to read it, forget about understanding it. Codenarc really […]
MySQL and MongoDB are a very popular open-source databases these days. Through this blog, I wanted to share a use case of migrating MySQL database to MongoDB database and perhaps want to share few lessons during the migration process which would be helpful. There are three steps to the migration process: Suppose you have a user table […]
In this post we are going to learn about Gradle installation in Ubuntu 14.04. 1. Open terminal and execute this command to install Gradle $ sudo apt-get install gradle This command will set the path variables automatically. And, you are ready to work with Gradle. code 2. Download Gradle from the official website and extract it […]
Introduction Boto is a python package which provides an interface for AWS. With boto library, we can call the AWS resources using python script. This article walks you through the step by step guide for using boto library for calling AWS resources. Step 1 : Installation Step 2 : Configuration Step 3 : Creating […]
I recently had to integrate a PayPal payment mechanism in one of my Android applications. So I thought to share my knowledge with the community that you can easily integrate payment mechanism in your application. What is PayPal? Established in 1998, PayPal is an American company allowing payments and money transfers to be made through […]
Now a days , angular ui-router is being used actively for maintaining routes in angular applications. In my current project, I came across a use case in which I had to perform certain checks before executing certain route mapping. For example lets consider the most basic situation in which we want to directly show dashboard […]
Couple of days back, we got to know about Pivotal deciding to end the sponsorship of Groovy and Grails project from 31st March 2015 through Guillaume Laforge’s blog post and Graeme Rocher’s post Like many others in the community, news has taken us by quite some surprise. Just to give everyone context, we are a […]
This is the second blog of the Spark series. This blog post include setup of Spark environment followed by a small word count program. The idea behind the blog is to get hands on in Spark setup and running simple program on Spark. If you want to know more about Spark history and it’s comparison […]