Abhishek Munducodinguru.hashnode.dev·Sep 7, 2023JavaScript Online Commpi...Introduction In the fast-paced world of web development, JavaScript remains a dominant force. Whether you're a seasoned developer or just starting out, having a reliable JavaScript compiler is essential. Thanks to the wonders of the internet, online ...DiscussJavaScript
Abhishek Munducodinguru.hashnode.dev·Aug 9, 2023Demystifying JavaScript Compilers: A Deep Dive for CodinGuruIntroduction JavaScript, the ubiquitous language of the web, has come a long way since its inception. One of the key elements contributing to its performance evolution is the role of compilers. If you're a codinguru looking to enhance your understand...Discuss·2 likesPython
Stackzerostackzero.hashnode.dev·Jul 14, 2023Compilation Process in C: Easy IntroductionDefinition The compilation in c (and more in general in compiled languages) is the process that, starting from a human-readable source code, generates an executable Binary. The full process of compilation, in C, consists of four phases that can be su...DiscussC
Alexander Nikolovalexandernikolov.tech·Jun 10, 2023JVM compilers: Just in Time vs Ahead of TimeWhat is a compiler and what does it do? A compiler is a special type of software that translates source code written in one programming language into another language, usually machine code or "binary" that can be directly executed by a computer's pro...DiscussJava
Anzhelikaflutterdart.hashnode.dev·Apr 28, 2023Compilers in DartHi! This is the series of learning Dart programming language. In the previous chapter, I explained the difference between var and dynamic and introduced you to the Dart. Today, we discuss Dart compilers and how your code executes and turns into worki...Discuss·201 readsDart
Pavel Durovblog.p3ld3v.dev·Apr 21, 2023Writing interpreter in Rust using grmtoolsIntroduction This article overviews the process of writing an interpreter with Rust programming language. We will use the grmtools Rust crate to help with the parsing. We will define tokens of our language and create math addition and multiplication ...Discuss·58 readsRust
rivondaverivondave.hashnode.dev·Apr 16, 2023Interpreter and Compiler in programming explained! (Never forget again)This is a very short article with a detailed explanation of interpreters and compilers What is a programming language? A programming language is a language that enables humans (developers) to communicate with a computer system. So yeah, HTML is not ...Yash K. and 3 others are discussing this4 people are discussing thisDiscuss·41 likes·61 readsinterpretergreat write up 20
Denis Ekartdenace.dev·Jan 25, 2023Exploring Roslyn .NET Compiler Platform SDKIn this series of articles, I will explore how Roslyn enhances the development process and allows developers to write code analysis, transformation, and manipulation tools. (This series is a work in progress. I will update the article with relevant l...Discuss·2 likes·235 readsExploring Roslyndotnet
Devlin Bentleymeanderingthoughts.hashnode.dev·Dec 28, 2022How Microsoft Tested Compilers Circa 2006My first job out of college was working on the Windows Mobile Compiler Team (which had previously been the Windows CE compiler team). A warning, everything in this post is from memory, and old long-term cached memories at that, so some numbers may be...Discuss·1 like·2.3K readscompilers
Sakshamthefearofblogs.hashnode.dev·Apr 24, 2021Understanding Compiler DesignEvery one of us has used a compiler once in our programming journey or must have read about it. Ever thought about how a compiler works? Today I will be discussing the design structure of a compiler. A code basically has to pass through a different n...Discuss·1 like·76 readscompilers