Naved Alipython-inner-working.hashnode.dev·Sep 25, 2024What is PVM | Python WorkingPython doesn’t convert its code into machine code, something that hardware understnad. It converts it into something colled byte code. So within Python, compilation happens, but it’s just not in a machine language. It is into bye code (.pyc or .pyo) ...Python
Tushar Kaushikjs-code-parsing-and-execution.hashnode.dev·Sep 21, 2024Parsing and Executing JavaScript CodeThe first JavaScript engine was developed by Brenden Eich (as you already know him as the founder of JavaScript) which later got evolved into what we call today as spider monkey engine [Mozilla Firefox Engine]. JS Engine - software component/program ...62 readsJavaScript
Divyanshu Chaurasiyashiruchi.hashnode.dev·Apr 25, 2024Inner Working Of PythonUnderstanding how Python code is internally interpreted is a fantastic method to enhance your programming abilities and understanding. Here is a brief overview of how Python, particularly CPython (the standard Python interpreter coded in C), handles ...1 likepython beginner
781 _arpitarpitarya.hashnode.dev·Apr 9, 2024inner working of pythonParsing: When you run a Python script, the first step is parsing. The Python interpreter reads your code and checks its syntax for correctness. If there are any syntax errors, it will raise a SyntaxError and halt execution. Compilation: After parsin...Python
Himanshu Raienghimanshu.hashnode.dev·Apr 9, 2024Python inner workingEver wondered what really happens when you run a Python program? Let's break it down. When you run a Python program, it gets turned into something called bytecode, which is like a simpler version of the code. This bytecode helps the program run faste...2 likes·49 readsPython
Ashwini Kumar Pandeyash1ni.hashnode.dev·Mar 8, 2024Demystifying Python: A Peek into How Your Code Comes to LifeWelcome to the backstage tour of Python! Ever wondered what happens behind the scenes when you run your Python code? Let's take a journey through the inner workings of this beloved language, breaking down complex concepts into bite-sized pieces. Inst...1 like·31 readsPython
Gaurab Khanalblog.gaurabkhanal.tech·Feb 22, 2024Understanding and creating own (dotenv) module in nodejsImportance I don't think there's any developer who is unaware of the importance of storing confidential information like api_keys or any secret key in a (.env) file. Most developers store secret information in a (.env) file which they can access fro...33 likes·116 readsNode.js
Vrushabh Jadkarvehement2003.hashnode.dev·Feb 19, 2024Unraveling the Inner Workings of PythonPython, celebrated for its versatility, simplicity, and power, is a language that has captured the hearts of developers worldwide. From beginners to seasoned professionals, Python's elegance and efficiency make it a top choice for a wide range of app...1 likePython
Hitendra Singhhitendra369.hashnode.dev·Feb 13, 2024JavaScript code Execution on a deeper levelThis article will give you a high level understanding of how code is executed in javaScript. JavaScript Engine Java Script engine executes javaScript. Implements Heap,Call stack,Event loop,and Message queue Interacts with web api like settimeout a...2 likes·31 readsJavaScript
Rushabh Patilrushabhpatil.hashnode.dev·Feb 6, 2024The inner working of pythonHaving recently tuned into a video by Hitesh Sir, I'm set to distill the essence of his insights in this article. Brace yourself for a condensed version of the crucial takeaways from the video. The only prerequisite for diving into this summary is th...9 likes·76 readsPython