Showing 100 articles max
Java Architect Handbook
Java Architect Handbook
May 30, 2026 · Interview Experience

What Is IPv6 and How Does It Differ From IPv4? Interview Guide

This article explains IPv6 fundamentals, compares it with IPv4 across address length, header format, security and configuration, and provides interview‑ready insights such as SLAAC auto‑configuration, dual‑stack transition, and common follow‑up questions.

IP protocolIPv4IPv6
0 likes · 13 min read
What Is IPv6 and How Does It Differ From IPv4? Interview Guide
Java Architect Handbook
Java Architect Handbook
May 29, 2026 · Interview Experience

CDN Cache vs Redis Cache: Key Differences and Ideal Use Cases (Interview Insight)

The article explains how CDN works as a distributed reverse‑proxy cache, details its DNS‑based load balancing, cache‑hit/miss flow, expiration policies and refresh strategies, compares CDN caching with browser and Nginx caches, outlines scenarios where CDN or Redis is appropriate, and provides typical interview follow‑up questions and practical tips.

CDNCache InvalidationCaching
0 likes · 13 min read
CDN Cache vs Redis Cache: Key Differences and Ideal Use Cases (Interview Insight)
Java Architect Essentials
Java Architect Essentials
May 23, 2026 · Interview Experience

20 Must‑Know Interview Questions Covering 95% of Microservice Scenarios

The article analyzes why candidates fail by relying on raw question banks, presents three deep‑dive topics—auto‑configuration, distributed transaction management, and microservice componentization—with concrete case studies, and offers a curated list of 20 essential interview questions and answer strategies to help candidates demonstrate real‑world risk‑aware thinking.

Interview preparationMicroservicesauto-configuration
0 likes · 10 min read
20 Must‑Know Interview Questions Covering 95% of Microservice Scenarios
Java Captain
Java Captain
May 19, 2026 · Interview Experience

Why a Bank Tech Department Can Stall Your Career Progress

A recent graduate shares how joining a bank's technology division turned out to involve mostly Excel work, legacy mainframe code, and outsourced implementations, leaving little technical growth and causing anxiety about losing the ability to switch jobs.

bank technologycareer advicecareer experience
0 likes · 5 min read
Why a Bank Tech Department Can Stall Your Career Progress
Su San Talks Tech
Su San Talks Tech
May 19, 2026 · Interview Experience

Designing a Hundred‑Billion‑Scale Message Queue: A ByteDance Interview Walkthrough

This article walks through the interview question of designing a message queue that handles billions of messages daily and peaks at millions of QPS, covering traffic calculations, core roles, storage and throughput techniques, scalability, high availability, observability, framework comparisons, a real‑world case study, and key follow‑up interview topics.

High ThroughputKafkaMessage Queue
0 likes · 12 min read
Designing a Hundred‑Billion‑Scale Message Queue: A ByteDance Interview Walkthrough
DeWu Technology
DeWu Technology
May 8, 2026 · Interview Experience

From Rookie to Tech Pro in One Year: How Two New Engineers Mastered Real-World Projects

The article interviews two engineers who joined DeWu a year ago, revealing how structured mentorship, hands‑on project ownership, AI model optimization, and a supportive learning ecosystem accelerated their growth from beginners to contributors capable of leading complex technical initiatives.

AI model optimizationProject Managementcareer growth
0 likes · 13 min read
From Rookie to Tech Pro in One Year: How Two New Engineers Mastered Real-World Projects
IT Services Circle
IT Services Circle
May 2, 2026 · Interview Experience

When an Interviewer Says AI Can Code 100× Faster—What’s Your Value?

The article argues that AI may write code far faster, but a programmer’s true worth lies in understanding requirements, making decisions, and solving business problems, so it advises shifting from a pure coder to a problem‑modeler who leverages AI as a productivity amplifier.

AIInterviewcareer advice
0 likes · 6 min read
When an Interviewer Says AI Can Code 100× Faster—What’s Your Value?
PMTalk Product Manager Community
PMTalk Product Manager Community
May 2, 2026 · Interview Experience

How a Real AI Use‑Case Won Me an Offer

The author recounts an interview where the question "How do you use AI in your work?" was answered with a concrete, step‑by‑step AI‑assisted workflow that turned a tool outage into a stable, reusable process, demonstrating the value of problem definition over mere tool mentions.

AIInterviewcase study
0 likes · 9 min read
How a Real AI Use‑Case Won Me an Offer
Wu Shixiong's Large Model Academy
Wu Shixiong's Large Model Academy
Apr 29, 2026 · Interview Experience

ByteDance Interviewer Asks: What Rank r Do You Use for LoRA? I Said 64—He Said I'm Wasting GPU Memory

The article examines a common interview scenario where candidates are asked about LoRA rank selection, outlines two typical mistakes—guessing or staying silent—and presents a three‑step strategy of honest boundary setting, logical derivation, and asking a focused question, illustrating the approach with concrete LoRA calculations and a vLLM case study.

