Animesh Kumar Guptaexedev.hashnode.dev·Oct 9, 2023Explain react to 10 year oldReact is a computer programming tool that helps us create websites and apps. Imagine that a computer is like a magic box, and we need to give it instructions so it can do something amazing. React is a tool that comes to our rescue when we're building...DiscussReact
Kadhirravan Rkadhir.hashnode.dev·Sep 4, 2023What the heck is an Event Loop? Event Loop in Javascript ExplainedIf you are working with any fairly advanced applications In Javascript, you would have to work with both synchronous and asynchronous code. Understanding how the Javascript engine executes these different parts of the code is essential to building be...Discuss·11 likes·119 readsexplained
Kishan Kumarwww.0xkumar.com·Sep 4, 2023How Authentication Works: A Step-by-Step Explanation of the Process Behind Signing Up and Logging InI recently wanted to build a project where I was required to have a feature to authenticate users. I was presented with multiple options; I could use Google Sign In, for example, and some libraries to get this thing done. But that wouldn't quench my ...Discuss·103 readsauthentication
Hoh Shen Yienblogs.shenyien.cyou·May 13, 2023The Next.js 13 App Directory and Server Components: What You Need to KnowNext.js has announced a major update in version 13 with its App Directory Routing. While it has been beta for a while, it's now finally stable and recommended for new projects. The new app directory introduces new features like Route Group, a new la...Discuss·31 likes·5.7K readsNext.js
Saravana Sai saravanasai.hashnode.dev·Mar 6, 2023JDK vs JRE vs JVM in Java – Difference Between ThemIntroduction Java is one of the most popular programming languages used in developing environments today. It is primarily used for back-end development projects, game development, and desktop and mobile computing. This article is about the key differ...Discuss·42 readsJava
Chirag Patildevexplanation.hashnode.dev·Feb 6, 2023How to solve the Tower of Hanoi Problem: AlgorithmTower of Hanoi: It's a puzzle game with three towers and disks; transferring all the disks from the source tower to the destination tower seems easy, but there are some rules we need to follow to play this game. Please check the rules below. Rules: ...Discuss·1 like·133 readsPython 3
Lokesh Kumarcodetitan.hashnode.dev·Jan 28, 2023Rust: Talk to the Ethereum BlockchainObjective In this tutorial, we will connect to an Ethereum node (provided by infura) using the web3 crate and fetch the ether balance of a particular address. But wait, what is Infura and why do we need access to an Ethereum node? You can think of th...Discuss·208 readsRust
Karthick Ramjeekarthickramjee.hashnode.dev·Dec 28, 2022The Feynman technique.True genius is the ability to simplify, not complicate. Overview There are 4 steps to the Feynman technique which you can try out to master anything. Identify a topic. Take any topic of your choice and start writing down the things that we already...DiscussThoughtsleetcode
Eirik Madlandsynack.hashnode.dev·Dec 19, 2022Arrow functions in Javascript explainedArrow functions, also known as "fat arrow" functions, are a more concise syntax for writing function expressions in JavaScript. They were introduced in ECMAScript 6, and have become a popular feature of the language. Here is a simple example of an ar...Discuss·63 readsJavaScript
Alok Ranjan Singhaloksingh00.hashnode.dev·Oct 9, 2022Javascript Placement Series (Part 4)What is a Block? A Block is a compound statement which is used to group one or more statement. It groups the multiple lines and interprets as single line. Basically we can create Block with curly braces ( "{ }" ). We use block where we need to write...Discuss·1 like·45 readsJavaScript