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
32 results
Vaadin Flow makes building forms in your Java web app easy by providing the components and layouts needed to quickly ...
228 views
22 hours ago
Python's zip() silently drops data when your lists are different lengths. It stops at the shortest input, so rows disappear with no error ...
1,226 views
3 weeks ago
Walkthrough of Anthropic's "Building with the Claude API" course using Anthropic's TypeScript SDK. Project repo: ...
38 views
Counting things is the most common loop in Python, and almost nobody uses the tool built for it. collections.Counter does the ...
1,109 views
2 weeks ago
Please, do subscribe and share it with your friends.
4 views
Streamed 4 weeks ago
Python set difference only looks one way, and that is how a comparison quietly reports that nothing changed. set(a) minus set(b) ...
1,121 views
12 days ago
Vaadin is an open source Java web framework for building web app UIs entirely in Java — no JavaScript, no HTML. In this ...
3,557 views
A Python generator can only be read once. Run the exact same line twice and the second one hands you an empty list, with no ...
256 views
A Python mutable default argument leaks between calls. Give a function an empty list as its default and every call shares one list, ...
944 views
An exception is not a rollback. Doing += on a list stored inside a Python tuple raises TypeError and mutates the list anyway.
1,139 views
In Python, True and 1 are the same dictionary key. bool is a subclass of int, so True does not merely equal 1, it hashes identically ...
1,085 views
Find out how to build custom third-party tools for Chrome DevTools for Agents. By doing this, you can expose your application's ...
5,779 views
7 days ago
A Python dict comprehension is not a copy, it is a merge, and merges lose things. Feed it three pairs where a key repeats and you ...
610 views
讓AI Agent 自動幫你做完簡報——這個開源工具有6517 顆星。 open-slide 是目前唯一專為AI Coding Agent 打造的簡報框架。
6 views
Most websites were built before WebMCP, so AI agents are stuck clicking pixels. But those sites already describe what they do ...
13 views
10 days ago
【Camofox Browser】讓AI Agent 像真人一樣瀏覽網頁,徹底繞過bot 偵測。 本報告全面拆解: - C++ 層反偵測:所有指紋偽造 ...
20 views
Adding 0.1 to itself ten times in Python does not give you 1.0. It gives 0.9999999999999999, and comparing that to 1.0 with ...
1,364 views
A language model has exactly one move: guess the next token. It picks one, appends it, looks at everything again — including ...
358 views
reportingtool #blazor #net #dataanalytics This video shows how to use multi-column labels in the parameter drop-down list.
77 views
In Python, NaN is not equal to itself. Comparing float('nan') to itself with == returns False, which is deliberate and part of IEEE 754.
1,114 views