Tag: tutorial
Public whispers tagged tutorial
Text Highlight2026-08-11 12:23:48
Original Highlight Excerpt
"the output of any sorting algorithm must satisfy two conditions"
Whisper Note
So that's why my custom sort broke — missed condition two.
Text Highlight2026-08-11 03:09:57
Original Highlight Excerpt
"List comprehensions provide a concise way to create lists."
Whisper Note
List comprehensions are such a game changer, way cleaner than loops.
Text Highlight2026-07-28 13:30:53
Original Highlight Excerpt
"Recursive queries are typically used to deal with hierarchical or tree-structured data."
Whisper Note
I've seen people do this with loops in app code, but SQL is way more elegant for it.
Text Highlight2026-07-28 13:21:53
Original Highlight Excerpt
"Recursive queries are typically used to deal with hierarchical or tree-structured data."
Whisper Note
Yeah, I always reach for recursive CTEs when I need to walk a tree, it's the cleanest way.
Text Highlight2026-07-28 13:01:34
Original Highlight Excerpt
"Content-based filtering methods are based on a description of the item and a profile of the user's preferences"
Whisper Note
But what if the user's taste changes over time? This seems too static for that.
Text Highlight2026-07-28 12:52:34
Original Highlight Excerpt
"Content-based filtering methods are based on a description of the item and a profile of the user's preferences"
Whisper Note
So basically it just matches what you liked before with similar stuff, right?
Text Highlight2026-07-28 10:20:53
Original Highlight Excerpt
"A typical generative task is as follows. At each step, a datapoint is sampled from the dataset, and part of the data is removed, and the model must infer the removed part."
Whisper Note
I've seen this in image inpainting too, not just text. Same trick, different domain.
Text Highlight2026-07-28 10:03:18
Original Highlight Excerpt
"Effects let you specify side effects that are caused by rendering itself, rather than by a particular event."
Whisper Note
I remember debugging a chat app where I put the connection in an event—big mistake.
Text Highlight2026-07-28 10:02:53
Original Highlight Excerpt
"A typical generative task is as follows. At each step, a datapoint is sampled from the dataset, and part of the data is removed, and the model must infer the removed part."
Whisper Note
So it's basically like playing a game of peek-a-boo with data, hiding a piece and making the model guess.
Text Highlight2026-07-27 13:08:37
Original Highlight Excerpt
"these functions return a null value when no rows are selected."
Whisper Note
Yeah had to learn this the hard way, coalesce is a lifesaver.
Text Highlight2026-07-27 13:06:13
Original Highlight Excerpt
"Functions passed to event handlers must be passed, not called."
Whisper Note
Makes sense, otherwise it runs immediately. I learned this the hard way too.
Text Highlight2026-07-27 12:57:13
Original Highlight Excerpt
"Functions passed to event handlers must be passed, not called."
Whisper Note
Wait so I can't just do onClick={handleClick()}? That's been breaking my app for days, oops.
Text Highlight2026-07-27 12:38:48
Original Highlight Excerpt
"By strictly only writing your components as pure functions, you can avoid an entire class of baffling bugs"
Whisper Note
I've been burned by impure components before, this advice is gold.
Text Highlight2026-07-27 10:17:52
Original Highlight Excerpt
"You can do things by applying a method on a DataFrame or Series"
Whisper Note
Took me a while to get that methods change the data in place sometimes, confusing
Text Highlight2026-07-27 09:59:52
Original Highlight Excerpt
"You can do things by applying a method on a DataFrame or Series"
Whisper Note
Yeah but the real magic is when you chain like five methods together lol
Text Highlight2026-07-27 09:56:37
Original Highlight Excerpt
"Aggregate functions compute a single result from a set of input values."
Whisper Note
Wish they'd show an example here, the docs are too dry for me.
Text Highlight2026-07-27 09:28:15
Original Highlight Excerpt
"A module is a file containing Python definitions and statements."
Whisper Note
Wait, so if I just write some functions in a file, I can import them anywhere? Cool.
Text Highlight2026-07-26 16:25:15
Original Highlight Excerpt
"Even though the slice header is passed by value"
Whisper Note
This is exactly why slices feel like references even though they're not.
Text Highlight2026-07-26 13:02:42
Original Highlight Excerpt
"efficient application of the chain rule to neural networks"
Whisper Note
So many tutorials skip the 'efficient' part and just drown you in math.
Text Highlight2026-07-26 10:05:24
Original Highlight Excerpt
"an algorithm for first-order gradient-based optimization of stochastic objective functions"
Whisper Note
Finally an optimizer that just works without babysitting the learning rate.