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
42 results
Vaadin is an open source Java web framework for building web app UIs entirely in Java — no JavaScript, no HTML. In this ...
3,614 views
2 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
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
Vaadin Flow makes building forms in your Java web app easy by providing the components and layouts needed to quickly ...
335 views
2 days ago
Please, do subscribe and share it with your friends.
4 views
Streamed 1 month ago
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
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
Walkthrough of Anthropic's "Building with the Claude API" course using Anthropic's TypeScript SDK. Project repo: ...
40 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 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
Find out how to build custom third-party tools for Chrome DevTools for Agents. By doing this, you can expose your application's ...
6,083 views
9 days ago
How to customize vim to work the way you like by changing its options. (This is an unscripted video, and it shows.)
51 views
5 days ago
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
A language model has exactly one move: guess the next token. It picks one, appends it, looks at everything again — including ...
359 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
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
Start writing CSS with confidence: ...
41,854 views
Welcome back to the Kuya Dev Podcast! In this season premiere, host Rem discusses the podcast's fresh new format and dives ...
521 views
Content Security Policy é um cabeçalho de resposta que diz ao navegador em quais fontes de script, estilo, imagem e frame ele ...
14 views
7 days ago
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