DEV Community

Cover image for It's Permissions, Dummy! - Building SaaS #25
Matt Layman
Matt Layman

Posted on • Originally published at mattlayman.com

 

It's Permissions, Dummy! - Building SaaS #25

In this episode, we got into a static files problem that caused a template to fail to load from the Shiv app.

After some serious spelunking through the Django code and deep debugging, we found the file permission error that was the source of the problem.

Show notes for this stream are at Episode 25 Show Notes.

To learn more about the stream, please check out Building SaaS with Python and Django.

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.