Andrey Goncharovblog.goncharov.page·an hour agoI failed my Anthropic interview and came to tell you all about it so you don't have toAnthropic – those dudes behind Claude. It’s an alternative to OpenAI’s ChatGPT, backed by some seriously massive investments from Amazon. Rumor has it they’ve got a model even more powerful than OpenAI’s o3, but they’re so obsessed with safety (which...279 readsinterview
Deepak Singhdeepaksingh1301.hashnode.dev·3 hours agoTackling the Circle Intersection Problem in a React InterviewThe Interview Question During a recent technical interview, I was given an interesting challenge: "You need to build a React application where users can click anywhere on the screen to generate circles of random sizes. The circles should change colo...React
Raghvendra Dwivediraghavdwd.hashnode.dev·10 hours agoTop Hiring Mistakes to Avoid for Better RecruitmentWriting unclear job descriptions A job description is the first look and feel the candidates will get into the job. Ambiguous or false descriptions might keep away the right talent. Be specific about skills, qualifications, and expectations from the...interview
Deepak Modideepakmodi.hashnode.dev·a day agoSDE Interview Questions for Freshers1️⃣ Projects (High Priority) Be ready to explain your projects (Neo Compiler, NotesNeo, NeoCode). Focus on: Tech stack used and why. Challenges faced and how you solved them. Scalability & performance improvements. Future improvements and next ...11 likes·54 readsautodesk
Vinay Patelvinay-patel22.hashnode.dev·Feb 11, 2025Async/Await in JavaScriptThe async/await syntax is a modern approach to handling asynchronous operations in JavaScript. Handling asynchronous operations in JavaScript has evolved significantly over the years. While callbacks and promises were the go-to solutions, the introdu...JavaScript
Ravi Kumarravikr126.hashnode.dev·Feb 10, 2025Important questions on Local storage and CacheingKindle upvote it, it will motivate me to create this type of articles for you 🔼 What are the key differences between localStorage and sessionStorage? Both localStorage and sessionStorage are part of the Web Storage API and are used to store key-v...localstorage
Ashutosh Rajputfirst-interview-as-a-data-analyst.hashnode.dev·Feb 9, 2025How I Landed My Dream Job at a Top Data Science Company on My First Interview and Built PrepStat.inSecuring a placement in one of the world’s top data science companies on my very first interview felt like a dream come true. It all boiled down to meticulous preparation, leveraging the right resources, and a passion for data science. Preparation: T...software development
Ayush Rajputrajputayush.hashnode.dev·Feb 8, 202512. Document Object Model (DOM) in JavaScript – Complete GuideWhat is DOM ? » The Document Object Model (DOM) is a programming interface that represents the structure of an HTML or XML document as a tree-like hierarchy. » The DOM allows JavaScript to interact with and modify web pages dynamically. How does t...JavaScript
Ayush Rajputrajputayush.hashnode.dev·Feb 7, 20259. Functions- Arrow, IIFE , Callbacks in JavaScriptFunctions are reusable blocks of code that perform specific tasks Function Statement function hello(a){ console.log("Hello",a); // hello undefined } hello() /// function call we call function anywhere Function Parameters: Default and Rest(…a...JavaScript
Mihai Popescujavainterviewprep.hashnode.dev·Feb 7, 2025Random interview preparation subjectsJPA Repository: What It Is Used For and Main Features What is JPA Repository? JpaRepository is a part of Spring Data JPA, which provides a convenient way to interact with a relational database using JPA (Java Persistence API). It extends PagingAndSor...Java