Tuesday, September 30, 2014

Monday, September 15, 2014

Interesting Talk: "Components Just Enough Structure"

Yesterday I watched this interesting talk by Stuart Sierra: He presents an evolution of the ideas in his previous Clojure in the Large talk.

Interesting Talk: "Clojure in the Large"

I've just watched this interesting talk by Stuart Sierra: PS: An earlier version of the talk, so you can see the evolution of his ideas.

Saturday, September 13, 2014

Refactoring my generalized fizzbuzz to use only applicative higher-order functions

I refactored my my previous version of generalized FizzBuzz, so that, it doesn't use neither for loops nor recursion. Now it only uses: reduce and map.

This is the new code:


The tests are exactly the same as in the previous version:

Wednesday, September 3, 2014

Tuesday, September 2, 2014

Euler Project: Problem 7 in Clojure

This is my solution in Clojure to the seventh problem from Euler project:


It works but it's quite slow.