
For further actions, you may consider blocking this person and/or reporting abuse
For further actions, you may consider blocking this person and/or reporting abuse
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.
Mario Ruci -
Alex Anie -
Karen Payne -
Dennis Traub -
Once suspended, backendandbbq will not be able to comment or publish posts until their suspension is removed.
Once unsuspended, backendandbbq will be able to comment and publish posts again.
Once unpublished, all posts by backendandbbq will become hidden and only accessible to themselves.
If backendandbbq is not suspended, they can still re-publish their posts from their dashboard.
Once unpublished, this post will become invisible to the public and only accessible to Viach Kakovskyi.
They can still re-publish the post if they are not suspended.
Thanks for keeping DEV Community safe. Here is what you can do to flag backendandbbq:
Unflagging backendandbbq will restore default visibility to their posts.
Top comments (4)
Nice - more information is always better. The "why" of changes is particularly important for other devs and future you.
One step better is writing your detailed descriptions in the body of commit messages; then it's in the history and directly accessible through whatever interface you use to
git blame
. All of the Git web platforms support this well, including copying the commit body to the description of a pull request.Facebook's tool Phabricator has an excellent article on writing reviewable code + writing good commit messages which goes into more detail.
Completely agree. The article which you mentioned is a great guidance.
Really enjoyed reading this! My team is currently trying to improve our process and I think you had some really good points/ideas that I will bring up to them!
That's great, Connor! All the things in the blog post are based on my practical experience playing as a team.