TO THE NEW Blog PAGES

Automation Testing

Connect to PostgreSQL using JavaScript

One of the best practices of Automation testing is to leave the system from the state where you started your test from. While doing functional testing for an angularjs application using Protractor and Cucumber (BDD framework), there was a need to clean up whatever data was being generated in the Data setup (generally the Given) […]

AndroidMobilityTechnology

Great User Experience with Contextual Action Bar (CAB)

Now we are going to learn a new interesting thing. In Android versions before 3.0, we have seen all apps having context menu for showing menu, when user long presses item that means long press is only used for showing contextual menu. But Android 3.0 changed the long press gesture. It’s used for handling multiple […]

Technology

Build Custom Analyzer in Elasticsearch

In our project we have two use cases where, we need a custom analyzer that answers both the below use cases :- Let’s take a string “king of pop michael jackson” thats indexed somewhere in my elasticsearch document. 1. First Use Case :- Searching Substring : Sometimes the end user doesn’t want to write the […]

Technology

Creating Thumbnails For Video Uploaded in DAM

Once the videos get uploaded in the CQ DAM, the next step is about creating a thumbnail for it. This blog will help you in creating a thumbnail for photos and video which are uploaded in CQ DAM. Once I was trying to create a thumbnail for photos and videos that are already uploaded in […]

Technology

Multi-Threading in javascript using Web workers

As we know javascript is single threaded in nature, So due to this limitation long-running javascript code blocks UI thread(freezes the main window) that handles all the task for drawing, refreshing, animating, user inputs events, etc. So as the page freezes, user is not able to interact with your application any more(very unpleasant user experience) and […]

AWSDevOps

Load Blancing of Amazon RDS Read Replica

AWS provide some intensive services and these are easily manageable and as being admin there is less overhead to scale up your application infrastructure. In automated deployments if we are planing to horizontally scale your database, with help of a single click we can populate read replica of our running database. But to handle large […]

AWS

Continuing with Boto: Find security group having port 22 open for all

Consider a use case where in any team members have opened port 22 for 0.0.0.0/0 inside an EC2 security group and forgot, which is a big security concern for the Instances. So I have written a script using python boto library which scans all the security groups of running / stopped instances and sends an email […]

AWSBig DataCorporate

Amazon Awards IntelliGrape For Customer Obsession

Intelligrape (Now TO THE NEW Digital ) is an Advanced Consulting Partner with Amazon and specialises in large-scale implementations and managed services for web based applications. We have been working with Amazon team in India and outside on multiple initiatives since more than 2 years now. Amazon conducted its series of APN (AWS Partner Network) exclusive […]

AWS

Monitoring of Memcached

Memcached is an ideal platform for accelerating application performance. It is important to identify and resolve the problem before it impact business. phpMemcachedAdmin is a great tool to proactively monitor the health and performance of Memcached. It will give you clear picture of hit and miss ratio and as well eviction rate in real time. […]

Technology

Creating User Profile in AEM

Hello everyone, In this blog, we will be focusing on how to create a user and user profiles in AEM.  It is generally needed when we create login and signup forms. Depending on the use case, users can be created using: i) In the UserManager API ,we can create a user, password under a specific group and […]

iOS

Fix Vertical Position Issue of Custom iOS Fonts

Custom fonts can make all the difference in the world when you’re trying to convey a specific user experience. Luckily, it’s pretty easy to add your own fonts in your iOS app but most of the custom fonts usually have some issue with their vertical alignment. Either they sit too low or too high when […]

AWS

Varnish

Varnish is an open source, free and flexible software which is used accelerate the speed of website by caching webpage contents in memory. Varnish caches content using hash-tables which are key-value store where URL is usually taken as key. Scenario Set up varnish to serve only specific pages of your website from cache. The webpages should only […]

Services