Corporate

Celebrations @ TO THE NEW

Parties & celebrations have become a crucial part of workplace culture where employees enjoy festive time at their workplaces also. Making workplace more vibrant often includes parties on various events so that a wondrous atmosphere is created.  Such an environment improves the relationships, builds team spirit & bonding, while providing a welcome break from daily […]

sukriti
sukriti
Read

AWS

Configuration of ElasticSearch on windows machine

Hi, I try to find the installation process for elasticSearch, but didn’t get a right way to install, after along search on google i got below link: looked helpful but still very tricky and a lot of effort Recently in my project, I got stuck while installing elasticsearch plugin on windows machine. ElasticSearch is built […]

Umar
Umar
Read

Technology

Migrating a Git repository from one server to another.

Recently, I had to migrate one of the git repository from our local git server to Github along with all the branches, tags etc. Since ours is a big project and with many branches, adding second remote and pushing master branch was not an option. And with Git it’s a very simple three step process. […]

Hitesh Bhatia
Hitesh Bhatia
Read

Android

Install RhoSync on ubuntu 11.10 (with fix)

Recently, I was trying to install RhoMobile suite on my ubuntu11.10 machine. And faced some issues for installing ‘rhosync’ package. This blog tells how to fix these issues (as they worked for me).   I am assuming ruby and gem are already installed on your machine. Note: if you are on older version of ruby […]

Salil
Salil
Read

Grails

Understanding Groovy 2.0 withLazyDefault and withEagerDefault methods

Sometimes there is need to get some default value in place of null values from a list, that was the reason I came across: withLazyDefault and withEagerDefault methods. My use case consisted of a list of user names with possibility of null elements, hence wherever the element was null, I wanted to return “unknown”. Although […]

Divya Setia
Divya Setia
Read

Technology

Logging to remote MySQL Server using SSH tunneling

Very often, we all need to access a remote database for debugging or any other related stuff. The simplest thing that comes to mind is to take the dump of remote database and bring it to the local and run the application using that data. We can avoid that, if we can connect our local […]

Sachin
Sachin
Read

AngularJSFront End Development

AngularJS : Text Suggestions

Let’s implement text suggestions functionality using AngularJS. It provides suggestions while we type into the text field. For example, if we have a list of fruits and the user types ‘ap’, it will show all fruit names that contain these letters. [html] <!Doctype html> <html ng-app> <head> <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/angularjs/1.0.1/angular.min.js"></script> <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.1/jquery.min.js"></script> <script type="text/javascript"> […]

raj
raj
Read

Grails

Implement Ajax call in Grails web-flow

In one of my recent project, i want to use grails web-flow with ajax call. It’s very easy to implement the web-flow with ajax call. Grails web-flow always track the actions on the basis of eventId & flow execution key. So, to implement ajax call in web-flow, we have to pass the event id & […]

Mohit Garg
Mohit Garg
Read

Android

Getting started with jQuery Mobile

JQuery mobile provides set of features which are supported on almost all smartphones such as touch UI, ajax navigation, animated page transitions. Building jQuery mobile page is very simple, here’s how: A jQuery Mobile site must start with an HTML5 ‘doctype’ to take full advantage of all of the framework’s features. First of all you […]

Puneet Behl
Puneet Behl
Read