What I'm Thinking

If you are an Android mobile app developer, you have to take lot of screenshots for uploading to Google Play Store Console. When you take screenshots, it would be more professional if you consider few aspects. - Reset the battery percentage. - Set WiFi and network signal to full - Remove notification icons - Set clock time. All these settings can be done by using the demo mode. You can copy the below code in to a batch file and run it whenever you need to take screenshot from your device/emulator. ... Read More
Introduction Linear Regression is one of the basic concept used in Machine Learning. Do not think it’s complex as it’s related to Machine Learning. You have studied linear regression and even used without knowing it all your life. Linear regression is a simple statistics technique that predicts the value of an output variable(response) based on one or more input input(predictor) variables. At the end of performing linear regression we will have a linear relationship (a mathematical formula) between the input variable(s) and the response variable. ... Read More
Let’s see how to fetch all issues from JIRA in JAVA based on the provided JQL search filter. To know about the required Maven dependencies and how to generate the trust store file used in the code below, you can refer to How to work with Atlassian JIRA API using Java. The full code is provided below to get Name and Id of all available issue types. import com. ... Read More
We are now going to see how to create new JIRA issue in JAVA using the REST API library. We can use this cod with some little modifications to bulk create several issues from an Excel sheet or an CSV file. To know about the required Maven dependencies and how to generate the trust store file used in the code below, you can refer to How to work with Atlassian JIRA API using Java. ... Read More

Get JIRA Field ID using Java
12 November 2016

Let’s see how to fetch the field Id from JIRA in JAVA using the REST API library provided by Atlassian. To know about the required Maven dependencies and how to generate the trust store file used in the code below, you can refer to How to work with Atlassian JIRA API using Java. The full code is provided below to get the ID value of a “Module Priority” field for the issue type “Defect” present in the project “PROJECT-KEY”. ... Read More