Skip to content
View RishitAgrawal06's full-sized avatar
😄
Hello! Contact me at my email [email protected]
😄
Hello! Contact me at my email [email protected]

Highlights

  • Pro

Block or report RishitAgrawal06

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
RishitAgrawal06/README.md

hey there, i'm Rishit! 👋

class RishitAgrawal:
    def __init__(self):
        self.variables = {
            'name': 'rishit',
            'age': 19,
            'school': 'purdue university',
            'major': 'computer science',
            'hobbies': 'coding, robotics, martial arts',
            'languages': 'english, hindi, spanish, marwari'
        }
        
        self.social = {
            'github': '@RishitAgrawal06',
            'linkedin': '[rishit agrawal](https://www.linkedin.com/in/rishit-agrawal/)',
            'instagram': '@rishit.agrwl06',
            'contact': '[email protected]',
        }

    def description(self):
        for index, value in enumerate(self.variables.values()):
            if index == 0:
                print(f"__ hi, i'm {value} __")
            elif index == 1:
                print(f'age: {value}')
            elif index == 2:
                print(f'school: {value}')
            elif index == 3:
                print(f'major: {value}')
            elif index == 4:
                print(f'hobbies: {value}')
            elif index == 5:
                print(f'languages: {value}')

    def social_media(self):
        print('\n__ social media & contact __')
        for index, value in enumerate(self.social.values()):
            if index == 0:
                print(f'github: {value}')
            elif index == 1:
                print(f'linkedin: {value}')
            elif index == 2:
                print(f'instagram: {value}')
            else:
                print(f'contact: {value}')


if __name__ == '__main__':
    rishit = rishitagrawal()
    rishit.description()
    rishit.social_media()

Image

More On Who I Am

  • 👋 Hi, I’m @RishitAgrawal06
  • 👀 I’m interested in full-stack programming and am pursuing a degree in Computer Science @ Purdue University!
  • 🪟 Currently working alongside a team from Microsoft (Mojang Studios) on a creator assistive development platform.
  • 🤖 Previously interned as a Software Development Intern at Amazon AWS (Amazon Web Services) working on Amazon Quick Suite.
  • 📏 I have also interned as a GenAI Technical Advisor for Software at Scale AI throughout the Spring 2025 semester.
  • 🧑‍💻 I am interested in AI/ML + computer vision research (Google Scholar), spending time to create applications/products, and solving issues.
  • 📫 How to reach me on email: [email protected]

Pinned Loading

  1. Pong Pong Public

    My Rendition of the Classic Pong Game using PyGame

    Python

  2. REMI REMI Public

    Ride More, Spend Less, Earn Money

    Dart

  3. climate_house_price climate_house_price Public

    ML Model + Website Predicting Climate Change Impact on U.S. Home Prices.

    HTML

  4. Farmunity Farmunity Public

    Buy and sell local produce with maps and AI-powered recipe inspiration.

    C++ 1

  5. Gateway Gateway Public

    A One Stop Trip Planner for Your Travel Adventures | Budget-Friendly (Transport, Events, Hotels)

    HTML 1

  6. Mastermind Mastermind Public

    Project Repository for the Mastermind Game recreation - Java

    Java