Skip to content
View sebastian-nowak's full-sized avatar
🏕️
Working remotely
🏕️
Working remotely

Organizations

@areven
Block or Report

Block or report sebastian-nowak

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

Hey there! 👋

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 = 'Sebastian Daniel Nowak'
    designation : str = 'Software Engineer'
    base        : str = 'Warsaw, Poland'
    hobbies     : str = 'Road cycling, climbing, photography'

class Stack(metaclass=Meta):
    languages   : Tuple[str, ...] = ('JavaScript', 'Python', 'Java', 'C++')
    databases   : Tuple[str, ...] = ('MySQL', 'PostgreSQL', 'MongoDB', 'Redis')
    frameworks  : Tuple[str, ...] = ('React', 'Vue.js')
    misc        : Tuple[str, ...] = ('Bazel', 'Docker')

 

Two truths and a lie

 ✿  I got caught in a small avalanche, wearing just my underwear.

 ✿  I visited a shady pub for them to teach me how to break into a car - and we did.

 ✿  I obtained a paragliding license and within an hour, I crash landed into a rock.
 

Get in touch

  Home: https://sdnowak.com

  LinkedIn: https://linkedin.com/in/sebastian-daniel-nowak/

  Instagram: https://instagram.com/sd.nowak/

Popular repositories

  1. sebastian-nowak sebastian-nowak Public

    2