Use Akka actors for DDD
I just viewed a interesting presentation about using Akka for DDD by Vaughn Vernon
I just viewed a interesting presentation about using Akka for DDD by Vaughn Vernon
UPDATE (2017-07-05) – I added a solar powered battery charger. I recently decided to do something with the Wemos D1 mini that was lying in my drawer for a while. Inspired by a ‘home-made’ weather station built by a friend, … Continue reading
def avatar = Action { request => val img = new File(“/path/to/some/location.jpg”) if (img.exists()) { Ok.sendFile(content = img, inline = true) } else { NotFound } }
Finally, I got my certificate for the Coursera ‘Principles of Reactive Programming‘ course!
Recently, I was trying to untangle all the fuzz about Monads when I came across this really clear post of Daniel Spiewak. Helped me a lot….
Finally, I got my Coursera certificate for the Functional Programming Principles in Scala course!
During my discovery of the “Scala Development World”, as a Object Oriented Java developer, I wonder my self several times: how would I achieve / do / fix this in Scala? Therefore, I created a page listing all my questions … Continue reading
Replaced Anorm usage in my app with ScalaQuery. Finally querying standard SQL natively in a programming language!
The application I mentioned in my previous post is built with the following technologies: Scala 2.9.1 Play! 2.0.4 Deadbolt-2 1.1.3 for security Play!’s Anorm for data access jQuery UI 1.9 Using the Cake pattern for DI (see this and this)
Taking Scala to the next level after finishing the progfun course: ported an existing Java/Wicket/CDI application to Play/Scala and deployed it succesfully to the Cloudbees Run@Cloud. Play! Rocks!