Understanding a catamorphism (by writing a simple one) A lot of the time, people haven't heard of catamorphisms, or misunderstand what it is. Let's make it simple, and better yet, let's write one on our own!
Abstractions, composition, and modularity A lot of the time, code is about sharing ideas, in addition to solving problems. In code, ideas are most often expressed as abstractions. And solving a problem is usually building up a solution using several small ideas put together. Interested?
Stop breaking your head — Refactor your cycle (app) into replaceable, reusable spare parts now In a previous post, we were introduced to the Recall app that was built with Cycle.js. A couple of people were interested to know how to…