A failing fail in the monad list
2018-06-22
I’m following the Real World Haskell book. In the chapter about Monads, they create simple example using the list monad compute all …
2018-06-22
I’m following the Real World Haskell book. In the chapter about Monads, they create simple example using the list monad compute all …
2018-01-22
The book ‘Real World Haskell’ provides an implementation of foldl in terms of foldr:
myFoldl:: (b -> a -> b) -> b -> [a] -> b
myFoldl f z xs = foldr step id xs z
where step x g a = g(f a x)
They ask the reader (me) to try to understand the implementation …
2016-09-19
In the past few days I have been reading about Reactive Programming. Mostly about how it’s done with cycle.js. As the title attempts to suggest, this post is by no means an account of well thought ideas, but my first ideas and notes while reading about it.
2016-09-02
By default Odoo bundles static assets (JS and CSS) within a couple of files: All CSS files are bundled into a single big CSS file. The same happens for JS files.
The URLs of those bundles vary with any change within any of the included files. But those files are …