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 […]
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 […]
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: https://2thenew.today/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
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 […]
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 […]
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
“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
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 […]
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 […]