reading-notes

Code-Fellows reading notes.

View the Project on GitHub bkasprzyk19/reading-notes

<==Back

Read the following articles

Solving Problems

Act like you make $1000/hr

How to think like a programmer

-understand -plan -divide -practice

The 5 Whys

Watch these videos

what the heck is the event loop anyway

This video was a breakdown of javascript. Phil said his question was what is javascript?

18 months later Phil thinks he figured it out

-to start from the beginning, this is a single threaded programming language

setTimeout - API provided by tge browser. It kicks off a timer. It handles the countdown for you. the set Timeout Call itself is complete so it can come off the stack. The timer in the webAPI completes, this is when the callback que comes in, or the task que

The Super Mario Effect