Best of FaunSeptember 2021

  1. 1
    Article
    Avatar of faunFaun·5y

    SOLID Principles — The ‘O’

    The Open Closed Principle (OCP) is the most important principle of the SOLID principles. OCP means that any class/function should be open for extension, but closed for modification. Modifying existing code for every new feature is a bad practice. This leads to a continuous behaviour of writing code in a spaghetti programming style.

  2. 2
    Article
    Avatar of faunFaun·5y

    How to make a basic CI-CD pipeline using Jenkins?

    How to make a basic CI-CD pipeline using Jenkins? Sumyak Jain explains how. We will develop and host a basic maven web application in Java using DevOps tools like Apache Maven as a build tool, GitHub for source code management, Selenium for testing, Jenkins for Continuous Integration, and Apache Tomcat for deployment and use Jenkins plugin to monitor our pipeline.

  3. 3
    Article
    Avatar of faunFaun·5y

    SOLID Principles

    SOLID principles are a set of principles followed in the world of object-oriented programming. These principles are widely popular since the end of 20th century and are still followed in all applications and software. We follow these principles to write more simple, maintainable, extendable and understandable classes.