TO THE NEW Blog PAGES

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

AWS

Docker ( Dockerfile and communication between containers )

In this blog, we would be using Dockerfile to create images and see how two docker containers would communicate using below scenario. Scenario Create two docker images using Dockerfile, one would host wordpress website and other would hold the website’s database. Using these images, create two containers, one for database hosting and other for website […]

Grails

Compile GroovyScript at Runtime and allow caching of compiled source to avoid recompilation at Runtime using GroovyClassLoader

In some cases we need mechanism to provide compilation of groovy script at runtime. But at the same time we need to make sure it doesn’t consume the JVM to perform compilation every time when we try to access that script. Hence to perform this we need to do the following task : Compile Groovy […]

Technology

Monitoring Nginx Connections

The Nginx web server comes with a bundled module “HttpStubStatusModule”. By enabling this module we will get some insight of our nginx connections. This module provides the following information. Active Connections Connection Status (Accepted / Handled) Connection Request / Second Enable Module To get connection stats, we need to enable the status module on nginx […]

Vikash Jha
Vikash Jha
Read

Android

Updating ViewPager With New Data Dynamically

ViewPager is a layout manager that allows users to flip and view pages left and right. It is used in conjunction with PagerAdapter,  FragmentPagerAdapter or FragmentStatePagerAdapter. We attach adapter consisting of either Fragment objects or simple View objects. Note: You can download source code of a sample application from here to run the android application. Difference Between PagerAdapter, FragmentPagerAdapter and FragmentStatePagerAdapter  PagerAdapter: PagerAdapter […]

Noor Alam
Noor Alam
Read

AWS

EC2 Backup Manager : Python Scripts

EC2 Backup Manager : Python Scripts One of the most important requirements in any projects is regular backups. On one of our projects we were using Netflix’s backup monkey and graffiti monkey combined to take snapshots of all the volumes in the account. But this deviated slightly from our requirement, we only required the backups […]

AWS

Building MySql Database Test Plan Using Jmeter

In this blog we will setup the jmeter and we will see how to create a simple test plan to test the database server.We will use MySql database server for our test purpose or you can use any-other database. Setup requirement Download the latest jmeter from here and untar jmeter in you home directory. Download JDBC driver […]