Play Sending Data With Sound
Data Transmission via Audio Using Fourier Transform Analysis
🧠

Sending Data With Sound

This video demonstrates how to transmit binary data between computers using sound waves by encoding data into specific audio frequencies and decoding it using Fast Fourier Transform (FFT) analysis. The system uses a clock signal...

Play Whatever .get()'s you the flag
Python Dictionary .get() Method Security Vulnerability
🎬

Whatever .get()'s you the flag

In Python, the .get() method returns None for missing keys instead of raising an exception, unlike square bracket access which raises KeyError. This behavior can create authentication bypass vulnerabilities when code uses .get() to access...

GynvaelEN
2026-07-17
721
Play php needs a transpiler
PHP Language Evolution and Development Practices
🧠

php needs a transpiler

PHP's governance model makes implementing major language features like async/await, generics, and structs extremely difficult, as large RFCs are typically rejected due to the committee-based decision-making process. While features like true async (async/await implementation) and...

nunomaduro
2026-07-17
1K
Play Fable 5 Agentic OS Makes Automation SCARY
Building an Agentic Operating System with Fable 5
🎬

Fable 5 Agentic OS Makes Automation SCARY

An Agentic Operating System (Agent OS) is a unified platform that consolidates multiple AI agents into a single interface, enabling automation of tasks like outreach, content creation, and video production without switching between tools. The...

JulianGoldieSEO
2026-07-17
336
Play I like Game Programming
Deterministic Testing in Game Development
🎬

I like Game Programming

In game development, implementing deterministic testing with golden files ensures that UI elements, animations, and game mechanics produce consistent results across different development sessions, allowing developers to quickly identify and fix layout issues or visual...

ThePrimeagen
2026-07-17
13K
Play Making a bullet heaven in Godot
Performance Optimization Techniques in Game Development
🧠

Making a bullet heaven in Godot

This video demonstrates key performance optimization strategies for game development, including object pooling to manage thousands of bullets without slowdowns, using multi-mesh rendering for efficient bullet rendering, implementing spatial partitioning and physics server queries for...

ombroso1000
2026-07-17
111
Play Getting Started with PySpark for DP-700
PySpark Data Transformation Fundamentals for DP-700 Exam
🧠

Getting Started with PySpark for DP-700

This video teaches PySpark syntax for the DP-700 exam, covering key concepts including immutable DataFrames with lazy transformations, reading data from CSV and Delta formats, performing transformations like select, filter, withColumn, and orderBy, using PySpark...

TeemuMultanenData
2026-07-17
259
Play DevOps Live Interview | DevOps | Cloud | DevSecOps | SRE
DevOps Interview Preparation: Core Technical Concepts and Problem-Solving Approaches
🧠

DevOps Live Interview | DevOps | Cloud | DevSecOps | SRE

This video demonstrates a real DevOps interview session where the candidate showcases expertise in cloud architecture design, Kubernetes management, CI/CD pipeline implementation, and troubleshooting. Key topics covered include designing scalable cloud platforms for high-traffic applications...

Devops_jadeja
2026-07-17
3K
Play Context Parameters and API Design | Alejandro Serrano Mena
Context Parameters in Kotlin: Design Principles and Usage Patterns
🧠

Context Parameters and API Design | Alejandro Serrano Mena

