Ajitesh Singharrayofcodes.hashnode.dev·Apr 5, 2024Why python recursions are too slow?Benchmarking I am a big fan of micro benchmarking. In this article, we will compare the performance of tail end recursive Fibonacci(40) in C, Go, Python3 and javascript. Note - A language isn't fast or slow, it's the compiler/interpreter which is res...4 likes·32 readsPython
Omid Eidivandiserverlessfolks.com·Feb 16, 2024AWS Lambda Runtime debateI enjoy following the AWS Lambda runtime battle since I use AWS Lambda as part of my work. I have experimented with several runtimes including C#, Node.js, Python, and Java, and have learned a lot about their respective pros and cons. It has been an ...142 readslambda
Aman Mishraamanmishra.hashnode.dev·Jan 2, 2024Decoding JavaScript: Compilation vs. Interpretation and Their Impact on Execution.Introduction: JavaScript, as a versatile and ubiquitous programming language, has gained immense popularity in web development. Understanding how JavaScript code is executed involves delving into the concepts of compilation and interpretation. In thi...10 likesJIT
Phạm Vân Anhcontentmarketing125.hashnode.dev·Dec 7, 2023Unlocking PHP's Potential: A Comprehensive Look at JIT CompilationIn the ever-evolving landscape of programming languages, PHP has carved a niche for itself by continuously adapting to the needs of developers and businesses. One of the most significant strides in PHP's evolution is the introduction of Just-In-Time ...10 likesPHP
laptrinhvien.hashnode.dev·Aug 26, 2023Sự xuất hiện của JIT ở phiên bản PHP 8.0PHP hiện tại là một trong những ngôn ngữ thông dụng trong việc xây dựng server cho các trang web từ nhỏ đến lớn. Theo một thống kê mới được cập nhật gần đây thì hiện tại đang chiếm khoảng 80% thị phần, vượt trội hoàn toàn so với các ngôn ngữ lập trìn...PHP
Nirjal Paudelnirjal.hashnode.dev·Jun 28, 2023Postgres Just in time compilation and worker processesBoth Just In Time compiler or JIT and worker processes could be news to you. By the end of this article, you would be able to understand the picture I have provided. For this article, I have created a couple of Postgres tables with huge rows, each o...28 readsDatabases
Umair Maratabumairmaratab.hashnode.dev·May 30, 2023Boosting Performance and Efficiency: The Power of JIT Compilation ExplainedA JIT (Just-In-Time) compiler is a type of compiler that dynamically translates and compiles sections of code at runtime, typically during the execution of a computer program. You have already used it because when you open a browser you run a Just in...JIT
Nilesh Vidurangablog.yaepublishinghouse.online·Apr 14, 2023Effortlessly Build Modern UIs with React and TailwindCSS: A Complete Guide - Part 2In the last episode, we talked about how to integrate TailwindCSS into our brand-new or existing React project. If you missed it read it here. Today we are going to discuss basic styling methods present in TailwindCSS. This episode will cover the fol...95 readsEffortlessly Build Modern UIs with React and TailwindCSSTailwind CSS
Dhawal Pandyadhawalpandya01.hashnode.dev·Feb 17, 2023Demystifying Just-In-Time CompilationChrome's V8 engine does this JIT for executing your JavaScript code on the browser, which makes it very fast. What is it? Just-In-Time (JIT) Compilation is a technique used in the implementation of some programming languages, including JavaScript, to...JIT
Francesco Tusathinkobjectoriented.hashnode.dev·Sep 28, 2022Introduction to Computer Programs: Bytecode and Machine CodeIn the past few years, we have witnessed exponential growth in the usage of electronic devices, ranging from desktop computers to mobile phones, to perform various operations. We rely on these machines for simple everyday tasks such as browsing the w...742 readsFundamentals of Programmingcompiler