Skip to content
View aleixmine's full-sized avatar

Block or report aleixmine

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
ALEIXMINE/README.md

ALEIXMINE's GitHub stats

Hi there 👋 I'm ALEIXMINE17


from dataclasses import dataclass
from typing import Tuple


class Meta(type):
    def __new__(cls, name, bases, attrs):
        new_cls = super().__new__(cls, name, bases, attrs)
        return dataclass(unsafe_hash=True, frozen=True)(new_cls)


class Bio(metaclass=Meta):
    name        : str = "ALEIXMINE17"
    designation : str = "Full-Stack Developer, Game Developer"
    base        : str = "Spanish"
    website     : str = "aleixmine.github.io"


class Stack(metaclass=Meta):
    languages   : Tuple[str, ...] = ("Python", "Batch", "Node.js", "Spigot API")
    databases   : Tuple[str, ...] = ("Mongo")
    frontend    : Tuple[str, ...] = ("HTML", "JS", "CSS", "React")


class Social(metaclass=Meta):
    youtube     : str = "ALEIXMINE17"
    twitter     : str = "aleixmine17"

Stats

ALEIXMINE's GitHub stats Top Langs


Popular repositories Loading

  1. aleixmine.github.io-old aleixmine.github.io-old Public archive

    JavaScript 1

  2. game-pass-roblox-creator game-pass-roblox-creator Public

    This is a project to easily create roblox game passes.

    JavaScript 1

  3. glassapi glassapi Public

    TypeScript 1

  4. ALEIXMINE ALEIXMINE Public

    Config files for my GitHub profile.

  5. simple-actions simple-actions Public

    Es un modulo de Python, que permitira hacer aciones

    Python

  6. JOEL-exercises JOEL-exercises Public

    Aquest repositori conte els exercicis de JO-EL.

    Python