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 ...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 ...185 likesยท2.5K readsinternships
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...163 likesยท2.3K readsinterview
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 ...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...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...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...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...software 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...leetcode
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...Technical 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...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 ...data 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...26 readsJavaScript