AI EngineeringLoRAinterview strategy
0 likes · 13 min read
ByteDance Interviewer Asks: What Rank r Do You Use for LoRA? I Said 64—He Said I'm Wasting GPU Memory
PMTalk Product Manager Community
PMTalk Product Manager Community
Apr 26, 2026 · Interview Experience

What Skills an AI Product Manager Needs in 2026 – A Full Interview Walkthrough

The author recounts a detailed AI product manager interview, sharing personal background, the interviewer's probing questions about AI understanding and product strategy, feedback on superficial answers, core competency expectations, the company's knowledge‑base product, challenges faced, and key takeaways for aspiring AI product managers.

0-to-1 product experienceAI SkillsAI product management
0 likes · 12 min read
What Skills an AI Product Manager Needs in 2026 – A Full Interview Walkthrough
ITPUB
ITPUB
Apr 25, 2026 · Interview Experience

How to Design a Billion‑Scale URL Shortening System for an Interview

This article walks through the complete interview‑style design of a billion‑scale URL shortener, covering requirements, capacity estimation, API definitions, database schema, short‑code generation algorithms, sharding, caching, load balancing, rate limiting, and expiration handling, while illustrating each step with concrete examples and calculations.

CachingDistributed SystemsSystem Design
0 likes · 24 min read
How to Design a Billion‑Scale URL Shortening System for an Interview
Java Architect Handbook
Java Architect Handbook
Apr 24, 2026 · Interview Experience

Why Use Coroutines When Threads Already Exist? Java Interview Deep Dive

An interview‑focused analysis explains how processes allocate resources, threads handle CPU scheduling, and coroutines act as lightweight user‑mode threads, comparing their creation costs, switching overhead, and memory usage, and highlights Java 19/21 virtual threads as the Java implementation of coroutines.

JavaThreadconcurrency
0 likes · 13 min read
Why Use Coroutines When Threads Already Exist? Java Interview Deep Dive
Java Architect Handbook
Java Architect Handbook
Apr 23, 2026 · Interview Experience

Meituan Second Interview: Solving High RocketMQ Consumption Latency in Production

During a Meituan second-round interview, the candidate explains how to diagnose and resolve high RocketMQ consumption latency in production, outlining a three‑step approach—stop the bleeding, recover service, and cure the root cause—through consumer scaling, message forwarding, logic optimization, concurrency tuning, queue expansion, and monitoring.

Consumer LagInterview preparationJava
0 likes · 14 min read
Meituan Second Interview: Solving High RocketMQ Consumption Latency in Production
Java Tech Enthusiast
Java Tech Enthusiast
Apr 19, 2026 · Interview Experience

Counting Boomerangs Efficiently: Hash‑Map Solution for LeetCode 447

This article explains how to count all boomerang tuples in a set of distinct points by using a hash‑map to store distance frequencies for each anchor point, achieving O(n²) time without costly square‑root calculations and providing Java, C++, and Python implementations.

BoomerangHashMapInterview
0 likes · 7 min read
Counting Boomerangs Efficiently: Hash‑Map Solution for LeetCode 447
AI Waka
AI Waka
Apr 16, 2026 · Interview Experience

40 Must‑Know GenAI Interview Questions: From RAG Pipelines to Multi‑Agent Orchestration

This comprehensive guide compiles 40 senior‑level GenAI interview questions covering LLM fundamentals, retrieval‑augmented generation, prompt engineering, multi‑agent orchestration, fine‑tuning, evaluation, system design, NL‑to‑SQL, and knowledge‑graph retrieval, providing concise, accurate answers and practical trade‑off insights.

GenAIInterview preparationLLM
0 likes · 31 min read
40 Must‑Know GenAI Interview Questions: From RAG Pipelines to Multi‑Agent Orchestration
Wu Shixiong's Large Model Academy
Wu Shixiong's Large Model Academy
Apr 16, 2026 · Interview Experience

Turn Memorized Answers into Deep Understanding for Tech Interviews

This article explains why interviewers use seemingly rote questions to probe a candidate's true grasp of concepts, contrasts memorization with genuine understanding using PPO vs GRPO, and provides a practical three‑question framework and dialogue examples to help candidates answer technical principle questions confidently.

Answering TechniquesGRPOInterview
0 likes · 12 min read
Turn Memorized Answers into Deep Understanding for Tech Interviews
PMTalk Product Manager Community
PMTalk Product Manager Community
Apr 15, 2026 · Interview Experience

10 Common Agent Product Manager Interview Questions with Answer Templates

This guide outlines ten frequent interview questions for Agent product manager roles, covering basic concepts, design, technical collaboration, implementation challenges, user experience, commercialization, competitor analysis, cross‑department collaboration, future trends, and self‑assessment, each paired with a concise answer framework.

AIAgentCareer Preparation
0 likes · 13 min read
10 Common Agent Product Manager Interview Questions with Answer Templates