An open API service indexing awesome lists of open source software.

https://github.com/ferozomer/ferozomer


https://github.com/ferozomer/ferozomer

Last synced: about 2 months ago
JSON representation

Awesome Lists containing this project

README

        

Cover

```python
#!/usr/bin/python
# -*- coding: utf-8 -*-

class Developer:

def __init__(self):
self.name = "Feroz Omer"
self.role = "Developer"
self.language_spoken = ["en_US"]
self.skills = {
"Programming Languages": [
"Python", "JavaScript", "TypeScript", "C++", "C#", "PHP", "Perl"
],
"Web Development": [
"HTML5", "CSS3", "React", "Next.js", "Node.js", "Bootstrap", "Three.js", "NPM"
],
"Frameworks & Backend": [
"Django", "Flask", ".NET", "Apache", "NGINX"
],
"Databases": [
"MySQL", "PostgreSQL", "MongoDB", "Redis", "SQLite", "Firebase", "PlanetScale"
]
}

def say_hi(self):
print("Thanks for dropping by, hope you find some of my work interesting.")

def display_skills(self):
print(f"\nSkills of {self.name}, {self.role}:")
for category, tools in self.skills.items():
print(f"\n{category}:")
print(", ".join(tools))

class Designer:

def __init__(self):
self.name = "Feroz Omer"
self.role = "Designer"
self.language_spoken = ["en_US"]
self.skills = {
"Design & Media": [
"Adobe Illustrator", "Photoshop", "After Effects", "Premiere Pro"
],
"Web Design": [
"HTML5", "CSS3", "Bootstrap"
],
"Tools": [
"WordPress"
]
}

def say_hi(self):
print("Hey there! Check out my creative side.")

def display_skills(self):
print(f"\nSkills of {self.name}, {self.role}:")
for category, tools in self.skills.items():
print(f"\n{category}:")
print(", ".join(tools))

class DevOpsEngineer:

def __init__(self):
self.name = "Feroz Omer"
self.role = "DevOps Engineer"
self.language_spoken = ["en_US"]
self.skills = {
"Cloud Platforms": [
"AWS", "Azure", "Google Cloud", "DigitalOcean", "Heroku", "Vercel", "Cloudflare"
],
"DevOps Tools": [
"Docker", "GitLab", "NGINX", "Cloudflare Workers"
],
"Operating Systems": [
"Linux", "Ubuntu", "Debian", "CentOS", "macOS"
],
"Terminal & Scripting": [
"Bash", "PowerShell", "PuTTY", "Termius"
]
}

def say_hi(self):
print("Hello! Welcome to my world of infrastructure and automation.")

def display_skills(self):
print(f"\nSkills of {self.name}, {self.role}:")
for category, tools in self.skills.items():
print(f"\n{category}:")
print(", ".join(tools))

class ContentCreator:

def __init__(self):
self.name = "Feroz Omer"
self.role = "Content Creator"
self.language_spoken = ["en_US"]
self.skills = {
"Video & Audio": [
"After Effects", "Premiere Pro"
],
"Design": [
"Adobe Illustrator", "Photoshop"
],
"Web Publishing": [
"WordPress", "HTML5", "CSS3"
],
"Tools": [
"Arc", "HTTPie"
]
}

def say_hi(self):
print("Hi! Excited to share my stories and creations with you.")

def display_skills(self):
print(f"\nSkills of {self.name}, {self.role}:")
for category, tools in self.skills.items():
print(f"\n{category}:")
print(", ".join(tools))

class SecurityAnalyst:

def __init__(self):
self.name = "Feroz Omer"
self.role = "Security Analyst"
self.language_spoken = ["en_US"]
self.skills = {
"Security Tools": [
"Burp Suite", "Selenium"
],
"Scripting": [
"Python", "Bash"
]
}

def say_hi(self):
print("Greetings! Keeping the digital world secure, one test at a time.")

def display_skills(self):
print(f"\nSkills of {self.name}, {self.role}:")
for category, tools in self.skills.items():
print(f"\n{category}:")
print(", ".join(tools))

dev = Developer()
designer = Designer()
devops = DevOpsEngineer()
creator = ContentCreator()
security = SecurityAnalyst()

dev.say_hi()
dev.display_skills()

designer.say_hi()
designer.display_skills()

devops.say_hi()
devops.display_skills()

creator.say_hi()
creator.display_skills()

security.say_hi()
security.display_skills()
```




stats graph
languages graph





View Count





Snake animation

###