Skip to content
View Maxamed459's full-sized avatar
🚀
developing
🚀
developing

Block or report Maxamed459

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
Maxamed459/README.md
  __  __                                                 _     __  __           _           _   _ 
 |  \/  |                                               | |   |  \/  |         | |         | | (_)
 | \  / |   __ _  __  __   __ _   _ __ ___     ___    __| |   | \  / |   __ _  | |__     __| |  _ 
 | |\/| |  / _` | \ \/ /  / _` | | '_ ` _ \   / _ \  / _` |   | |\/| |  / _` | | '_ \   / _` | | |
 | |  | | | (_| |  >  <  | (_| | | | | | | | |  __/ | (_| |   | |  | | | (_| | | | | | | (_| | | |
 |_|  |_|  \__,_| /_/\_\  \__,_| |_| |_| |_|  \___|  \__,_|   |_|  |_|  \__,_| |_| |_|  \__,_| |_|
class SoftwareEngineer:
    def __init__(self, name, role, niche, languages, tech_stack, skills, contact):
        self.name = name
        self.role = role
        self.niche = niche
        self.languages = languages
        self.tech_stack = tech_stack
        self.skills = skills
        self.contact = contact

    def introduce(self):
        return (
            f"{self.name} | {self.role} ({self.niche})\n"
            f"Languages: {', '.join(self.languages)}\n"
            f"Tech Stack: {' · '.join(self.tech_stack)}\n"
            f"Skills: {', '.join(self.skills)}\n"
            f"Contact: {self.contact}"
        )


me = SoftwareEngineer(
    name="Maxamed Mahdi",
    role="Software Engineer",
    niche="Backend Engineering",
    languages=["Somali", "Arabic", "English"],
    tech_stack=[
        "Node.js", "Python", "Django", "DRF",
        "TypeScript", "React", "Next.js", "Flutter"
    ],
    skills=["Web application development", "Mobile app development"],
    contact="maxamedmahdi459@gmail.com"
)

print(me.introduce())

Pinned Loading

  1. Blood-Bank-Management-system Blood-Bank-Management-system Public

    🩸 Blood Bank Management System A full-stack web app that connects donors, patients, staff, and admins to manage blood donation and requests. ✨ Features User registration & login (JWT) Role-based ac…

    TypeScript

  2. Talo-plus Talo-plus Public

    Talo+ is a full-stack healthcare Q&A platform inspired by StackOverflow, specifically designed for medical questions and answers. It allows users to post medical questions about symptoms or health …

    TypeScript

  3. Pharmacy-shop-app Pharmacy-shop-app Public

    Pharmacy App A modern Flutter application designed for pharmacy management and services. This app provides a seamless interface for users to browse categories, manage their accounts, and interact w…

    Dart

  4. Task_Management_frontend Task_Management_frontend Public

    Tasky App – Task Management Frontend Tasky App is a modern, feature-rich task management application built with Next.js, React, Redux Toolkit, and Tailwind CSS, designed for easy task and productiv…

    TypeScript

  5. Rest_framework_full_authetication Rest_framework_full_authetication Public

    this is a rest_framework full authentication project using simplejwt with one time passcode for email verivication and forgot password

    Python

  6. Task_Management_backend Task_Management_backend Public

    Building a Simple Task Management API with Django REST Framework (DRF) small Task Management project to practice my backend development skills using Django REST Framework.

    Python