Skip to content
View mounirmesselmeni's full-sized avatar
Block or Report

Block or report mounirmesselmeni

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.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, 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
mounirmesselmeni/README.md

Hello πŸ‘‹

from dataclasses import dataclass, field


@dataclass(frozen=True)
class SoftwareEngineer:
    name: str = "Mounir Messelmeni"
    role: str = "Software Engineer and Architect"
    language_spoken: list[str] = field(default_factory=lambda: ["ar", "en", "fr", "de"])
    skills: list[str] = field(
        default_factory=lambda: [
            "Python",
            "Django",
            "Postgresql",
            "Docker",
            "Kubernetes",
            "ArgoCD",
            "AWS",
            "Ansible",
            "Git",
            "Linux",
            "Angular",
            "Typescript",
            "Flutter",
            "Gitlab CI",
            "Github Actions",
        ]
    )
    location: str = "Stuttgart, Germany"
    contact_email: str = "messelmeni.mounir@gmail.com"

    def say_hi(self):
        print(f"Thanks for dropping by, feel free to contact me via email! {self.contact_email}")


me = SoftwareEngineer()
me.say_hi()

πŸ“ Blogs

πŸ† GitHub Trophies

trophy

πŸ—‚οΈ Highlighted Projects

django-highlightjs

πŸ“ˆ Github stats

Mounir's GitHub stats

Pinned

  1. django/django django/django Public

    The Web framework for perfectionists with deadlines.

    Python 76.8k 30.8k

  2. getsentry/sentry getsentry/sentry Public

    Developer-first error tracking and performance monitoring

    Python 36.9k 4k

  3. html-fileapi html-fileapi Public

    An example project to read csv file with the HTML5 File API

    JavaScript 54 95

  4. django-highlightjs django-highlightjs Public

    Use Highlight.js in your Django templates, the Django way.

    Python 12 2

  5. django-datawatch django-datawatch Public

    Forked from RegioHelden/django-datawatch

    With Django Datawatch you are able to implement arbitrary checks on data, review their status and even describe what to do to resolve them

    Python