Play [CS 61A SU26] Ants Problem Getting Started
Solving Circular Dependency in Object-Oriented Programming
🎬

[CS 61A SU26] Ants Problem Getting Started

When creating interconnected objects with bidirectional references (like places with exits and entrances), circular dependencies can be resolved by initializing one direction first, then using the newly created object to complete the other direction. In...

cs61a
2026-07-20
2K
Play SvelteKit Has One Feature I Want in Nuxt
SvelteKit Remote Functions vs Nuxt API Routes
🎬

SvelteKit Has One Feature I Want in Nuxt

SvelteKit's experimental remote functions enable server-side mutations and UI refreshes in a single browser request by executing server logic, refreshing queries, and returning updated data simultaneously, whereas Nuxt requires separate POST and GET requests for...

ProgramWithErik
2026-07-20
276
Play Pydle
Creating Pixel Art with Python Conditional Statements
🎬

Pydle

This video demonstrates how to create pixel art by writing Python code that uses conditional statements to color specific pixels based on their x and y coordinates, showing a systematic approach to solving the Spider-Man...

pydle
2026-07-20
112
Play Meta made their own shadcn (Astryx)
Design System Architecture: Separating Behavior from Visual Customization
🎬

Meta made their own shadcn (Astryx)

Astryx, Meta's open-source design system built on StyleX, demonstrates how design systems can separate component behavior and accessibility from visual customization through a token-based theming approach. This architecture allows developers to customize colors, typography, radius,...

betterstack
2026-07-20
1K
Play From Scan to Stream: Open Pipelines for Large-Scale 3D in Unreal Engine | Unreal Fest Chicago 2026
Open Source Pipelines for Large-Scale 3D Data Streaming in Unreal Engine
🧠

From Scan to Stream: Open Pipelines for Large-Scale 3D in Unreal Engine | Unreal Fest Chicago 2026

This video presents three open-source pipelines for processing and streaming massive 3D datasets into Unreal Engine at runtime: (1) a Blender-based photogrammetry mesh processing workflow that converts high-resolution scans into optimized 3D Tiles using adaptive...

UnrealEngine
2026-07-20
156
Play I Built an AI Organization With AI Employees... It Actually Worked
AI-Powered Organizational Collaboration
🎬

I Built an AI Organization With AI Employees... It Actually Worked

AI-powered organizational platforms enable multiple specialized AI employees to collaborate autonomously within a shared workspace, handling complex workflows like market research, design creation, and administrative tasks through automatic task delegation and knowledge sharing, reducing manual...

AIBORDER
2026-07-20
138
Play Creator of OCaml: Functional Programming, Formal Verification, Programming Languages | Xavier Leroy
Programming Language Design: Memory Management and Formal Verification
🧠

Creator of OCaml: Functional Programming, Formal Verification, Programming Languages | Xavier Leroy

Programming languages can be designed with different memory management approaches, where automatic garbage collection (like in OCaml) provides easier memory handling but introduces runtime overhead, while manual memory management (like in Rust) offers more control...

RyanLPeterman
2026-07-20
208
Play Searching for the Most Obscure Coastlines On Earth
Machine Learning for Discovering Unusual Geographic Features
🎬

Searching for the Most Obscure Coastlines On Earth

This video demonstrates how machine learning algorithms can efficiently search through vast datasets to discover unusual geographic features, such as coastlines that resemble faces, animals, or other recognizable shapes, which would be impossible to find...

geodataguycy
2026-07-20
891
Play How to Use Train Abstractions in Factorio
Train Abstraction in Factorio
🎬

How to Use Train Abstractions in Factorio

Train abstraction is a design technique in Factorio where you replace complex factory builds with train stations that perform the same input-output function, treating production systems as 'mystery boxes' that only matter for what they...

Liz_Kazimiera
2026-07-20
338
Play She Reassigned My Project to an Intern. I Migrated the Repo and Ruined Their Sprint Review
Protecting Intellectual Property Through Technical Evidence
🧠

She Reassigned My Project to an Intern. I Migrated the Repo and Ruined Their Sprint Review

When employees develop proprietary algorithms outside contracted hours, they can protect their intellectual property by maintaining detailed technical evidence such as timestamped logs and commit histories, which can be used to demonstrate independent development and...

BossBurned
2026-07-20
132
Play Python - Information Extraction Part 3 (2023 New)
Building Knowledge Graphs from Text: A Complete Pipeline
🧠

Python - Information Extraction Part 3 (2023 New)

Knowledge graphs are structured networks of entities and their relationships, built through a multi-stage pipeline including text cleaning, named entity recognition (NER) using spaCy, entity normalization and merging, co-reference resolution, and relation extraction via pattern...

StatisticsofDOOM
2026-07-20
224
Play LeetCode Post Contest Discussion | Weekly Contest 511,Biweekly Contest 187 | Tamil
Algorithmic Problem-Solving Techniques in Competitive Programming
🧠

LeetCode Post Contest Discussion | Weekly Contest 511,Biweekly Contest 187 | Tamil

This video demonstrates how to solve algorithmic problems using various techniques including two pointers, dynamic programming, tree traversal, and string manipulation. The instructor explains problem-solving strategies through examples from LeetCode contests, covering topics like finding...

Rohinth
2026-07-20
202
Play Live programming (I use Arch btw)
File Processing and Random Line Selection in D Programming
🧠

Live programming (I use Arch btw)

This video demonstrates how to implement file processing and random line selection in D programming, covering key concepts such as file reading with file.readline(), random number generation using uniform random, array bounds checking, and proper...

th3fish
2026-07-20
145
Play 2026 ZKast - AI Infrastructure at Scale: Network Performance, Security & Cisco Secure AI Factory
Network Performance as the Critical Factor in AI Infrastructure ROI
🧠

2026 ZKast - AI Infrastructure at Scale: Network Performance, Security & Cisco Secure AI Factory

In AI infrastructure, network performance is the primary determinant of ROI, not GPU capabilities; organizations must address five warning signs including reactive operating models, low utilization rates, fragmented security, limited visibility, and siloed infrastructure decisions...

ZKResearch
2026-07-20
5K
Play How I Simulated 100,000 Cells At 60 FPS
GPU-Based Organic Cell Rendering with Domain Warping
🧠

How I Simulated 100,000 Cells At 60 FPS

This video demonstrates how to render 100,000 organic cells at 60 FPS using raw WebGL and vanilla JavaScript by leveraging GPU parallel processing. The key technique involves drawing circles directly on the GPU using fragment...

philomatics
2026-07-20
492
Play C Instant Messaging to avoid Chat Control
Instant Messaging Server Architecture with TLS Abstraction
🧠

C Instant Messaging to avoid Chat Control

This video demonstrates building an instant messaging server by abstracting complex TLS/SSL operations into a clean transport layer, enabling developers to implement secure messaging protocols without directly managing low-level cryptographic details. The approach involves creating...

cococry
2026-07-20
686