DEV Community

Cover image for Central tenet of DevOps
Pragyan Tripathi
Pragyan Tripathi

Posted on

Central tenet of DevOps

A central tenet of DevOps is the idea of a blameless culture:

Rather than focusing on who “caused” an issue,

Engineers reflect on how the system itself can be made more reliable and resilient.

Thanks for reading this.

If you have an idea and want to build your product around it, schedule a call with me.

If you want to learn more in DevOps and Backend space, follow me.

If you want to connect, reach out to me on Twitter and LinkedIn.

Top comments (0)

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.