AngularJSFront End DevelopmentTechnology

Angular 2 Dependency Injection

In this blog, we will go through the new dependency injection system of Angular 2. As we know DI is the heart of AngularJS. In Angular 1 we can inject dependency at multiple places in different ways such as: in the directive definition by name   eg. [js]app.directive(‘questionTemplate’, [‘$http’, ‘Flash’, function($http, Flash) {}[/js] in the controller function […]

Technology

Backing Up ElasticSearch

As with any software that stores data it is important o take back up of that data. Elastic search is a data store with exceptionally good capabilities of searching. In elastic search data is stored in indexes. So Either you can take back up of whole cluster or you can take back up of indexes you […]

Technology

Integrating customer.io for Sending Right Messages at the Right Time

Email marketing present so many benefit over other traditional forms of marketing. It drives better returns on investment and customer engagement metrics than other marketing techniques because of Reduce Overhead Costs and Reduced Time and Efforts. The old process for sending an email involves only one step as send an email, and that’s it. We […]

Technology

Future of Data Binding

A new revolution has come. There are few new APIs introduced in ECMAScript 5, but the most interesting functionality is added to Object property code. This new code gives you the ability to redefine the capabilities of an Object property. Capabilities like preventing Object manipulation, enumeration, deletion and addition of new property and even defining […]

Technology

Preview Image and Watermark configuration with jw player

Video is one of the most popular internet activity worldwide these days. Almost every website needs a player to be embed in it. An important technique to increase the popularity and for branding is to use watermarks on player. It is the best way to promote your brand throughout the video and also the ceapest […]

Technology

How a Newer Investigated a Java Out Of Memory Error.

So one fine day newer came to office and got an interesting problem from his team lead. One particular API was giving Java Out Of memory Error with only 10 concurrent threads. So the Newer started to investigate the problem so at first he reaches to the server and try to collect stats about the […]

GrailsTechnology

Run Grails application as standalone application

Most Grails application are intended to deploy within external container. According to the traditional way of deployment, the apps are bundled as war packaging, deploy it into any external container like tomcat and Jetty. There is a plugin Standalone App Runner which allow to em-bade a container inside the grails application itself. The advantage of that […]

Sanchit
Sanchit
Read

Node.jsTechnology

Natural Language Processing

NLP is the branch of computer science, focused on developing systems that allow computers to communicate with people using everyday language. NLP is where computers attempt to derive meaning from human or natural input. we’ve seen huge strides in the last few years. There is several huge projects developed on it like CALO and Wordnet. Stanford’s CoreNLP (demo here) […]

Technology

Sass Imports with Sass Globbing

If we are using Sass to preprocess stylesheets, we must have knowledge about partials. A partial is a sub-stylesheet, intended to be included as part of a main stylesheet. So as to avoid adding “partials” every time, we can use the sass-globbing gem to remove the extra overhead. Sass Globbing to rescue Sass-globbing is a […]