WEBLOG
How To Add SSH Private Keys to Eclipse
One of the common use cases for accessing Git repositories on Github is authentication via SSH keys. This offers a secure way of working with Github repositories using SSH protocol. If you use Eclipse IDE for development and want to use the same for Git workflows like ‘commit’, ‘pull’, ‘push’ etc. you can easily do so by installing one of...
Common Git Commands Reference
Git is the most popular distributed version control system which is currently an actively maintained open-source project. Git supports many command-line tools and graphical user interfaces. Since there are many Git commands you can use, mastering Git takes time. The following set of commands are probably the most commonly used commands that you should know as you may use...
How To Change Your Default Linux Shell
The shell is a program that accepts and interprets commands. Besides bash, Linux supports many other shell programs, such as ksh, zsh, csh, and fish. Each of these shells have some unique features that sets them apart from other shells. In this article, we shall see multiple methods you could use to change a user’s shell in Linux 99fd4b104a55e77cbbad067402da3222
How To Install WordPress Locally using XAMPP
1. Introduction Installing WordPress on your computer helps you try out WordPress, test themes and plugins, and learn WordPress development. It lets you operate a website within your own computer. The website isn’t visible to other people. So, you can make an experiment with the design components, plugins, settings, etc. there. However, WordPress is not something that can be installed on...
How To Change Font for Eclipse Package Explorer
This article shows how to change the Package Explorer text size and style. The font used for tree and table views can now be customized with a font preference. This preference is called "Tree and Table font for views" and can be found in Window > Preferences > General > Appearance > Colors and Fonts under the "View and Editor...
How to View Java API Doc Hints within IntelliJ
IntelliJ Quick Documentation So how do you generally refer your Java API Doc? If you use Google or online Java API Doc or even a locally downloaded copy then here is a better way, why not view the JavaDoc hints within IntelliJ editor itself. The article below shows the quick and easy procedure to do this, interested? keep reading. Provided you...
HomeWeblog
FT AUTOMATION
Introducing Testing-as-a-Service (TaaS)
The 'Cloud Computing' technology has revolutionized the IT industry and it has something good to offer to...
HOW-TO'S
How To Read Windows Environment Variables With VBScript
Reading an environment variable is simple. There are a couple of methods available to do this but...
NFT AUTOMATION
How To Record Using BlazeMeter Plugin (JMeter)
Honestly speaking if you already have a mature or established process using 'native' JMeter from Apache, without...
PROGRAMMING
Maven Build Life Cycles, Phases and Goals
Maven’s Sequential Execution In Maven, you have the option of executing a build phase or build goal. But...
How To Create Maven Project Using Command Line
Maven project can be easily created using built-in plugins from the popular IDEs such as Eclipse and IntelliJ IDEA. However, in scenarios where you don't or cannot use IDE, we can also create a maven project from the Maven native command line without using any IDE. In this article we would create a simple Java project using Maven command...
How To Create Singleton Class in Java
Design patterns Overview Design patterns are basically solutions to programming problems that developers normally encounter during software development. Design patterns were first documented by four authors known as the Gang of Four (GoF). Design patterns are broadly classified into creational, structural, and behavioral patterns. Creational patterns aid in object creation, structural patterns help to alter the structure of an object...
Create Basic Hibernate Program
Hibernate is an ORM framework that helps in accessing database tables from Java code. It is an object-oriented way of accessing database tables and it eliminates boilerplate code that is required with JDBC. In this article, I will be explaining how you can create a basic Hibernate application that saves a record into a database table via Hibernate. Prerequisites Before writing...
Introduction to Apache Maven
1. What is Maven When you write a software application, there are many steps in it like adding the necessary JAR files, compiling the source code, running unit tests, creating the output jar/war file, etc. This is where Maven comes into play, it automates the build process, dependency management, testing, packaging, and much more. It allows executing all these steps...
How To Do API Testing with JMeter
Introduction Application Programming Interface is a very popular term among developers. It is simply a request provider that responds to your request. In other words, it is an intermediate that allows communication between two applications. Google Maps, Twitter, Amazon S3, Weather API are some popular APIs in the industry. The two widely used Web services are SOAP and API. In this...
Getting Started With Atlassian Jira
Jira is one of the best software used for agile development. It is built for a better team contribution and to deliver an amazing product. Your Team members can plan and track the whole work and release a winning software. You will be guided to get a start with Jira with this tutorial. What can you do with Jira? Plan -...
Getting Started With Hibernate
Introduction Hibernate is a framework which allows you to access database tables from Java code. Before Hibernate came into existence, JDBC was widely used. JDBC is an API to access a relational database from a java program. JDBC basically allows you to execute SQL statements from Java code, so any SQL statement which you can run on a database directly,...
CODE SNIPPETS | CODEX
Maven
Maven CLI Options and Switches Reference
Maven offers a good set of commands and CLI Options to carry out wide range of Dev tasks....
How-To Git
How To Install Pacman For Git on Windows
The 'Git for Windows' by default does not come with MSYS2 package manager called 'Pacman' and hence it...
Java Gists
Setting Max/Min Digits For Decimal Numbers With Java DecimalFormat
The DecimalFormat class offers the following four such methods which can be used to easily set the maximum...
ÂÂ