DEV Community

Cover image for Contributors Wanted! Teach Me Like Im 5 (Python & Bash)
Fum
Fum

Posted on

 

Contributors Wanted! Teach Me Like Im 5 (Python & Bash)

Hi Fellow Devs!

I'm looking for contributors to the following Github public repositories:

GitHub logo inspirezonetech / TeachMePythonLikeIm5

Teach the Python programming language using a collection of super beginner friendly tutorials and challenges.

GitHub logo inspirezonetech / TeachMeBashLikeIm5

Teach the Bash programming language using a collection of super beginner friendly tutorials and challenges.

The repositories are focused on teaching the very basics of the languages through a tutorial followed by a challenge. I'm looking for contributors to add tutorials and creative challenges!

Full details are explained in the README.md and CONTRIBUTING.md of the repositories.

The repositories are also tagged for hacktoberfest. There's only 3 days left in October so it might be a good way to get those pull requests if you're still trying to get them!

If it interests you please check it out.

inspirezone.tech is a brand new community and tech blog focusing on bringing together developers through online coding collaboration.

Thanks!

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.