Skip to content
View NitkarshChourasia's full-sized avatar
🦁
pragmaticForAndToLife
🦁
pragmaticForAndToLife

Organizations

@EddieHubCommunity @Py-Contributors @FunsukWangdu00
Block or Report

Block or report NitkarshChourasia

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.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, 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
NitkarshChourasia/README.md

Header Image

Github Stats

💫 About Me

I am constantly striving to reach new heights in my personal and professional growth. I prioritize self-improvement and love pushing boundaries to achieve excellence.

🌐 Socials

Facebook Instagram LinkedIn Medium Pinterest Quora Reddit Stack Overflow Twitter YouTube

💻 Tech Stack

C# C++ Java Python

📊 GitHub Stats

GitHub Stats GitHub Streak Top Languages Nitkarsh's github activity graph

An image of @nitkarshchourasia's Holopin badges, which is a link to view their full Holopin profile

Waves

⚡️⚡️Being Pragmatic Is The Way!⚡️⚡️

Waves


python_gif_symbol

Thanks for visiting my profile

github-user-contribution

ROI_DSA My notes section so I can view it n numbers of time to internalise it.

Rate of Return?????!!!

Return on Investment?????!!!

To quote Issac Newton, "if I have seen further, it is by standing on the shoulders of Giants." - thus, a Recursion

"Programming is nothing without business" by one of my friend - Kirill Dubovitskiy (bra1nDump)

The quote that I've fallen in love with: "The magic you are looking for is in the work YOU are avoiding."

"THE BEST CODE IS NO CODE AT ALL" - JEFF ATWOOD

Learn, do learn but from time to time remember to Unlearn, constantly, too...

Currently Working On: - To Become God in C++
  • To Become Mahadev in Python

  • To become a Hashmap Bender of C# Programming Language in Style

  • To Become the Almighty in JavaScript, CSS, HTML

  • Learning Django

  • Learning Flask

  • Learning Node.js

  • Learning Full Stack and Backend

  • Python Libraries learning (numerous)

    • Everything I can get my hands on (Pragmatic)
  • Machine Learning

  • Generative AI

  • Prompt Enginnering

  • Bots (different kinds)

  • Creating a library to be published on Pip Install {my_library}

Thank You - If you have read so far.

Download My user_name.exe Windows application from here:

[Download link should exists here][Tkinter based application][Good One] [It should have my professional information in it]



End of README.md

Pinned

  1. A brief introduction about me. A brief introduction about me.
    1
    class Person:
    2
        def __init__(self, name, bio, website, social_media):
    3
            self.name = name
    4
            self.bio = bio
    5
            self.website = website
  2. Git best practices. Git best practices.
    1
    Using Git effectively and following best practices can help you avoid failures, prevent irreversible mistakes, and ensure the successful development of features. Here are some Git best practices to consider:
    2
    
    
    3
    1. **Use Version Control**: Always use version control, like Git, to track changes in your codebase. This allows you to maintain a history of your project, revert to previous states, and collaborate effectively.
    4
    
    
    5
    2. **Branching Strategy**: Follow a branching strategy like Gitflow, where you have different branches for features, releases, and hotfixes. This helps isolate work, manage features, and stabilize releases.
  3. Owner_PRs_CODEREVIEW Owner_PRs_CODEREVIEW
    1
    To allow others to review your code on GitHub when you are the owner and primary contributor, you can follow these steps:
    2
    
    
    3
    1. **Create a Branch:** Before you start working on a new feature or making changes, create a new branch in your repository. This branch will contain the changes you want others to review.
    4
    
    
    5
    2. **Make Changes:** Add, modify, or delete code as needed to implement the feature or fix an issue.