Skip to content
View anujvichare's full-sized avatar

Block or report anujvichare

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. Markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. data-backup-system-improvised data-backup-system-improvised Public

    C++

  2. design-patterns-cpp design-patterns-cpp Public

    Forked from JakubVojvoda/design-patterns-cpp

    C++ Design Patterns

    C++

  3. C++ Coding Standards C++ Coding Standards
    1
    # C++ Coding Standards Part 0: Automated Code Analysis
    2
    
                  
    3
    Automated analysis is the main advantage to working with a modern statically typed compiled language like C++. Code analysis tools can inform us when we have implemented an operator overload with a non-canonical form, when we should have made a method const, or when the scope of a variable can be reduced.
    4
    
                  
    5
    In short, these tools catch the most commonly agreed best practice mistakes we are making and help educate us to write better code. We will be fully utilizing these tools.