I'm a Frontend Engineer from Poland with a passion for continuously learning new things.
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 a Frontend Engineer from Poland with a passion for continuously learning new things.
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.
React TypeScript components library built with rollup.js from scratch.
My progress in learning from a book "Seven Languages in Seven Weeks" by Bruce Tate
Prolog
function PromiseFunctor<In, Out>(f: (input: In) => Out, value: Promise<In>): Promise<Out> {
return value.then<Out>(
a => f(a)
);
}
//
// Created with help of the great contents from:
// http://learnyouahaskell.com/a-fistful-of-monads
//