Content Software & Computers

Disclaimer: This blog post is my notes and interpretation on concepts and ideas presented in the book together with some reflections from my own experience working with various organizations. I first heard about Domain Driven design a couple of years back but it took me quite a while to deep dive in the book “Domain Driven Design, Tackling complexity in the Heart of Software”....

Continue Reading

My post “Develop Lambda with Node.js” presents my first attempt to learn and use Node.js and subsequently Javascript. Coming to Javascript with a Java background had to spend some time to familiarize my self with the asynchronous concepts. Node.js uses an event-driven, non-blocking I/O model, which means that the execution of the code will not block waiting for and I/O operation to complete....

Continue Reading

This article is a small introduction in Node.js from a Java developer’s perspective, The purpose is to create an AWS Lambda Function to solve the problem described here: How I started with Serverless. The merits of AWS Lambda UI are beyond the scope of this tutorial. What is Node.js ? The formal definition of Node....

Continue Reading

The Serverless approach is gaining a lot of traction lately in the software industry. To explain it in simple terms, the reasoning is that you do not have to manage servers anymore, but you still need to develop the source code and deploy it in the cloud. Essentially it removes the need to:...

Continue Reading