My latest articles, what's on my mind lately
Functional JavaScript - What is a Functor?
Jun 16, 2016 • 5 min read
Explore the concept of functors in functional programming with JavaScript. Learn how functors can help solve common coding problems in a functional style, such as handling null or undefined values. Dive into examples and understand the principles behind functors.
Unit testing using Typescript and Mocha
May 5, 2016 • 2 min read
Learn how to set up unit testing in TypeScript using Mocha without the need for Webpack and Karma. Discover the necessary configurations, including installing ts-node and updating the package.json file. Simplify your testing setup and target ES6 with ease.
Functional JavaScript - Composition
Apr 25, 2016 • 9 min read
Discover the power of composition in functional JavaScript programming. Learn how to combine existing functions to create new ones, simplifying code and achieving a declarative programming style. Explore examples of composition and understand the benefits it brings to your code.
Functional JavaScript - An introduction and currying
Apr 13, 2016 • 7 min read
Discover the basics of functional programming in JavaScript and dive into the concept of currying. Learn how to create curried functions that allow for partial application of arguments, making your code more declarative and reusable.
Linting TypeScript with Webpack
Apr 7, 2016 • 3 min read
Learn how to use Webpack to incorporate TSLint, a powerful TypeScript linter, into your development workflow. This article covers setting up a tslint.json file, integrating with popular text editors, and configuring Webpack to enforce linting rules during the build process. Improve your code quality today!