Context parameters in Kotlin are implicit function parameters that are automatically threaded by the compiler, reducing boilerplate while maintaining code readability. The 'spotlight principle' guides API design decisions: receivers should be main characters (central to...

Kotlin
2026-07-17
519
Play My Best Ever PC Check.
PC Security Analysis: Detecting Malicious File Manipulation
🎬

My Best Ever PC Check.

This video demonstrates how to detect malicious software on a PC by analyzing file creation dates, identifying suspicious DLL files like device manager.dll, and tracing execution chains that reveal hidden payloads. The presenter shows how...

ccardss
2026-07-17
2K
Play I Vibe Coded BLENDER to Piss Off Haters
AI as a Skill Multiplier in Software Development
🧠

I Vibe Coded BLENDER to Piss Off Haters

AI serves as a skill multiplier rather than a replacement for programming expertise; developers with foundational skills can leverage AI tools to accelerate their work, while those without skills cannot achieve meaningful results regardless of...

GuilhermeTeres
2026-07-17
133
Play Pydle
Pixel Art Generation Using Python Loops and Conditional Statements
🎬

Pydle

This video demonstrates how to generate pixel art by using nested loops to iterate through grid coordinates and conditional statements to assign colors based on specific x and y position conditions, showing how to recreate...

pydle
2026-07-17
213
Play data parallelism with std.parallelism - Intro to Concurrency - Part 5 of N [Dlang Episode 152]
Data Parallelism with std.parallelism.parallel
🧠

data parallelism with std.parallelism - Intro to Concurrency - Part 5 of N [Dlang Episode 152]

Data parallelism is a concurrency model where multiple threads simultaneously access different elements of a data structure without contention, eliminating the need for locks. The D programming language's std.parallelism.parallel function provides a high-level abstraction that...

MikeShah
2026-07-17
139
Play Fold Craft Launcher Needs Work
Android Storage Permissions and Scoped Storage Framework
🧠

Fold Craft Launcher Needs Work

Android applications should use the Storage Access Framework (SAF) and scoped storage instead of requesting broad 'all files' permission, as SAF provides a more secure and user-friendly way to access files by allowing users to...

theonlywayout25
2026-07-17
541
Play What Can We Do With A Broken 1980s Computer?
Troubleshooting Vintage Computer Systems: The 3B2 Case Study
🧠

What Can We Do With A Broken 1980s Computer?

When troubleshooting vintage computer systems, systematic diagnostic procedures are essential: first verify power and basic connections, then check for NVRAM sanity failures which indicate memory integrity issues, and finally test hardware components by swapping drives...

Play eBPF Explained: The Complete Deep Dive — BPF VM, Verifier, JIT, Maps, XDP, Cilium & Prod Systems
eBPF: The Complete Deep Dive into Kernel Programmability
🧠

eBPF Explained: The Complete Deep Dive — BPF VM, Verifier, JIT, Maps, XDP, Cilium & Prod Systems

eBPF (extended Berkeley Packet Filter) is a revolutionary kernel technology that enables safe, runtime injection of code into the Linux kernel without recompilation or rebooting, featuring a register-based virtual machine with 11 64-bit registers and...

DevXOps-tech
2026-07-17
348
Play How Senior Engineers Structure SaaS Codebases
Ownership-Based Codebase Architecture for SaaS Applications
🧠

How Senior Engineers Structure SaaS Codebases

Senior engineers structure SaaS codebases by defining clear ownership boundaries and responsibility layers rather than simply organizing files, where each layer (UI, transport, domain, capabilities, vendors, and supporting foundations) has a specific job and dependencies...

janmarshalcoding
2026-07-17
149
Play Why you can't vibe code real software
Why Infrastructure Engineering Cannot Be Automated
🎬

Why you can't vibe code real software

While AI can help write code for features, it cannot replace human expertise in infrastructure engineering because infrastructure requires complex feedback loops, deep technical understanding, and critical thinking that AI-generated solutions lack; this is evidenced...

bigboxSWE
2026-07-17
17K
Play GUADEC 2026 - Day 2 - Track 2
Internationalization as Accessibility: Principles and Practices for Software Localization
🧠

GUADEC 2026 - Day 2 - Track 2

Internationalization (i18n) is a form of accessibility that enables software to be usable by people who don't speak the primary language, just as visual accessibility makes software usable for blind users. The key principles for...

GNOMEDesktop
2026-07-17
407
Play What is a VLAN, and how to build one
Understanding VLANs: Logical Network Segmentation
🧠

What is a VLAN, and how to build one

A VLAN (Virtual Local Area Network) is a logical network segmentation technology that allows multiple independent networks to coexist on the same physical switch infrastructure by assigning devices to different virtual networks based on configuration...

NeurixTech
2026-07-17
465
Play How Uber serves 40 million reads per second
PID Controllers for Database Load Management
🧠

How Uber serves 40 million reads per second

Uber solved database overload problems by implementing PID (Proportional-Integral-Derivative) controllers, originally developed in 1922 for ship steering, which provide smooth, adaptive traffic shedding based on system feedback rather than static thresholds. This approach replaced their...

awesome-coding
2026-07-17
108
Play It's Happening!
3D Game Engine Optimization Techniques for Hardware-Limited Platforms
🎬

It's Happening!

This video demonstrates how to optimize 3D game engines for hardware-limited platforms like the Game Boy Advance through techniques such as shared vertex arrays (reducing per-triangle calculations), fixed-point math, and Look-Up Tables (LUTs), enabling complex...

GameofTobi
2026-07-17
8K