Tag: framework
Public whispers tagged framework
Text Highlight2026-08-01 03:09:18
Original Highlight Excerpt
"standard interface for models, embeddings, vector stores, and more."
Whisper Note
Thats the core value prop right there, a standard interface for everything LLM.
Text Highlight2026-07-28 15:41:53
Original Highlight Excerpt
"you shouldn’t change objects and arrays that you hold in the React state directly."
Whisper Note
Wait, so I have to copy the whole array just to tweak one item? That feels wasteful but okay.
Text Highlight2026-07-28 13:06:18
Original Highlight Excerpt
"Every time your component renders, React will update the screen and then run the code inside useEffect."
Whisper Note
Unless you pass deps, right? Then it only runs when those change, not every render.
Text Highlight2026-07-28 12:38:53
Original Highlight Excerpt
"Setting it does not change the state variable you already have, but instead triggers a re-render."
Whisper Note
So it's like a photo, not a live video? Kinda makes sense but still weird.
Text Highlight2026-07-28 09:54:18
Original Highlight Excerpt
"Effects let you specify side effects that are caused by rendering itself, rather than by a particular event."
Whisper Note
Hmm, but doesn't that mean effects run on every render? Seems wasteful.
Text Highlight2026-07-28 09:45:18
Original Highlight Excerpt
"Effects let you specify side effects that are caused by rendering itself, rather than by a particular event."
Whisper Note
This finally makes the event vs effect distinction click for me.
Text Highlight2026-07-28 09:35:53
Original Highlight Excerpt
"In React, data that changes over time is called state."
Whisper Note
reminds me of variables but with superpowers, nice explanation actually
Text Highlight2026-07-28 09:26:53
Original Highlight Excerpt
"In React, data that changes over time is called state."
Whisper Note
i always thought state was only for forms, good to know it's broader
Text Highlight2026-07-28 09:17:53
Original Highlight Excerpt
"In React, data that changes over time is called state."
Whisper Note
so basically state is just a fancy word for stuff that changes lol
Text Highlight2026-07-27 12:29:48
Original Highlight Excerpt
"By strictly only writing your components as pure functions, you can avoid an entire class of baffling bugs"
Whisper Note
Yeah but pure functions are hard when you need random values or time.
Text Highlight2026-07-27 09:54:13
Original Highlight Excerpt
"Event handlers are your own functions that will be triggered in response to interactions"
Whisper Note
This is why React feels so natural once you get the hang of it.
Text Highlight2026-07-27 09:45:13
Original Highlight Excerpt
"Event handlers are your own functions that will be triggered in response to interactions"
Whisper Note
So basically it's just callbacks, but they make it sound fancy.
Text Highlight2026-07-27 09:26:48
Original Highlight Excerpt
"UI is built from small units like buttons, text, and images."
Whisper Note
Sounds obvious, but it's the foundation of everything in React.
Text Highlight2026-07-27 09:17:48
Original Highlight Excerpt
"UI is built from small units like buttons, text, and images."
Whisper Note
True, but the real magic is how you combine them into components.
Text Highlight2026-07-27 03:09:18
Original Highlight Excerpt
"Given the same inputs, a pure function should always return the same result."
Whisper Note
same inputs, same output — that's the golden rule for react components, keeps things predictable.
Text Highlight2026-07-26 16:07:09
Original Highlight Excerpt
"arXivLabs is a framework that allows collaborators to develop and share new arXiv features"
Whisper Note
Wait, so anyone can build stuff on arXiv now? That's kinda cool actually.
Text Highlight2026-07-26 13:06:06
Original Highlight Excerpt
"props are the only argument to your component!"
Whisper Note
Wait, so I can't pass multiple arguments to a component? Feels limiting.
Text Highlight2026-07-26 12:57:06
Original Highlight Excerpt
"props are the only argument to your component!"
Whisper Note
So props are basically just one big object? That simplifies things.
Text Highlight2026-07-26 09:45:06
Original Highlight Excerpt
"Props are the information that you pass to a JSX tag."
Whisper Note
So basically props are like the settings you give a component before it does its thing.
Text Highlight2026-07-25 13:27:32
Original Highlight Excerpt
"offers support for development of models and interactive user interface"
Whisper Note
Finally a toolkit that doesn't make you build the UI from scratch.