Skip to content
View lipperhey's full-sized avatar
⛓️
⛓️

Block or report lipperhey

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
lipperhey/README.md
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 = "Johann Fischer"
    designation : str = "Data Scientist"
    company     : str = "Fischer"
    base        : str = "Linz, Austria"
    blog        : str = "lipperhey.github.io"


class Stack(metaclass=Meta):
    languages   : Tuple[str, ...] = ("Python", "Go", "Shell")
    databases   : Tuple[str, ...] = ("MySQL", "PostgreSQL", "Mongo", "Redis")
    misc        : Tuple[str, ...] = ("Docker", "Celery")
    ongoing     : Tuple[str, ...] = ("Django", "GraphQL")


class Social(metaclass=Meta):
    twitter     : str = "lipperhey"
    linkedin    : str = "lipperhey"

Popular repositories Loading

  1. lip lip Public

    TypeScript 1

  2. app app Public

    TypeScript 1

  3. noir noir Public

    TypeScript 1

  4. lipperhey lipperhey Public

    Config files for my GitHub profile.

  5. eliza eliza Public

    TypeScript

  6. cohort-five cohort-five Public

    Forked from eth-protocol-fellows/cohort-five

    Fifth cohort of Ethereum Protocol Fellowship