My Presentations
Links to my presentation slides clojure introduction javascript introduction java8 new features hashicorp nomad tutorial
Links to my presentation slides clojure introduction javascript introduction java8 new features hashicorp nomad tutorial
A few years ago one of my colleagues “discovered” an algorithm which led to my nickname: take the 3 first characters of my first name and surname concatenate them: DANiel + GERlach => Danger The algorithm can be implemented as a pure function in Javascript: 1 2 3 4 5 6 7 8 9 function getNickname(fullname) { return fullname .split(/\s+/) .map(n => n.substring(0,3)) ....