Akshay Thakurblog.aksact.dev·20 hours agoChapter 3: Adding an Evaluator to MonkeyLangIntroduction After implementing a lexer to tokenize our code and a parser to create an Abstract Syntax Tree (AST), the next crucial step in building MonkeyLang is adding an evaluator. The evaluator traverses our AST and executes the code, bringing ou...Discuss·1 like·56 readsGo Language
Abhishek Sharmaabhisheksharmacodes.hashnode.dev·Nov 21, 2024Are developers not that much happy?The 2024 Stack Overflow Developer Survey has revealed a startling statistic: only 20% of developers are happy in their current roles. This alarming figure underscores a growing issue within the tech industry, prompting a deeper look into the factors ...DiscussDevops
SK Akramakramcodez.hashnode.dev·Nov 18, 2024My Year-Long Coding Challenge Begins! 🚀Today, November 18, 2024, marks the beginning of my year-long coding journey! For the next 365 days, I’ll be coding every day, learning new skills, and working on meaningful projects. Every Sunday, I’ll share an update on my progress, challenges, and...Discuss#CodeEveryday
Abhishek Sharmaabhisheksharmacodes.hashnode.dev·Nov 14, 2024Why and How Children should learn to code?Hi there, Happy Childrens’ day! In today's digital age, coding has become an essential skill, much like reading and writing. It's not just for computer scientists or tech geeks; it's for everyone. Children who learn to code early on develop valuable ...Discusscoding
Usama Isausamaisa.hashnode.dev·Nov 13, 2024All about Web Development BreakdownWeb development refers to the process of creating and maintaining websites. It involves a wide range of activities, from designing how a site looks to writing code that enables the site to function. Web development can be broken down into several key...DiscussWeb Development
Ishant Kumarletscodeishant.hashnode.dev·Nov 12, 2024The Kahani Begins: Meet the Variables!Imagine you’ve got three friends, each with a unique way of holding onto things. Let’s call them var, let, and const. They’re a little quirky, and each has their own rules. Scene 1: var – The Forgetful Friend Our friend var has been around for ages,...DiscussJavaScript Aur KahaniJavaScript
Rohan Ghoshmultithreading-in-java.hashnode.dev·Nov 5, 2024Multithreading in javaUnderstanding Multithreading in Java Java is renowned for its robustness and versatility, and one of its standout features is the ability to handle multiple tasks simultaneously through multithreading. In this blog post, we'll delve deep into the con...Discuss·1 likeJava
Abhay Agnihotriabhayagnihotri.hashnode.dev·Oct 30, 2024typescript verse...Let’s Go from Basics to Advance🚀 Why you Should Read ? Whether you’re a coding novice, a seasoned pro, or just curious about typescript, this guide will make typescript’s core concepts a breeze. So get ready to dive into the world of typescript! Jav...DiscussTypeScript
Kofi / IllestpreachaProblog.illestpreacha.com·Oct 27, 2024WCCC_ArchivalSurvivalArchivalSurvival For this week's Creative Code challenge by @sableRaph:" Survival ”, ArchivalSurvival takes footage from the 1906 movie: Bob Electric Theatre and meshes it with code from HydraVideoSynth & LiveCodingYoutube to represent the survival p...DiscussWCCChallengeJavaScript
Enoch OlutunmidaProwww.thatsametechguy.com·Oct 26, 2024Deleting the Middle Node of a Linked List Using the Tortoise and Hare Algorithm in TypeScriptIntroduction In this post, we’ll be solving LeetCode Problem 2095: “Delete the Middle Node of a Linked List.” The problem statement on LeetCode is: You are given the head of a linked list. Delete the middle node and return the head of the modified l...Discuss·1 like·33 readsleetcode