# Hey there! 👋 Welcome to Himanshu Mahajan's Code Universe 🌟
class Developer:
def __init__(self):
self.name = "Himanshu Mahajan"
self.roles = [
"Open Source Contributor 🌍",
"Bounty Hunter 💰",
"Machine Learning Engineer 🤖",
"Competitive Programmer 🏆",
"Software Developer 💻",
]
self.languages = ["Python 🐍", "C++ 💻", "Scala ♾️", "Java ☕"]
self.tools = ["VSCode 💻", "GitHub 🐙", "Docker 🐳", "Jupyter 📓"]
self.interests = [
"Open Source 🌍",
"System Design 🛠️",
"AI & ML 🤖",
"Building Scalable Systems 🌐",
]
def introduction(self):
print(f"Hi, I'm {self.name}!")
print("I wear many hats, including:")
for role in self.roles:
print(f"- {role}")
print(f"I love coding in: {', '.join(self.languages)}")
print("My go-to tools:")
for tool in self.tools:
print(f"- {tool}")
print("Excited by:")
for interest in self.interests:
print(f"- {interest}")
# Let's collaborate and create amazing projects!
me = Developer()
me.introduction()
Pinned Loading
-
FraudGuard
FraudGuard PublicThis system utilizes Optical Character Recognition (OCR) extracts text, while computer vision techniques map document layout. Then, SIFT (Scale-Invariant Feature Transform) cleverly matches documen…
Python 2
-
Sentimental-Analysis-With-NLP
Sentimental-Analysis-With-NLP PublicWelcome to our Python Sentiment Analysis project repository! This project is dedicated to helping users understand the emotional tone behind textual data using Python. With the exponential growth o…
Python 1
-
Flask-Website-Data-Analysis-With-Himanshu
Flask-Website-Data-Analysis-With-Himanshu PublicThe Data Analysis with Himanshu project is a Flask-based company website that showcases various data analysis services offered by Himanshu. The website provides insights into different data analysi…
HTML 1
-
LGMVIP-DataScience-1
LGMVIP-DataScience-1 PublicThis project aims to showcase the implementation of the logistic regression algorithm for the classification of the Iris dataset. It consists of 150 samples of iris flowers, with 50 samples for eac…
Jupyter Notebook
If the problem persists, check the GitHub status page or contact support.