TO THE NEW Blog PAGES

Grails

Integrating PubNub With Grails

PubNub is a real-time push service provider for different platform and by using PubNub with Grails we can create push notification system similar to Facebook. My use case was that I needed to create a notification system where user should be notified for different activities which is required for the user to be known. A […]

Sumant Thakur
Sumant Thakur
Read

AngularJSFront End Development

Minification safe Angular.js

Recently, I wanted to upgrade my Grails application to 2.4.3 and also switched from resource plugin to assets-pipeline plugin. As everything was going good in the development, so I pushed it to QA after which I was bombarded with JavaScript errors and missing providers. What has happened?? So here, Angular.js internal dependency injection was broken… 🙁 Since Angular […]

Brij Kishor
Brij Kishor
Read

Grails

SonarQube – All in one code quality manager

Introduction to SonarQube: We all are well aware of the importance of codebase quality, unhampered of “deadly programming skills” which can wreck our code. But isn’t it quite cumbersome to implement different tools to look upon its different aspects. What if in one place, we can have detailed insight of all the development sins. This […]

Technology

Why are atomic commits a best practice in Git?

Atomic means all or nothing – either everything succeeds or all fails. Git is known to have atomic operations i.e. an environment issue will not cause git to commit half of the files into the repository and leave the rest. So what are we doing talking about atomic commits when all operations are already atomic in […]

Aseem Bansal
Aseem Bansal
Read

Node.js

Highlighting links in text using “linky” filter

At times we come across few cases where we need to differentiate the links amongst the plain text. Angular provide us with a very useful filter named : “linky” which help us to do so. With the help of linky filter we can detect links from text and show them differently .  Linky takes text and produces HTML by […]

Rubi Saini
Rubi Saini
Read

Big Data

Spark 1O3 – Understanding Spark Internals

In this post, I will present a technical “deep-dive” into Spark internals, including RDD and Shared Variables. If you want to know more about Spark and Spark setup in a single node, please refer previous post of Spark series, including Spark 1O1 and Spark 1O2. Resilient Distributed Datasets (RDD) – An RDD in is primary abstraction […]

Node.js

High performance find query using lean() in mongoose

Using lean() in mongoose provides high performance queries.

Sakshi Tyagi
Sakshi Tyagi
Read

Big Data

Predictive Analysis in R using Rattle

R is the most common platform for predictive analysis. Rattle library is an extension of R which takes the predictive analysis to another level. This blog is focused towards  people who have some experience in R. Rattle is the library provided for R language that is used for data mining process, where you can apply […]

Mohit Garg
Mohit Garg
Read

Android

Introduction to RoboGuice with a brief example

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. […]

Anand Rai
Anand Rai
Read

Grails

Significance of “mappedBy” in Grails Domain

“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 […]

Naman Gautam
Naman Gautam
Read

Big Data

Prediction Analysis using Knime

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

Predictive Analysis – Introduction

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 […]

Rishabh Jain
Rishabh Jain
Read