You can allow Cross Domain Ajax calls to an application by just registering a new filter and then configure it to Allow-Origin : {your domain’s} or you can use a wild card “*” to allow the calls from all domains. You can even Define the Custom Headers your application supports by defining them in a […]
Application SecurityTechnology
We saw different implementations of a password reset functionality to ensure application security along with their best practices in the first and the second blogs of the series. In this final blog of the series, we will discuss the concept of Multi-Factor Authentication (One Time Passwords i.e. OTP) for the implementation of a reset password […]
As we know that Docker has released a newer version of their Docker Engine i.e. version 1.9. One major change is in the way we handle Docker networking and that is what we will be talking about in this blog. You can install the latest version of Docker from this link. It is supported in the newer […]
Cross-device buying is a phenomenon in which the consumers are choosing different devices in different phases of their purchase. The consumers start with a specific device for their research and further traverse on to a different device to make the decision to buy and some more devices to make the final purchase. Cross-device purchase as a phenomenon […]
AngularJSFront End DevelopmentTechnology
In an Angular application, when we use a controller as syntax we generally encounter isolated scope binding issues, controller’s scope is bound to ‘this’ reference. But how does it work while building directive with an isolated scope? We can create an isolated scope by adding an object to our directive definition that explains how every […]
TO THE NEW Digital has been given a wonderful opportunity to run a campaign by Ministry of Tourism Indonesia with a collaboration with CNBC. The goal of this campaign entitled ‘Discover Wonderful Indonesia’ is to raise awareness about the beautiful places in Indonesia, its vivacious culture and to promote the tourism industry in the country. The […]
I’m pretty sure most of us have heard of GIFs, but how much do we really know about it? Here’s a simple introduction to what exactly GIFs are, and how to post them on Facebook. What’s a GIF? GIFs stand for Graphics Interchange Format, first introduced in 1987 before becoming a widely used file format because of […]
Here we are again, but this time as GR8ConfIN 2016. As you would know GrailsConf is now GR8ConfIN and we’re glad to announce the Call for Attendees for GR8ConfIN 2016. Early Birds will get heavy discounts on their tickets. Register Now to avail early birds discounts. This time we have Burt Beckwith and Jacob Aae […]
Overview This blog is related to the Yarn Cluster Optimizations for executing the spark jobs on yarn cluster. In this blog post I will be discussing about the YARN Optimizations for the efficient utilization of available resources to execute the spark jobs on yarn cluster. These optimization configurations could be done either in the config […]
To start with lets suppose we have a function getCount as defined below- [code lang=”html”]function getCount(a,b,c){ return this.count + a + b + c; }[/code] To provide different scope at the time of “getCount” function execution. We generally use these functions 1- .call(): [code lang=”html”] var obj1 = { count: 10 }; getCount.call(obj1,4,5,6); // functionName.call(‘this’ […]
This blog will introduce you to Android TV platform from what android TV is, How it is different from Android mobile development and finally how to create an Android TV app. Note: This blog is just the introduction to the Android TV not a full coverage of Android TV development. What is Android TV ? […]
I have always loved using Docker the traditional way. Running commands like docker run etc. has been the way we use Docker. While surfing the internet, I found this chrome app which can be downloaded and installed via google chrome and easily be used for getting a user-interface for your Docker Engine. It simplifies the […]