#!/usr/bin/python
class DeveloperInfo:
def __init__(self, title, description=""):
self.title = title
self.description = description
class SoftwareEngineer:
def __init__(self):
self.who_am_i = [
DeveloperInfo("A self Learned Programmer", "Passionate about learning and coding on my own."),
DeveloperInfo("Full-Stack Software Developer", "Experienced in developing end-to-end web applications."),
DeveloperInfo("Cybersecurity Guy (Ethical Hacker)", "Focused on cybersecurity practices and ethical hacking.")
]
def print_who_am_i(self):
for index, info in enumerate(self.who_am_i, start=1):
print(f"{index}. {info.title}")
print(f" {info.description}")
me = SoftwareEngineer()
me.print_who_am_i()#Output:
1. A self Learned Programmer
Passionate about learning and coding on my own.
2. Full-Stack Software Developer
Experienced in developing end-to-end web applications.
3. Cybersecurity Guy (Ethical Hacker)
Focused on cybersecurity practices and ethical hacking.
...Program finished with exit code 0-
π Iβm interested in ...
Cybersecurity,Ethical Hacker,OpenSource,Part Time Bug Bounty Hunter, andDoing Competitive Programming.
Other than that, I read a lot, and to stay up to date with the latest features, I regularly check the communities related to the tech stacks in use. -
π± Iβm currently learning ...
Microsoft AZ-303 Certification: Azure Architect Technologie, andEthical Hacking Mastery. -
π¬ Ask me about anything here
-
π Resume
π Back-end Languages:
π¨ Front-end Languages:
π§ͺ Testing:
π Web Accessibility:
π οΈ Accessibility Tools:
β‘ Performance Improvement:
π Web Core Vitals:
π’οΈ Databases:
π οΈ DevOps:
π» Systems:





