Best of FaunAugust 2021

  1. 1
    Article
    Avatar of faunFaun·5y

    MongoDB — Complete Guide

    MongoDB is a cross-platform document-oriented database program. Classified as a NoSQL database program, MongoDB uses JSON-like documents with optional schemas. MongoDB is built for modern application developers and for the cloud era. NoSQL is used to store structured as well as unstructured data.

  2. 2
    Article
    Avatar of faunFaun·5y

    Writing clean code

    Clean code is some code which is easily readable and meaningful. It usually takes less cognitive effort to understand what’s actually happening and it is always concise to the point. The basic practice in writing clean code involves avoiding unintuitive names, complex nesting of if-else blocks and big code blocks.

  3. 3
    Article
    Avatar of faunFaun·5y

    Writing Clean Code — Part 3. Making life easier by writing easily…

    Making life easier by writing easily readable code Logeshvar L follows up on his previous posts on clean coding practices. In this post, we look at how to write clean functions. Clean functions are nothing but the set of commands to do an operation. We also need to take care of the method signature, the method body and the return type.

  4. 4
    Article
    Avatar of faunFaun·5y

    Writing Clean Code — Part 5

    Nested if statements reduce the understandability of the code as well as made it complex to read. To avoid deep nesting is one of the main goals of this article. To write clean control structures and avoidDeep nesting, let’s go through some of the recommended practices.