DEV Community

Cover image for Ag is for Agile
Nathan Kallman
Nathan Kallman

Posted on • Updated on • Originally published at kallmanation.com

 

Ag is for Agile

Over the past five articles, we have summarized and detailed four tenets of Ag:

  1. People amplify Process
  2. Demonstrations amplify Specifications
  3. Collaboration amplifies Negotiation
  4. Iterations amplify Intentions

The keen eyed readers have already realized this has just been a re-telling of the Agile Manifesto using slightly different phrases. I hope you enjoyed it anyway. And I hope it made you reconsider some processes calling themselves "Agile" and whether they actually adhere to the original vision.

Oldest 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.