Blog Posts

Recent posts

Monoid - Simple definition of Monoid

less than 1 minute read

1. Closure: Two same type pair operation results a new result with same type. 2. Associative: Doesn't matter or operation order wit a pair. 3. Identity: Ther...

Mid night commander short cuts

2 minute read

MC commands ----- Esc ----- Quick change directory: Esc + c Quick change directory history: Esc + c and then Esc + h Quick change directory previous entry: E...

Monad - simple example definition

less than 1 minute read

Combines the following concept. 1. Functor - Type constructor. - Value lifting. - class Functor f where fmap :: (a -> b) -> (f a -> f b) 2. Bi...