Skip to content
View kraftdorian's full-sized avatar

Block or report kraftdorian

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

Hi there πŸ‘‹

I'm a Frontend Engineer from Poland with a passion for continuously learning new things.

πŸ”­ What tech stack I'm currently working with

react vue.js jest styled-components docker typescript node.js npm

πŸ”­ What tech stack I was working with

angular php sql

🌱 What I'm currently learning

haskell elm

πŸ“« How to reach me

linked in dev.to leetcode.com

⚑ Fun facts

I like to rewrite code based on other languages to JavaScript.
I think it's a good way to enhance my learning process.
Check out my gists to learn more.

I'm art hobbyist, mostly doing traditional art.
deviantart

I stream my art too!
deviantart

Pinned Loading

  1. react-ts-rollup-starter-lib react-ts-rollup-starter-lib Public

    React TypeScript components library built with rollup.js from scratch.

    JavaScript 14 4

  2. money-tracker money-tracker Public

    A simple project that I've created to learn Elm language.

    Elm

  3. haskell-greeter haskell-greeter Public

    My first cabal app

    Dockerfile

  4. 7languages7weeks 7languages7weeks Public

    My progress in learning from a book "Seven Languages in Seven Weeks" by Bruce Tate

    Prolog

  5. TypeScript Promise functor TypeScript Promise functor
    1
    function PromiseFunctor<In, Out>(f: (input: In) => Out, value: Promise<In>): Promise<Out> {
    2
        return value.then<Out>(
    3
            a => f(a)
    4
        );
    5
    }
  6. TypeScript Monad implementation attempt TypeScript Monad implementation attempt
    1
    //
    2
    // Created with help of the great contents from:
    3
    // http://learnyouahaskell.com/a-fistful-of-monads
    4
    //
    5