Play Data Structures-arrays, queues,trees and graphs etc.
Linear and Nonlinear Data Structures Overview
🧠

Data Structures-arrays, queues,trees and graphs etc.

Data structures are methods for storing and organizing data in computer memory, with linear structures (arrays, queues, stacks, linked lists) organizing data sequentially, while nonlinear structures (trees, graphs, heaps, hash tables) organize data hierarchically or...

edunode2node
2026-07-17
156
Play Zero Trust Explained in 5 Minutes
Zero Trust Architecture on AWS
🎬

Zero Trust Explained in 5 Minutes

Zero Trust architecture on AWS requires every request to cryptographically prove its identity through AWS credentials and signatures, rather than trusting anything inside the network; this is demonstrated by two requests from the same machine...

KodeKloud
2026-07-17
557
Play Keynote: Karl Kessler
Evolution of ABAP Programming Language
🧠

Keynote: Karl Kessler

ABAP evolved from Y ABAP assembler macros into a sophisticated programming language through a two-pass generator approach invented by Gerhard Rode, which maintained complete backward compatibility and enabled the transition from R/2 to R/3 systems,...

abapconf
2026-07-17
113
Play Session 6- Computer Vision | iBot Summer School 2026
Fundamentals of Computer Vision: From Classical Methods to Deep Learning
🧠

Session 6- Computer Vision | iBot Summer School 2026

Computer vision enables machines to interpret visual information by representing images as pixel matrices (0-255 values) and applying mathematical filters for pattern recognition. Classical methods use handcrafted filters like Sobel for edge detection, Gaussian blur...

ibotclub_cfi
2026-07-17
247
Play How to Make *Custom* SKYBOXES in JJS
Creating Custom Skyboxes in Roblox JJK
🎬

How to Make *Custom* SKYBOXES in JJS

This video demonstrates two methods for creating custom skyboxes in Roblox's Jujutsu Kaisen (JJK) game: the first method uses a semi-transparent box with an NPC block that can use moves, connected to a prompt block...

XDuelStudios
2026-07-17
2K
Play Linux Shell- Live Coding Session- Week-5
Linux Shell Scripting Control Statements
🧠

Linux Shell- Live Coding Session- Week-5

Linux shell scripting enables controlled command execution through control statements including conditional statements (if, if-else, if-elif-else, case), loops (for, while, until), and flow control (break, continue), allowing scripts to execute commands based on conditions, repeat...

BSSE2001
2026-07-17
104
Play Live programming (I use Arch btw)
D Language Enumerations for File Path Handling
🧠

Live programming (I use Arch btw)

