Upload date
All time
Last hour
Today
This week
This month
This year
Type
All
Video
Channel
Playlist
Movie
Duration
Short (< 4 minutes)
Medium (4-20 minutes)
Long (> 20 minutes)
Sort by
Relevance
Rating
View count
Features
HD
Subtitles/CC
Creative Commons
3D
Live
4K
360°
VR180
HDR
162 results
Strategy Design Pattern Explained with a Real Java Example | Low Level Design The Strategy Design Pattern is one of the most ...
28 views
3w ago
Factory Method is a creational design pattern: the base class defines the workflow and declares a creation method, and ...
97 views
2w ago
Observer Design Pattern—one of the most important behavioral design patterns in Java and Low Level Design interviews. This is ...
6 views
Two systems, two incompatible interfaces, one Adapter. Adapter is a structural design pattern: it wraps an existing interface and ...
63 views
13d ago
Why would you ever want only ONE object? That's the Singleton pattern — and it's one of the most misunderstood ideas in ...
33 views
Substack article @ https://prototypeproject.substack.com/p/the-composite-design-pattern-in-java Longer version ...
67 views
Which Design Pattern do you follow, and why?” A strong interview answer: Strategy Pattern — when I need to switch ...
29 views
In this video, we understand the **Transactional Outbox Pattern** with a simple and interview-focused explanation. We cover: ...
25 views
Visitor GoF Design Pattern from the book Design Patterns: Elements of Reusable Object-Oriented Software by GoF ...
1,117 views
What happens when one microservice keeps failing? If your application continues sending requests to a failing service, those ...
61 views
Aprende el Patrón de Diseño Factory en Java para escribir código profesional y desacoplado. Desafío al final del video.
0 views
4w ago
691 views
20 views
164 views
Three remotes. Three devices. Nine subclasses — and that's before the next device ships. Bridge is a structural design pattern for ...
90 views
5d ago
Mastering inheritance vs composition is essential for cleaner, more maintainable code architecture. This guide breaks down the ...
227 views
Enjoy!
1 view
SOLID is 5 design principles that keep object-oriented code easy to change. In this short: S — Single Responsibility: one class, ...
60 views
How do you reuse the overall shape of an algorithm while letting individual steps differ? That's the problem the Template Method ...
3 views
4d ago
One app, three platforms, three completely different UI families. Abstract Factory is the creational pattern that gives you a single ...
16 views
10d ago
In this short, we'll understand the Singleton Design Pattern and learn how to make a class Singleton in Java. A Singleton class ...
6,803 views
Deeply nested if-else blocks (arrow anti-pattern) make code unreadable, hard to test, and prone to hidden bugs. Discover how ...
442 views
104 views
Singleton Design Pattern in Java in 10 Minutes | Java Design Patterns Explained with Code.
44 views
A discount method that grows one else-if at a time. Order matters, nothing says so, and the rule that never fires is invisible until ...
517 views
Struggling to prepare for Java backend interviews? Searching through fragmented blogs, outdated books, and random GitHub ...
234 views
1mo ago
Stop writing 8 constructor overloads. Just don't. Static factories fail when optional parameters explode, and setters destroy ...
4 views
Toda vez que uma nova regra de negócio entra no sistema, você precisa alterar aquele switch/case gigante que só cresce?
12 views
I raised a PR to rename a database column in a table with 100M rows. My senior rejected it—but not because of the 100M rows.
What if you need more than one instance of a class, but you still want to control how those instances are created? That's where the ...
3d ago
This animated diagram maps out how JavaGuide organizes backend preparation into a single structured pipeline: Core Java ...
51 views
What is Dependency Injection (DI), and why is it so important in modern application development? ⚡ Instead of a class creating ...
328 views
Answer a round, find your gaps, patch them. GapfyreSWE is a software engineering trainer for developers — over 3500 questions ...
5 views
285 views
What happens when a class has multiple dimensions that need to change independently? The Bridge Design Pattern helps solve ...
49 views
2d ago
How do you add new operations to a set of classes without editing every one of them? That's the problem the Visitor Design ...
Learn how to build a read-through cache in Java that protects your database from a cache stampede when a hot key expires and ...
17 views
Complete SDET & QA Automation Interview Preparation KIT:- https://topmate.io/neverstoplearning/797905 ...
82 views
Strategy Design Pattern Explained | Swap Algorithms at Runtime How do you switch between different algorithms at runtime ...
1d ago
Key attrs: `java design patterns`, `creational patterns java`, `structural patterns java` Full breakdown + code: ...
11 views
How do you add new behavior to an object without creating a subclass for every possible combination? That's the problem the ...
Creational patterns like Abstract Factory and Builder isolate object instantiation logic to foster high modularity and low ...
Every request hits five checks before your code runs — auth, rate limit, validation, logging, caching. Stack them in one function ...
27 views
Three branches for two rules — and 15 still returns Fizz — sounds familiar? Instead of hard-coding every combination, model Fizz ...
1,287 views
El patrón que te permite tratar un objeto y un grupo de objetos de la misma forma #programación #java #patronesdediseño ...
634 views
Why does Map not extend Collection in Java? Map is an important part of the Java Collections Framework, but unlike List, Set, ...
351 views
What should happen when an API request fails? Retrying can recover temporary failures, but retrying too aggressively can ...
1,161 views
Machine Coding Round Course: https://solidcoder.in/courses/machine-coding-round/ Learn how to approach machine coding ...
87 views
Insertion Sort Explained visually with playing cards first, then Java code, C++ code, and C code so the shifts finally feel obvious.
123 views
Config Singleton Without Volatile Caused Intermittent Cache Corruption. Root cause: volatile missing on the static instance field.
9 views
If you are writing `if (opt.isPresent()) { opt.get(); }`, you have literally reinvented `if (x != null)` with more boilerplate! In this reel, learn ...
19 views
75 views
Primary title Stop Modifying Working Java Code! ✨ #Shorts # Alternative titles - New Payment, Another Giant Switch?! Java ...
15 views
11d ago
What happens when you ask an object for its internal data and run calculations externally? The moment internal structures ...
30 views
Entrou uma regra nova e você teve que alterar aquele if/else gigante de novo? Isso é acoplamento alto e violação direta do ...
81 views
Video Explicación Pathones Semana 4.
Welcome to DevCoreTechAI — a channel dedicated to helping you Learn, Build & Grow in Technology. Whether you're starting ...
8 views
6d ago
Title Stop Copy-Pasting JDBC Plumbing! Spring Template Secret #Shorts # Description One SQL query should not require a ...
7 views
How does Netflix handle millions of users streaming movies and shows at the same time? In this YouTube Short, discover how ...
8,348 views
How do you support millions of near-identical objects without running out of memory? That's the problem the Flyweight Design ...
3h ago
How do you give clients an easy way to use a complicated subsystem without exposing all of its moving parts? That's the problem ...
Day 23 of the Java Backend Development + Spring Boot course. Day 22 introduced Inversion of Control as a general principle ...
What happens when one slow microservice consumes all your application's threads? Even healthy services can stop responding.
45 views
When a Java constructor needs eight parameters, the problem is usually more than inconvenience: it signals confusing object ...
Want to learn System Design LLD from scratch? I created a FREE LLD Guide covering Design Patterns, real world examples, ...
74 views
12d ago
System Design for Beginners – Episode 11: Database Sharding Strategies You've decided to shard your database. But now ...
69 views
LeetCode #64: Minimum Path Sum using Dynamic Programming in Java. A robot starts at the top-left corner of a grid and must ...
126 views
Learn how microservices handle unexpected failures. Understand the most important resilience patterns. Discover how Circuit ...
10,329 views
8d ago
Classic Java singletons can break through reflection, serialization, cloning, and unsafe construction paths. Enum singletons close ...
Key attrs: `Builder Pattern Java`, `Builder design pattern`, `telescoping constructor` Full breakdown + code: ...
Forget college examples like "Animal and Dog"! In real-world enterprise engineering, how do you choose between an Interface ...
21 views
Recreate MinuteTech's exact armor trim and shield banner in Minecraft! Full tutorial on how to make this popular PvP look.
14,703 views
website link: https://solidcoder.in/ Machine coding round Mastery Course: https://solidcoder.in/courses/machine-coding-round/ ...
229 views
QAInterview #AutomationTesting #softwaretesting #sdet #SDET #playwrightautomation #playwrighttutorial #playwrightautomation ...
1,247 views
Want to create cool patterns with just a few lines of Python? Watch this quick demo and see how simple code turns into an ...
623 views
7d ago
How to become a Senior developer.. ♥️ #programming #javascript #python #coding #developer #coder .#coding ...
2 views
Preparing for Low-Level Design (LLD) interviews but not sure what to study and in what order? In this 3–4 minute video, I walk ...
209 views
Master Virtual Functions in Object-Oriented Programming (OOP) in under 60 seconds! Learn runtime polymorphism, late binding, ...
188 views
Basic theory might get you through a 60-second reel, but it won't survive a real corporate AI deployment. Building ...
31 views
Payment succeeded… But Inventory failed Now your Microservices system is inconsistent. That's why distributed transactions ...
In Java, the Decorator pattern consists of an interface and three classes. In Python, it's six lines of code 🐍 Java requires ...
54 views
Angarkha Anarkali Frock ♥️ Cutting & stitching / Frock Design #yt #viral #frock Comment karke bataye Aapko ye Angarkha ...
76,101 views
How do you build complex business rules that stay reusable, testable, and easy to combine? That's the problem the Specification ...
Master authorized payment testing using the cull command line tool. This guide demonstrates how to simulate external gateways ...
14 views
🚀 LEARN FOR FREE | BEST WEBSITES FOR TECH & CODING Want to learn coding, programming, AI, cloud computing, and other tech ...
336 views
The Right Approach to DSA 1. Create your own topic-wise sheetStart by creating a DSA sheet and organize it topic by ...
1,190 views
mehndi designs | mendini design | cone designs | mehandi design | mehdi ka dizain | Mehndi Designs Wedding Special Mehndi ...
439,079 views
Tech with Jatin LMS is LIVE: https://courses.techwithjatin.com Your complete SDET learning home with structured courses, notes, ...
88 views
5,287 views
new and stylish back and front blouse designs party blouse design#youtubeshorts #diy #blouse #shorts #viral 2026 ka new model ...
253,468 views
싱글톤 패턴의 핵심 개념과 전역 변수와의 차이점을 설명합니다. 코딩 입문자나 설계 패턴에 대해 더 알고 싶은 개발자에게 유용합니다 ...
I made a Red Demon Armor Combo in Minecraft with a matching banner shield. 🛡️ ARMOR RECIPE Helmet • Vex Trim + ...
20,077 views
Master Subtree of Another Tree (LeetCode 572) with this comprehensive step-by-step breakdown designed for coding interviews.
Firestore Data Modeling & Indexing explained in simple Thanglish! Firestore use pannumbodhu SQL database madhiri tables first ...
Kafka promises “exactly once”… but that does **not** automatically mean your customer will only be charged once. A consumer ...
24 views