Author: Prashant Trivedi

How to integrate SonarQube with Azure DevOps

Reading Time: 3 minutes Whenever a developer writes code, he definitely wants to get his code to be analyzed before going on to production, and SonarQube being a code analysis tool helps the developer to find out bugs, vulnerabilities, code smells, code coverage, duplications, etc,. It collects and analyses source code and helps to deliver clean code. Moreover, Azure DevOps is a Microsoft product that provides automated builds and Continue Reading

young business people working with digital tablet while discussing together in conference room

How To Procure Jenkins License

Reading Time: 3 minutes To procure a Jenkins license, we should be aware of how many users are available in your Jenkins instance so that when we work with vendors i.e. Cloudbees we should give them the headcount of users for which we would like to procure the license. To do so, we make use of the available plugin called “User Activity Monitoring Plugin” This plugin monitors the activity Continue Reading

Programmers working on computer program

How To Remove Unwanted Users From Jira

Reading Time: 3 minutes Considering a scenario where there are multiple users who are inactive for the past two years, and now we wish to remove unwanted users who are inactive say 2 years back now so that we can perform these simple steps and get our work done very easily. Now to do so first, you might be aware of a few simple basics of Jenkins and Jira. Continue Reading

background

How to create SonarQube Portfolio

Reading Time: 4 minutes What is SonarQube SonarQube is an open-source platform which is developed by SonarSource. SonarQube is one of the DevOps tools which is known for automated code review and continuous inspection of code quality. As a result, this tool helps in delivering clean code and reviewing static analysis of code to detect bugs, code smells, and security vulnerabilities. It can also perform analysis on 20+ different languages. Continue Reading

How to Send Email notifications via Jenkins

Reading Time: 3 minutes Overview  In this blog, let’s discuss the approach to sending email notifications from Jenkins. If we want to be informed immediately about problems in our pipeline, they can be very helpful. Prerequisites: Steps involved to send email via Jenkins An email-sending solution is visible in Jenkins. This can be set up in the Manage Jenkins menu’s Configure System section. This is the built-in functionality of Continue Reading

Teamcity Vs Jenkins. Which CI Tool Is Better?

Reading Time: 5 minutes Why Jenkins? Jenkins is the maximum famous open-supply non-stop integration device. you may install Jenkins on foremost running structures like Windows or Linux because it runs on Java. It changed into at first created as a construct automation device for Java applications. Since then, it has advanced loads and has extra than 1400 plugins to effortlessly combine with different systems and tools. Jenkins automates the software Continue Reading

What Makes Openstack So Popular?

Reading Time: 3 minutes Today major requirement for most IT Companies is of cloud, but they don’t prefer public clouds due to security reasons, they basically want to set up their own cloud on their specific data centers, for example, companies like Ericsson, Vodafone. So Any Big Company wants its infrastructure cloud base without purchasing any kind of public cloud from the market. So these companies can put OpenStack Continue Reading

Docker-Why Developers Love Docker? Just Have A Look!

Reading Time: 5 minutes It is basically a tool which enables developers to create,deploy and to run any application easily as light-weight container ,which could run virtually anywhere.The main purpose of Docker is to easily develop applications. It further ship them into containers so that they can then be deployed anywhere. This feature is very helpful to developers. And most importantly it is an open source. This means that anyone can contribute Continue Reading

Scala- A Simple tour.

Reading Time: 3 minutes What Is Scala? Scala is a multi purpose programming language , which provides support for both Object Oriented and Functional Programming. It express common programming patterns in a concise, elegant, and type-safe manner. It was Designed in the year 2003 by  Mr. Martin Odersky and his research team. The most fascinating thing about scala is that , Scala executable code runs over JVM so to Continue Reading

Pattern Matching – Have A Look In Scala!

Reading Time: 5 minutes What Is Pattern Matching? When we talk about pattern matching , first thing that comes in our mind is a string matching or regular expression , but when it comes to functional programming this terminology takes a new meaning, which means that instead of string matching or regular expression matching , the functional programming is going to look into matching objects against other objects. Scala Continue Reading