Abou Zuhayrblog.zuhayr.dev·Sep 12, 2024Building My Own Programming Language: Day 01I've always wondered how computers understand language. How do words and symbols turn into 0s and 1s, and then back into something we can read? The typical explanations about compilers and interpreters give us the basics, but I often ask myself: Do I...DiscussWhat, How and Why?compilers
Dhanush Ndhanushnehru.hashnode.dev·May 18, 2024I created an Open Source Custom Code EditorHey Everyone 👋 I'm excited to announce my open-source custom code editor! 🎉 This editor is currently open-source and supports two programming languages: JavaScript and Python ( more to be included ). I was fascinated with various code editors execu...Discuss·3 likesOpen Source
Chris Dourisdigitalcreations.hashnode.dev·Mar 24, 2024Day 46/100 100 Days of CodeMixing Objective-C and C++ was quite the adventure. I didn't expect it to be that hard. The problem was that the compiler couldn't locate After a lot of experimentation, I ended up finding the solution on Stack Overflow. It is not possible to mix C++...Discuss100 Days of CodeC++
Olabanji BaniexforOlabanji's Blogbaniex.hashnode.dev·Feb 10, 2024Interpreter vs CompilerSo yeah, we are discussing Computers of course just in case "Interpreters and Compilers" are in another field. Allow me to paint in your imaginative mind. Imagine Vladimir Putin, the current Russian President, was giving a speech about the war and th...Discussinterpreter
Hady Eslamhadyeslam.hashnode.dev·Jan 25, 2024Engine - Yet Another Programming Languageبسم الله الرحمن الرحيماللَّهُمَّ انْفَعْنِي بِمَا عَلَّمْتَنِي، وَعَلِّمْنِي مَا يَنْفَعُنِي، وَزِدْنِي عِلْمًا Although there exist many programming languages on earth, This will not weave my determination to announce my new programming language ( E...Discuss·1 likeOpen Source
Basil Ajithundefined.pyfy.ch·Dec 26, 2023I Want To Create My Own Programming LanguageIt happened a few months ago...I was bit by the programming language bug. I am unable to recall how it happened or what led to it, but I suddenly got curious to know how programming languages worked and all I know was that I was hooked into the idea ...Discusscompiler
Jayant ChowdharyforfreeCodeCampfreecodecamp.org·Nov 30, 2023How to Build a Clang AST-Based C++ Static Analysis ToolClang is a set of tools and projects that provides infrastructure for languages in the C family like C, C++, OpenCL, and CUDA. It is a part of the LLVM project. This article will show you how to use Clang's front end libraries to build a simple stati...DiscussC++
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 ...Discuss·35 readsJavaScript
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 likes·45 readsPython
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