DEV Community

Michiel Sikkes
Michiel Sikkes

Posted on • Originally published at michiels.io on

 

A weekend, a Rails app, a Kubernetes and an Azure.

This weekend, I’ve been exploring the depths of Kubernetes and Azure, to see if we can host Ruby on Rails with them. Kubernetes is an open-source system for automating deployment, scaling, and management of containerized applications. And Azure is a cloud infrastructure provider by Microsoft.

Read the post on my Medium

Latest comments (1)

An Animated Guide to Node.js Event Loop

Node.js doesn’t stop from running other operations because of Libuv, a C++ library responsible for the event loop and asynchronously handling tasks such as network requests, DNS resolution, file system operations, data encryption, etc.

What happens under the hood when Node.js works on tasks such as database queries? We will explore it by following this piece of code step by step.