Archive of posts: October 2016

article image

Concurrency In Clojure

Getting started with Core.Async, Var, Atom, Agents & Refs

Introduction: Clojure propose different primitives to build concurrent programs. When I started looking at Clojure, the topic was fairly blurry in my mind and I couldn’t understand why it was done differently. The way I see it now is:
The concurrency primitives of Clojure was made for the same reason we went from assembly to some higher level language: Easier abstraction that makes your program simpler to reason about. At the end of the day, It still relies on the low level primitives we have in other languages such as Mutex and Semaphore but the abstraction it creates allows for programs that are not only safer but also simpler to understand and reason about. Once we understand that, we need to grasp that fundamentally, there’s two ways to communicate and interact with subsystems:
 - Message passage communication: that’s what we found in the nature! Independant subsytem that communicate with each...

READ MORE

Up And Running

A simple solution to monitor your services The problem You may have many projects, they sometimes goes down for unexpected reasons, keeping track of it can be quite an annoying challenge and having system in places to get notified when something goes down is great. There’s many solutions that let...

article image

Free Ssl Certificate

Install once and don’t ever think about updating your ssl certificate. A step by step guide