In D programming language, enumerations (enums) provide a type-safe way to represent fixed sets of values, such as different file paths or configurations. The video demonstrates how to define an enumeration with named constants (like...

th3fish
2026-07-17
160
Play Leetcode Daily . Sorted GCD Pair Queries
Inclusion-Exclusion Principle for GCD Pair Counting
🧠

Leetcode Daily . Sorted GCD Pair Queries

To efficiently count pairs with a specific GCD value in an array, use the inclusion-exclusion principle: count all pairs where both elements are divisible by g, then subtract pairs where both elements are divisible by...

ransack10
2026-07-17
137
Play GitHub Trending Weekly : clawk, clodex-ide, neverclick, grok-build, Krbn, domain-sdk, Flawless
Open Source AI Coding Agents and Development Tools
🧠

GitHub Trending Weekly : clawk, clodex-ide, neverclick, grok-build, Krbn, domain-sdk, Flawless

This video showcases 35 trending open-source projects on GitHub, highlighting innovative approaches to AI coding agents, development tools, and automation. Key themes include isolated virtual machine environments for safe agent execution, reference token systems for...

GithubAwesome
2026-07-16
1K
Play What's New in IntelliJ IDEA 2026.2
IntelliJ IDEA 2026.2 New Features Overview
🧠

What's New in IntelliJ IDEA 2026.2

IntelliJ IDEA 2026.2 introduces significant enhancements across AI integration, Java/Kotlin language support, debugging capabilities, and build tool management. Key features include MCP endpoint tools for AI agents, context parameters and explicit backing fields in Kotlin...

intellijidea
2026-07-16
2K
Play LeetCode practice July 15th 2026
Digit DP for Counting Valid Numbers
🧠

LeetCode practice July 15th 2026

Digit DP is a dynamic programming technique used to count numbers satisfying specific digit-based constraints within a given range. The technique involves breaking down the problem by digit position, tracking constraints like previous digits, and...

midnight_simon
2026-07-16
239
Play Building a CHIP-8 Emulator in C
Building a CHIP-8 Emulator in C: Understanding Memory and Bitwise Operations
🧠

Building a CHIP-8 Emulator in C

This video demonstrates how to build a CHIP-8 emulator in C, focusing on implementing the clear display instruction and sprite rendering. The key concepts include: (1) The CHIP-8 display is a 64x32 pixel monochrome screen...

stevanfreeborn
2026-07-16
258
Play Logic Gates using VHDL
Logic Gates Implementation in VHDL Using Data Flow Modeling
🧠

Logic Gates using VHDL

Logic gates are fundamental building blocks of digital systems that allow or block data flow based on mathematical logic. The seven logic gates are categorized into basic gates (AND, OR, NOT), universal gates (NAND, NOR),...

nesoacademy
2026-07-16
592
Play Jail for hackers who could have brought down the tube system from their bedrooms | ITV News London
Cybersecurity Risks to Critical Infrastructure
🧠

Jail for hackers who could have brought down the tube system from their bedrooms | ITV News London

Cyber attacks on critical infrastructure systems, such as public transportation networks, can cause significant disruption and financial damage even when launched from remote locations by individuals with limited technical expertise, as demonstrated by the 2024...

ITVNewsInFull
2026-07-16
2K
Play Magic the Gathering Crash Course
Web Scraping with Google Sheets for Magic the Gathering Price Tracking
🧠

Magic the Gathering Crash Course

Data science involves three core skills: critical thinking, data analysis, and web scraping. Web scraping allows you to extract data from websites using Google Sheets' ImportXML function combined with XPath, which acts as a 'treasure...

capitalcatalysts9
2026-07-16
603
Play COMP2521 26T2 Week 7 Lecture 2
Dijkstra's Algorithm for Shortest Path
🧠

COMP2521 26T2 Week 7 Lecture 2

Dijkstra's algorithm is a single-source shortest path algorithm for weighted graphs with non-negative weights. It maintains three data structures: a distance array (initialized to infinity except the source at 0), a predecessor array (initialized to...

COMP2521UNSW
2026-07-16
105
Play Coding YouTube-like app: Part 3
Building a YouTube-like App: Database Setup and Video Insertion
🧠

Coding YouTube-like app: Part 3

This video demonstrates building a YouTube-like application using Python, FastAPI, and PostgreSQL, focusing on database schema creation and video data insertion. The instructor shows how to connect to a PostgreSQL database, create a videos table...

StephenBlum
2026-07-16
2K
Play Python Tutorial for Beginners | Session 1: Programming vs Coding, Variables, Data Types & More
Python Fundamentals: Variables, Data Types, and Programming Basics
🧠

Python Tutorial for Beginners | Session 1: Programming vs Coding, Variables, Data Types & More

This tutorial introduces Python programming fundamentals, covering the distinction between coding (writing code to solve problems) and programming (the broader process of designing, coding, testing, and maintaining software). The video explains that Python is a...

YashSharma-g4k9z
2026-07-16
194
Play CT Live
Algorithm Optimization Through Binning
🧠

CT Live

This video teaches an algorithm optimization technique called 'binning' to efficiently find pairs of students from the same city whose marks differ by at most 50. Instead of comparing all students (O(n²) complexity), the algorithm...

Play همه درباره Claude Code اشتباه می‌کنند! بررسی کامل Subagent و Parallel Agents
Understanding Subagents and Parallel Agents in Claude Code
🧠

همه درباره Claude Code اشتباه می‌کنند! بررسی کامل Subagent و Parallel Agents

In Claude Code, when you define an 'agent,' you are actually creating a subagent for the main Cloud agent; subagents are specialized assistants that break down complex tasks into smaller, manageable pieces to prevent context...

bugandfix
2026-07-16
135