Skip to content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 

Repository files navigation

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


About

Config files for my GitHub profile.

Topics

Resources

Stars

0 stars

Watchers

1 watching

Forks

Releases

Packages

Contributors