TO THE NEW Blog PAGES

Java/JVMTechnology

Runnables with Timeout from submission time

Problem not covered by Java ExecutorService Java’s ThreadPoolExecutor is a great tool. After configuring a thread pool we can keep on submitting Callables and get Futures. These futures can be used to get the values that the callable is supposed to return. In case we want to limit the execution time of this callable we have the option of […]

Aseem Bansal
Aseem Bansal
Read

Technology

Regex in groovy

Groovy Language enhancements that help with Regex Slashy Strings is the first thing that comes to my mind while talking about regex in Groovy. They are a simpler way to represent regex patterns as String compared to their Java counterparts. If we have to find all numbers in a String we can do something like this […]

Aseem Bansal
Aseem Bansal
Read

Technology

Configuring Nagios+Postfix to use AWS SES as relay

Introduction Using Postfix to send email notifications to gmail or any such email providers causes relay issue (delay in email delivery) since gmail does not allow multiple emails from non-verified emails. I had to figure out delivering email notifications quickly to avoid any delay in response to the alerts generated by Nagios. AWS has a […]

Rahul Jaiswal
Rahul Jaiswal
Read

Automation TestingTesting

Jenkins API Integration : Trigger Job Remotely via Jenkins API

Jenkins provide continuous integration to software development. Jenkins job builds can be started by various methods, like manual triggering, scheduled cron-like mechanism, dependency builds, and by Jenkins API calls. This blog will cover Jenkins API Integration : Trigger Job Remotely via Jenkins API. 1.  First, we need Jenkins API TOKEN which will be ‘configure’ tab […]

Aditya Thakur
Aditya Thakur
Read

Digital Analytics

Cracking Cross-device analytics for e-commerce

The essence of Digital Marketing in e-commerce is the ability to derive the online consumer behavior and being able to position the best offering that pertains to a specific buyer persona, precisely called in management terms as “analytics-led digital marketing”. The true potential of analytics-led digital marketing lies in the data and the quality of […]

Ankit Chhabra
Ankit Chhabra
Read

Technology

Introduction to YouTube SEO

Did you know that each day there are over a billion searches on Facebook and over 300 billion tweets on Twitter. YouTube is definitely far behind in achieving the coveted ‘billion’ mark. A staggering 4+ billion hours of videos are watched on YouTube everyday. Amidst rising competition from other players such as Facebook, YouTube is […]

iOSMobilityTechnology

What’s New in Swift 2.0

One year ago, Apple released Swift, a brand new programming language for both iOS and OS X development and now they introduced Swift 2 with Xcode 7 this year. Swift 2 includes some new features such as improved error handling, availability check and , protocol extensions etc. Lets take the overview of new features. Error […]

Ashu Baweja
Ashu Baweja
Read

Front End DevelopmentTechnology

Create Accordion with CSS and HTML without JS

There are many way to create the accordion effect with js but following are the example of how to create the accordion only with css and html. Here is the image that show which type of accordion I am going to create. Now starts with html code: In this I have used checkbox to use […]

Amit Narayan
Amit Narayan
Read

Technology

Getting Started with ActionScript(Flex Programming)

Flex is an open source framework which allows us to build traditional applications for browser, mobile and desktop. It provides flex SDK, you can download it from here , consisting of the MXML and ActionScript programming language and takes care of the user interface (UI) or the client-side functionality of a web application. This post will […]

Technology

How to create Stylish Select-box,Radio button,Checkbox

Stylish Select-box HTML [java] <select class="selectBox"> <option>Select</option> <option>New Delhi</option> <option>Mumbai</option> </select> [/java] CSS [java] .selectBox{ appearance: none;-webkite-appearance: none;-moz-appearance: none;-o-appearance: none;-ms-appearance: none; background: #f5f5f5 url(‘image-path’) no-repeat right center; border: 1px solid #eeeeee; width:300px; height:40; padding:10px; } [/java] Stylish Radio button HTML [java] <input type="radio" value="" class="radioBtn"/><label></label> [/java] CSS [java] .radioBtn { vertical-align: middle; width: 15px; height: […]

MobilityTechnology

STACK VIEW IN iOS 9

Gone are the days when every scrollable grid is either TableView or CollectionView. Enter StackView.! Stack view is a simple class that allows to stack layout views in either a column or a row. What makes it more helpful is the elimination of the need to add the constraints. It applies Auto Layout to the […]

Ashish Jain
Ashish Jain
Read

Android

Introduction to Android ExoPlayer

ExoPlayer as the name suggests is a type of media player built on top of Android’s low level media API’s. It is a better replacement for traditional MediaPlayer that Android framework provides as it has some enhanced features such as Dynamic Adaptive Streaming over HTTP (DASH), HLS adaptive streams etc. It can be used to play […]

Md. Asif Khan
Md. Asif Khan
Read