TO THE NEW Blog PAGES

AWSTechnology

Amazon S3 Transfer Acceleration – New Blessing for S3

Amazon has introduced a new feature for AWS S3 (Simple Storage Service) – AWS S3 Transfer Acceleration. This feature lets you transfer files from and to S3 at a much higher accelerated speed. Thus, you can save the file transfer time if you are ready to pay for it. The feature was introduced a few […]

Technology

Mongo Point in Time Restoration

While working with databases sometimes there is a need to have data till a specific time or date across all the secondaries or database peers which is useful for testing a particular functionality. Also, in the event of outage, few folks would like to restore it to a specific weekend or month end just to have uniformity […]

Grails

Grails 3 and Deployment to Tomcat Container

Any web application consists mainly of two tasks, i.e, development, and deployment. For web application development, we can use any tools but for deployment, we need to be careful of what environments are supported by the framework. At the time of Grails 2, we just needed to execute grails war and put the generated war to […]

DevOpsTechnology

Running Powershell scripts using Jenkins

Jenkins has been primarily used for automating jobs and tasks on Linux servers. In this blog, we will be configuring Jenkins to execute Powershell scripts on Windows. This blog will not be covering Jenkins server set up steps on Windows. You can refer to the following link for Jenkins installation. Powershell Plugin Jenkin’s Powershell plugin […]

iOS

Quick Action-3D touch

In this blog, we will be discussing about Quick Action (Another feature provided by Apple in iOS 9.0 and above) To learn about peek and pop, you can refer my previous blog: http://www.tothenew.com/blog/playing-with-3d-touch-ios/ QUICK ACTIONS Home screen quick actions give us a convenient way to perform useful, app-specific actions directly from the Home screen without […]

Manual TestingTechnologyTesting

Usability Testing: A Better User Experience

Nowadays new technologies have completely changed the way people do things. The Internet and various devices have made it possible to buy and sell products as well as services at any time and any location. Consequentially, a heavy number of e-commerce and other utility websites have appeared and continue to compete. Now, many of these […]

Technology

Introduction to Google Apps Script with Google Spreadsheet

What is Google Apps Script ? Google Apps Script is a JavaScript based scripting language that lets you add functionality to your Google Apps. It is a cloud-based language that integrates with all other Google services include Gmail, Google Drive, Calendar, Google Forms, Spreadsheets and more. We create and edit our scripts in an online […]

Technology

Getting to know the Console API for better debugging

Developer tools are powerful tools to debugging javascript file in development of front-end web applications. The console has an API that provides a number of methods that make debugging easier. There has a multiple method for debugging JavaScript files in web applications. Debug your web applications using the methods provided by the console API but […]

Automation TestingManual TestingTechnology

Top 11 Best Practices in Software Testing

“To err is human” – Alexander Pope. Everyone makes mistakes, but you cannot ignore all mistakes. Some of them can prove to be very expensive. During testing of an application/product, a tester makes sure that mistakes done by developers are discovered and fixed before the product reaches the end user. The primary objective of testing […]

AngularJSFront End DevelopmentTechnology

Comparison between Angular and Polymer

Angular :-  Angular is a robust application level js framework based on MVC pattern, facilitate you to extend HTML’s syntax to express application’s components clearly. Angular’s bi-directional data binding and dependency injection reduce code complexity and development time. Polymer :- Polymer is a lightweight js library used to build custom reusable HTML elements(components). It uses standard […]

Front End Development

Creating Automatic Numbering with CSS Counter

As you know, in front end development when we add lists to the <ol> element, a numbered list gets generated automatically. Similarly, we can generate numbers for any element using CSS Counter. Let’s see how it is done? Usage: CSS Counter has two main properties: “counter-reset” and “counter-increment”. The following code is an example of how we […]

iOSMobilityTechnology

Playing with 3D Touch—iOS

As we know that Apple has got a very different way to interact with the device in 6s and 6s plus by introducing 3D touch. In 3D touch, the phone judges how much pressure we are applying over the device and perform an appropriate action accordingly. iPhone responds to the subtle tap when one interacts […]

Services