from typing import List
class PersonMeta(type):
def __new__(cls, name: str, bases: tuple, dct: dict) -> type:
dct['summary'] = f"{dct['name']} graduated from {dct['education']} with a {dct['degree']} in {dct['major']}."
dct['skills'] = ', '.join(dct['expertise'])
dct['current_work'] = f"Currently, {dct['name']} works as a {dct['current_position']} at {dct['current_company']}, where they {dct['current_role']}."
dct['additional_info'] = f"{dct['name']} also {dct['additional_activities']}."
return super().__new__(cls, name, bases, dct)
class Me(metaclass=PersonMeta):
name: str = "Maruf Bepary"
education: str = "Royal Holloway University of London"
degree: str = "First-Class Honours"
major: str = "BSc Computer Science"
expertise: List[str] = [
"Software Engineering",
"Web Development",
"Machine Learning",
"DevOps",
"Mathematics"
]
current_position: str = "DevOps Engineer"
current_company: str = "Commerzbank"
current_role: str = "build backend services and enhance operational workflows"
additional_activities: str = "contributes to open source, sharing expertise through various initiatives"
You can view the technologies, skills and tools on my personal portfolio . You can sort them by language and category too!
Projects Portfolio - I've been involved in a range of software development projects, covering various domains and technologies. If you're interested, you can explore the gallery, features, tech stack, as well as the repositories and deployed sites for each project.
Professional Certifications - Dive into my certifications showcasing a commitment to diverse skills and continuous learning. Explore credentials across various domains, view the certification details, and see acknowledgements of my expertise and dedication to professional development.
Professional Experience & Volunteer Work - Browse through my professional and volunteer experiences across various organizations. This section details the roles I've held, my responsibilities, and the tools and technologies I've utilized. You can learn about the diverse skills I've developed throughout my career and see how I've applied them in real-world scenarios.
Academic Background - Discover my educational journey through the courses I've completed at university. This section features a detailed list of modules, projects, and the specific certificate awarded upon completion. You can also explore the technologies, tools, and skills I've mastered during my academic career, contributing to my comprehensive understanding of various technical fields.
Technical Blogs/Articles - I regularly write technical blogs and articles discussing a variety of technologies, tools, and best practices in the software development field. My blogs aim to contribute to the community by sharing knowledge and sparking interesting discussions.