awesome, thanks glad you like.. awesome suggestion btw.. i'll defo do that.. btw.. worth checking out node.js alpine video which is fairly under the hood for creating containers, as is my multi-stage vid
Interesting thing happen when I play with float numbers like 10 * 2.5 it uses smth called HeapNumber in an OldSpace. On M1 the maximum precision for the operation like x * 2.5000000000000001 is 16 digits. When I shift it right, it's going to be rounded
Your video is amazing, but I have some questions - V8 translates our code (the programmer writes) into machine code for execution, does that include all the code in Node.js' source code written in C++? - I still can't figure out the relationship of Event loop (which belongs to libUV library) and V8 (javascript runtime) - I read a lot of articles they say Event loop also executes the code and V8 also executes, so what is the wrong point here? Thank you very much.
These videos are GEMS!! Thank you for taking the time to makes em!! Helpful is an understatement!
Glad you like, they were some of my fave vids to build
Phenomenal playlist
thank you, glad you're enjoying
Interesting channel!
thank you, hope that's a positive interesting loool
Excellent! Thank you.
You are so welcome!
In my byte code, where yours says 0c mine says 0d, is this because of a difference in our cpu instruction set?
Hi Chris, love your contents! What about containers internals?
awesome, thanks glad you like.. awesome suggestion btw.. i'll defo do that.. btw.. worth checking out node.js alpine video which is fairly under the hood for creating containers, as is my multi-stage vid
Interesting thing happen when I play with float numbers like 10 * 2.5 it uses smth called HeapNumber in an OldSpace. On M1 the maximum precision for the operation like x * 2.5000000000000001 is 16 digits. When I shift it right, it's going to be rounded
interesting, must try that out
Your video is amazing, but I have some questions
- V8 translates our code (the programmer writes) into machine code for execution, does that include all the code in Node.js' source code written in C++?
- I still can't figure out the relationship of Event loop (which belongs to libUV library) and V8 (javascript runtime)
- I read a lot of articles they say Event loop also executes the code and V8 also executes, so what is the wrong point here?
Thank you very much.
@@abbasramees4238 the event loop callbacks have to get pushed to call stack when it's empty in order to run, yes?