TO THE NEW Blog PAGES

DevOps

Daemonizing a Process in Linux

Most of the times when we need to run some Java, Node.js or python program in background, so it could stay running even after you leave console all we do is put “&” in the end of the command. $java -jar SimpleService.jar & The problem here is that when you leave the bash shell your […]

Technology

Introduction to PolymerJS: Building Web Components

In the history of web development there have been many changes. Day by day new innovations were introduced in the market to make web more interative and meet user expectations. Javascript has evolve a lot due to these innovations but HTML hasn’t grown that much. So at the end of the day we end up […]

AWSTechnology

Convert Apache (x509 cert) SSL Certificate to Tomcat (Keystore)

When setting up SSL certificate for a website, we mainly use two types of SSL certificate one is x509 mostly used with applications support OpenSSL library and other is Keystore which is used with Java 1.6+ applications. Apache/Nginx uses x509 pem/crt files which is is very different than a Jetty/Tomcat (Java 1.6+) system that uses […]

Node.js

Node Js Child Process Module

Node works efficiently with I/O because of asynchronous event driven programming model,but in case of CPU-intensive tasks it will block the event loop, thus limiting the application responsiveness. CPU-intensive tasks should be performed by different process, to keep event loop free. So, Node allow us to spawn a new process and assigned the new task […]

AndroidAutomation TestingAWS

How to provide your TestsScripts & Dependencies to AWS Device Farm

If you are using Appium, TestNG & Maven test frameworks and Java language for your mobile automation project, then it’ll help you. To run your Appium Java TestNG scripts, you need to club your test-cases & all the dependencies in one file and provide it to Device Farm. And to attain this, do some modifications in the […]

Automation TestingTesting

Regression Testing: A Sign-Off Before Product Release

Let’s understand the term first What is Regression? Regress means returning to the former or less developed state.  Regression Testing involves a similar concept; it includes testing of previous functionality, to ensure a bug that could have been introduced by any enhancement added to the previous version. A test engineer checks the desired functionality and […]

Automation TestingManual TestingMobility

Jmeter with Mobile

Jmeter is known for Performance and Functional testing tools for Web, but Jmeter can also record scripts for Mobile Applications. You can record and play script from Jmeter and quickly verify Mobile application performance and functional aspects. Jmeter has features to prepare and run our mobile specific performance test scripts. We need to do configuration […]

AndroidAutomation TestingAWS

Android App Automation on Multiple Devices in parallel using AWS Device Farm

App Automation lets you ensure that you can run your test-suite repetitively, with minimal effort & check the results whether its meeting your functional requirements or not. After each build-release, you need to follow the same procedure. But the challenge is to cover variety of phones & tablets and it is really impossible to test […]

Automation TestingJava/JVMTesting

BrowserMob: Proxy for WebPage Load Testing Using Selenium

Every high-performance organization uses one or the other performance measures and, often, are involved in devising new techniques and tools to deliver efficient performance systems. These tools are used to collect performance data to analyse and forecast the behaviour of the system when it goes live, and to eliminate all the issues that are minimizing […]

Services