Uduak Obong-Erenmeekg33k.hashnode.net·Mar 11, 2021Featured6 Red Flags I Saw While Doing 60+ Technical Interviews in 30 DaysWhat is the one thing you would look out for if you had to join a company? Sometime between January and March 2020, I wanted to change jobs and was looking to join a new company. This, among other reasons, led me to embark on a marathon of technical ...Victoria Lo and 4 others are discussing this5 people are discussing thisDiscuss·221 likes·45.7K readsinterview
Bosun Egberindebosunski.hashnode.net·Jan 11, 2021FeaturedMy Shopify Internship journey: From application to offerInternships are great ways for you to expand your knowledge and experience in any field. It is also a good way to make a start in the industry one foot at a time. Over the last few weeks, I’ve had questions around my journey to becoming an Intern at ...Sandeep Panda Test and 10 others are discussing this11 people are discussing thisDiscuss·185 likes·2.5K readsinternshipsInsightful. I just applied for the summer 2021 Frontend developer internship, this will be of great help. 3
Sachin Bhadoriaheysachin.hashnode.net·Jan 24, 2022FeaturedGoogle Interview Experience 💼 - Software Engineer 👨💻 (Accepted)Recently I got an offer from Google India for an L3 level SWE. So, I decided to share my interview experience because it makes me look cool, right? 😂. There are already so many interview experiences online, why would you need another one? Every exp...Victoria Lo and 14 others are discussing this15 people are discussing thisDiscuss·163 likes·2.3K readsinterviewWow, congratulations and best of luck with your new job Sachin Bhadoria! 3
Sandeep Ranasandrana.hashnode.net·Apr 23, 2023Understanding DOMBasic Definition DOM stands for Document Object Model is a programming interface for webpages. It represents the structure and content of the webpage in a tree-like structure, with each element on the page as a "node" in the tree. Imagine a web page ...Discuss·2 likesJavaScript
Samuel Adebayosamueladebayo.hashnode.net·Apr 20, 2023Day 2 [Blind 75][LeetCode] Maximizing Profit from Buying and Selling StocksIntroduction Welcome to Day 2 of the Blind 75 Challenge! Today I will be tackling the problem of finding the maximum profit by buying and selling stock once, a common problem in algorithm interviews and coding competitions. In this blogpost, I will e...Discuss·28 readsLeetcode Blind 75 SeriesPython
Sandeep Ranasandrana.hashnode.net·Apr 15, 2023null vs undefined In JavascriptBasic Definition null and undefined is part of Javascript primitive datatypes living happily with 5 others. let javascriptPrimitives = ['string','number','null','undefined','boolean','symbol', 'bigint']; Note - Both null and undefined will represen...Discuss·36 readsJavaScript
Subhamcodexam.hashnode.net·Apr 7, 2023🎯 Two Sum - LeetCode(JavaScript)🔗 Problem Link 🌐 Read On Website(Better Experience) 👉 Read On My Website(Best) 👉 Read On Hashnode 👉 Read On Dev.to 📊 Difficulty Level [x] Easy [ ] Medium [ ] Hard [ ] Expert 💥 Brute Force Solution 🧠 Approach The brute-force a...Discuss·28 readsleetcode
Ashutosh Dwivediashutoshdwivedi.hashnode.net·Apr 5, 2023The Often-Overlooked Secret to Building Your Reputation as a Software EngineerAs a software engineer, you spend countless hours crafting clean code, testing, debugging, and pushing your limits to deliver exceptional software products. But there's one crucial aspect that often goes unnoticed: technical documentation. In my rece...Discusssoftware development
Mir Ahmedmusclesandcode.hashnode.net·Mar 30, 20234 Resources for Technical Interview SuccessDisclaimer: This article was originally written and posted in March 2020, and moved to HashNode in March 2023. In February 2020, I posted on LinkedIn about conducting technical mock interviews with those who are currently in the hiring process. I was...Discussleetcode
Taylor Desseyntdesseyn.hashnode.net·Mar 30, 2023How to Survive an Interview: Acing the Technical with Eddie HinkleI had the opportunity to sit down and pick the brain of Eddie Hinkel— Engineer Manager at Glassdoor. Just a light casual chat about how the technical interviewing process is sometimes set up like a torture device. I’m sure many of you can attest to t...DiscussTechnical interview
Amnah khatunamnah.hashnode.net·Mar 10, 2023Execution Context: Understanding JavaScriptUnderstanding Execution context will help in understanding other concepts like hoisting, scope chain, scope, closure, and event loop. Let’s start with the definition Execution context is an environment where JavaScript code is executed and evaluated...Discuss·1 likeJavaScript
Lonnie McRoreyfs.hashnode.net·Mar 7, 2023Rethinking Technical Interviews for Software Developers: Moving Beyond Data Structures and AlgorithmsIn the future, some employers may consider candidates who do not answer data structures or algorithms questions in a software developer job interview as unfit for the position. However, this perspective may be shortsighted and may not consider other ...Discussdata structures
Kanan Kontorovskykanan.hashnode.net·Mar 7, 2023A Quick and Simple Explanation of the Event LoopWhen you write a program in JavaScript, the computer has to do a lot of things all at once, like showing images on the screen, playing sounds, and responding to things you click on. The event loop is what helps the computer do all these things in the...Discuss·26 readsJavaScript